Skip to content

Commit

Permalink
excel examples
Browse files Browse the repository at this point in the history
  • Loading branch information
BusinessDuck committed Mar 17, 2024
1 parent 50d9ce9 commit 1aa02b7
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 5 deletions.
4 changes: 4 additions & 0 deletions docs/AcceleratorOscillator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 4 additions & 0 deletions docs/AverageTrueRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 5 additions & 1 deletion docs/BollingerBands.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
```

## How to calculate Bollinger Bands (BB) in excel spreadsheet?

[Download excel sample](../tests/bbands/Bollinger-Bands.xlsx)
6 changes: 5 additions & 1 deletion docs/CommodityChannelIndex.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```
```

## How to calculate Commodity Channel Index (CCI) in excel spreadsheet?

[Download excel sample](../tests/cci/Commoditive%20Channel%20Index.xls)
6 changes: 5 additions & 1 deletion docs/DonchianChannels.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
```

## How to calculate Donchian Channels (DC) in excel spreadsheet?

[Download excel sample](../tests/dc/Donchian.xls)
6 changes: 5 additions & 1 deletion docs/ExponentialMovingAverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
```

## How to calculate Exponential Moving Average (EMA) in excel spreadsheet?

[Download excel sample](../tests/ema/EMA.xlsx)
6 changes: 5 additions & 1 deletion docs/MovingAverageConvergenceDivergence.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ The Moving Average Convergence Divergence (MACD) is a trend-following momentum i

```
MACD = 12-period EMA - 26-period EMA
```
```

## How to calculate Moving Average Convergence Divergence (MACD) in excel spreadsheet?

[Download excel sample](../tests/macd/MACD.xlsx)

0 comments on commit 1aa02b7

Please sign in to comment.