This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
Indicators
Steven Thewissen edited this page Apr 19, 2018
·
7 revisions
All indicators use a .NET wrapper of the TA-Lib library. They are implemented as extension methods on List<Candle>
. These candles can be used for every type of technical analysis because they also contain high, low, close, open and volume indicators for that moment in time. Not all indicators that are present in TA-Lib are implemented in Mynt yet. You can always submit a PR for a new indicator if you need it.
Indicator | Extension method |
---|---|
Average Directional Movement Index | Adx() |
Awesome Oscillator | AwesomeOscillator() |
Bollinger Bands | Bbands() |
Bear/Bull | BearBull() |
Commodity Channel Index | Cci() |
Chande Momentum Oscillator | Cmo() |
Derivative Oscillator | DerivativeOscillator() |
Exponential Moving Average | Ema() |
Fisher Ehlers | Fisher() |
Moving Average Convergence/Divergence | Macd() |
MESA Adaptive Moving Average | Mama() |
Momentum Flow Index | Mfi() |
Minus Directional Indicator | MinusDI() |
Momentum | Mom() |
Plus Directional Indicator | PlusDI() |
Relative Strength Index | Rsi() |
SAR | Sar() |
Simple Moving Average | Sma() |
Stochastics | Stoch() |
Stochastics Fast | StochFast() |
Stochastic RSI | StochRsi() |
Triple Exponential Moving Average | Tema() |
Weighted Moving Average | Wma() |