From ea9e8beb524a419f9e60c604c120f98fcad8d054 Mon Sep 17 00:00:00 2001 From: Miha Kralj <31756078+mihakralj@users.noreply.github.com> Date: Tue, 10 May 2022 20:04:59 -0700 Subject: [PATCH] Update readme.md --- docs/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/readme.md b/docs/readme.md index b41aa919..234dc824 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -22,7 +22,7 @@ Quantitative TA Library (**QuanTAlib**) is an easy-to-use C# library for quantit - Separation of calculations (**algos**) and visualizations (**charts**) - Handle early data right - no hiding of poor calculations with NaN values (unless explicitly requested), data is as valid as mathematically possible from the first value - Preservation of time-value integrity of each data throughout the calculation chain (each data point has a timestamp) -- Usage of events - each data series is an event publisher, each indicator is a subscriber - this allows seamless data flow between indicators without the need of plumbing (see [MACD example](https://github.com/mihakralj/QuanTAlib/blob/main/Docs/macd_example.ipynb) to understand how events allow chaining of indicators) +- Usage of events - each data series is an event publisher, each indicator is a subscriber - this allows seamless data flow between indicators without the need of plumbing (see [MACD example](https://github.com/mihakralj/QuanTAlib/blob/main/docs/macd_example.ipynb) to understand how events allow chaining of indicators) QuanTAlib does not provide OHLCV quotes - but it can easily connect to any data feeds. There are some data feed classess available (**RND_Feed** for random OHLCV, **YAHOO_Feed** for Yahoo Finance daily stock data)