From 1aa02b719e58f6903ed81c3cf7977ae05f2ed609 Mon Sep 17 00:00:00 2001 From: Dmitriy Yurov Date: Sun, 17 Mar 2024 11:35:59 +0100 Subject: [PATCH] excel examples --- docs/AcceleratorOscillator.md | 4 ++++ docs/AverageTrueRange.md | 4 ++++ docs/BollingerBands.md | 6 +++++- docs/CommodityChannelIndex.md | 6 +++++- docs/DonchianChannels.md | 6 +++++- docs/ExponentialMovingAverage.md | 6 +++++- docs/MovingAverageConvergenceDivergence.md | 6 +++++- 7 files changed, 33 insertions(+), 5 deletions(-) diff --git a/docs/AcceleratorOscillator.md b/docs/AcceleratorOscillator.md index 25bf968..320cce4 100644 --- a/docs/AcceleratorOscillator.md +++ b/docs/AcceleratorOscillator.md @@ -42,3 +42,7 @@ console.log(aoValue); // Accelerator Oscillator calculated value for current tic // When candle closed call nextValue for candle data ao.nextValue(...); ``` + +## How to calculate Accelerator Oscillator (AC) in excel spreadsheet? + +[Download excel sample](../tests/ac/awesome-and-accelerator-oscillators.xlsx) diff --git a/docs/AverageTrueRange.md b/docs/AverageTrueRange.md index 3f85fef..3d3a03b 100644 --- a/docs/AverageTrueRange.md +++ b/docs/AverageTrueRange.md @@ -38,3 +38,7 @@ console.log(atrValue); // Average True Range calculated value for current tick // When candle closed call nextValue for candle data atr.nextValue(...); ``` + +## How to calculate Average True Range (ATR) in excel spreadsheet? + +[Download excel sample](../tests/atr/Average-True-Range.xlsx) \ No newline at end of file diff --git a/docs/BollingerBands.md b/docs/BollingerBands.md index 5124b59..8c2a6b4 100644 --- a/docs/BollingerBands.md +++ b/docs/BollingerBands.md @@ -4,4 +4,8 @@ Bollinger Bands are a type of statistical chart characterizing the prices and vo ``` Upper Band = SMA + (n * Standard Deviation) Lower Band = SMA - (n * Standard Deviation) -``` \ No newline at end of file +``` + +## How to calculate Bollinger Bands (BB) in excel spreadsheet? + +[Download excel sample](../tests/bbands/Bollinger-Bands.xlsx) \ No newline at end of file diff --git a/docs/CommodityChannelIndex.md b/docs/CommodityChannelIndex.md index dcba3dc..10dd5fb 100644 --- a/docs/CommodityChannelIndex.md +++ b/docs/CommodityChannelIndex.md @@ -3,4 +3,8 @@ The Commodity Channel Index (CCI) is a versatile indicator that can be used to i ``` CCI = (Typical Price - 20-period SMA of TP) / (0.015 x Mean Deviation) -``` \ No newline at end of file +``` + +## How to calculate Commodity Channel Index (CCI) in excel spreadsheet? + +[Download excel sample](../tests/cci/Commoditive%20Channel%20Index.xls) \ No newline at end of file diff --git a/docs/DonchianChannels.md b/docs/DonchianChannels.md index 2accbfe..c7d04d3 100644 --- a/docs/DonchianChannels.md +++ b/docs/DonchianChannels.md @@ -4,4 +4,8 @@ Donchian Channels are a type of volatility indicator that consists of two lines, ``` Upper Channel = Highest High over the period Lower Channel = Lowest Low over the period -``` \ No newline at end of file +``` + +## How to calculate Donchian Channels (DC) in excel spreadsheet? + +[Download excel sample](../tests/dc/Donchian.xls) \ No newline at end of file diff --git a/docs/ExponentialMovingAverage.md b/docs/ExponentialMovingAverage.md index 9dfaef9..00e2523 100644 --- a/docs/ExponentialMovingAverage.md +++ b/docs/ExponentialMovingAverage.md @@ -3,4 +3,8 @@ The Exponential Moving Average (EMA) is a type of moving average that places a g ``` EMA = (Close - Previous EMA) * (2 / (n + 1)) + Previous EMA -``` \ No newline at end of file +``` + +## How to calculate Exponential Moving Average (EMA) in excel spreadsheet? + +[Download excel sample](../tests/ema/EMA.xlsx) \ No newline at end of file diff --git a/docs/MovingAverageConvergenceDivergence.md b/docs/MovingAverageConvergenceDivergence.md index 6cbbd93..7b2ed48 100644 --- a/docs/MovingAverageConvergenceDivergence.md +++ b/docs/MovingAverageConvergenceDivergence.md @@ -3,4 +3,8 @@ The Moving Average Convergence Divergence (MACD) is a trend-following momentum i ``` MACD = 12-period EMA - 26-period EMA -``` \ No newline at end of file +``` + +## How to calculate Moving Average Convergence Divergence (MACD) in excel spreadsheet? + +[Download excel sample](../tests/macd/MACD.xlsx) \ No newline at end of file