├── .editorconfig ├── .eslintrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── README.md ├── docs ├── .github │ └── unilevel.png ├── AcceleratorOscillator.md ├── AdaptiveMovingAverage.md ├── AverageDirectionalIndex.md ├── AverageTrueRange.md ├── AwesomeOscillator.md ├── BollingerBands.md ├── ChaikinOscillator.md ├── CommodityChannelIndex.md ├── ConnorsRSI.md ├── DonchianChannels.md ├── ExponentialMovingAverage.md ├── ExponentialWeightedMovingAverage.md ├── LinearlyWeightedMovingAverage.md ├── MoneyFlowIndex.md ├── MovingAverageConvergenceDivergence.md ├── ParabolicStopAndReverse.md ├── PivotPointLevels.md ├── RateofChange.md ├── RelativeStrengthIndex.md ├── SimpleMovingAverage.md ├── SmoothedMovingAverage.md ├── StochasticOscillator.md ├── StochasticRsi.md ├── SuperTrend.md ├── UniLevel.md ├── WeightedMovingAverage.md ├── WellesWildersSmoothingAverage.md └── WildersSmoothedMovingAverage.md ├── index.ts ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── ac.ts ├── adx.ts ├── ama.ts ├── ao.ts ├── atr.ts ├── bands.ts ├── cci.ts ├── chaikin.ts ├── crsi.ts ├── dc.ts ├── ema.ts ├── ewma.ts ├── heiken-ashi.ts ├── lwma.ts ├── macd.ts ├── mfi.ts ├── move.ts ├── pivot.ts ├── providers │ ├── circular-buffer.ts │ ├── correlation.ts │ ├── extremum.ts │ ├── gain.ts │ ├── levels.ts │ ├── max-value.ts │ ├── mean-deviation.ts │ ├── min-value.ts │ ├── percent-rank.ts │ ├── sampler.ts │ ├── standard-deviation.ts │ └── true-range.ts ├── psar.ts ├── rma.ts ├── roc.ts ├── rsi.ts ├── sma.ts ├── smma.ts ├── stochastic-rsi.ts ├── stochastic.ts ├── supertrend.ts ├── trendlines │ ├── index.ts │ ├── line.model.ts │ ├── lines.model.ts │ ├── readme.md │ ├── sample2.jpg │ ├── sample3.png │ ├── sample4.png │ ├── trend.model.ts │ └── types.ts ├── utils.ts ├── volume-profile.ts ├── wave.ts ├── wema.ts ├── williams.ts ├── wma.ts └── wws.ts ├── tests ├── .DS_Store ├── ac │ ├── ac.spec.ts │ ├── awesome-and-accelerator-oscillators.xlsx │ └── excel-data.ts ├── adx │ ├── adx.spec.ts │ └── data.ts ├── ama │ ├── AMA_AUDCAD_TF5_15-2-30.xlsx │ ├── ama.spec.ts │ └── data.ts ├── ao │ ├── ao.spec.ts │ ├── awesome-and-accelerator-oscillators.xlsx │ └── excel-data.ts ├── atr │ ├── Average-True-Range.xlsx │ ├── atr.spec.ts │ ├── excel-data.ts │ └── issue-25.spec.ts ├── bbands │ ├── Bollinger-Bands.xlsx │ ├── bbands.spec.ts │ └── excel-data.ts ├── cci │ ├── Commoditive Channel Index.xls │ ├── cci.spec.ts │ └── excel-data.ts ├── crsi │ └── crsi.ts ├── dc │ ├── Donchian.xls │ ├── dc.spec.ts │ ├── dc.ts │ └── excel-data.ts ├── ema │ ├── EMA.xlsx │ ├── ema.spec.ts │ └── excel-data.ts ├── ewma │ ├── data.ts │ └── ewma.spec.ts ├── heikenashi │ ├── excel-data.ts │ ├── ha-chart.xlsx │ └── ha.spec.ts ├── macd │ ├── MACD.xlsx │ ├── excel-data.ts │ └── macd.spec.ts ├── mfi │ ├── MoneyFlowIndex.xlsm │ ├── data.ts │ └── mfi.spec.ts ├── pivot │ └── pivot.ts ├── providers │ ├── circular-buffer.spec.ts │ ├── percent-rank.ts │ ├── sampler.spec.ts │ └── standard-deviation.spec.ts ├── psar │ ├── Parabolic-SAR.xlsm │ ├── excel-data.ts │ └── psar.spec.ts ├── rma │ ├── data.ts │ └── rma.spec.ts ├── roc │ ├── cs-roc.xls │ ├── excel-data.ts │ └── roc.spec.ts ├── rsi │ ├── RSI-calculation.xlsx │ ├── excel-data.ts │ ├── issue-16.spec.ts │ └── rsi.spec.ts ├── sma │ ├── moving-average.xlsx │ └── sma.spec.ts ├── stoch-rsi │ ├── excel-data.ts │ └── stoch-rsi.spec.ts ├── stochastic │ ├── StochasticOscillator.xlsm │ ├── excel-data.ts │ └── stochastic.spec.ts ├── supertrend │ ├── SuperTrend.xlsx │ ├── data.ts │ └── supertrend.spec.ts ├── trendlines │ ├── data.json │ └── index.ts ├── truerange │ ├── data.ts │ └── truerange.spec.ts ├── volume-profile │ ├── data.ts │ └── volume-profile.spec.ts ├── wema │ ├── data.ts │ └── wema.spec.ts ├── williams │ ├── cs-percentr.xls │ ├── data.ts │ └── williams.spec.ts └── wma │ ├── 11-Weighted-Moving-Average.xlsx │ ├── data.ts │ └── wma.spec.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/README.md -------------------------------------------------------------------------------- /docs/.github/unilevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/.github/unilevel.png -------------------------------------------------------------------------------- /docs/AcceleratorOscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/AcceleratorOscillator.md -------------------------------------------------------------------------------- /docs/AdaptiveMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/AdaptiveMovingAverage.md -------------------------------------------------------------------------------- /docs/AverageDirectionalIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/AverageDirectionalIndex.md -------------------------------------------------------------------------------- /docs/AverageTrueRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/AverageTrueRange.md -------------------------------------------------------------------------------- /docs/AwesomeOscillator.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/BollingerBands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/BollingerBands.md -------------------------------------------------------------------------------- /docs/ChaikinOscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/ChaikinOscillator.md -------------------------------------------------------------------------------- /docs/CommodityChannelIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/CommodityChannelIndex.md -------------------------------------------------------------------------------- /docs/ConnorsRSI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/ConnorsRSI.md -------------------------------------------------------------------------------- /docs/DonchianChannels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/DonchianChannels.md -------------------------------------------------------------------------------- /docs/ExponentialMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/ExponentialMovingAverage.md -------------------------------------------------------------------------------- /docs/ExponentialWeightedMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/ExponentialWeightedMovingAverage.md -------------------------------------------------------------------------------- /docs/LinearlyWeightedMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/LinearlyWeightedMovingAverage.md -------------------------------------------------------------------------------- /docs/MoneyFlowIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/MoneyFlowIndex.md -------------------------------------------------------------------------------- /docs/MovingAverageConvergenceDivergence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/MovingAverageConvergenceDivergence.md -------------------------------------------------------------------------------- /docs/ParabolicStopAndReverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/ParabolicStopAndReverse.md -------------------------------------------------------------------------------- /docs/PivotPointLevels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/PivotPointLevels.md -------------------------------------------------------------------------------- /docs/RateofChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/RateofChange.md -------------------------------------------------------------------------------- /docs/RelativeStrengthIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/RelativeStrengthIndex.md -------------------------------------------------------------------------------- /docs/SimpleMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/SimpleMovingAverage.md -------------------------------------------------------------------------------- /docs/SmoothedMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/SmoothedMovingAverage.md -------------------------------------------------------------------------------- /docs/StochasticOscillator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/StochasticOscillator.md -------------------------------------------------------------------------------- /docs/StochasticRsi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/StochasticRsi.md -------------------------------------------------------------------------------- /docs/SuperTrend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/SuperTrend.md -------------------------------------------------------------------------------- /docs/UniLevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/UniLevel.md -------------------------------------------------------------------------------- /docs/WeightedMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/WeightedMovingAverage.md -------------------------------------------------------------------------------- /docs/WellesWildersSmoothingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/WellesWildersSmoothingAverage.md -------------------------------------------------------------------------------- /docs/WildersSmoothedMovingAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/docs/WildersSmoothedMovingAverage.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/ac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/ac.ts -------------------------------------------------------------------------------- /src/adx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/adx.ts -------------------------------------------------------------------------------- /src/ama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/ama.ts -------------------------------------------------------------------------------- /src/ao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/ao.ts -------------------------------------------------------------------------------- /src/atr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/atr.ts -------------------------------------------------------------------------------- /src/bands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/bands.ts -------------------------------------------------------------------------------- /src/cci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/cci.ts -------------------------------------------------------------------------------- /src/chaikin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/chaikin.ts -------------------------------------------------------------------------------- /src/crsi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/crsi.ts -------------------------------------------------------------------------------- /src/dc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/dc.ts -------------------------------------------------------------------------------- /src/ema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/ema.ts -------------------------------------------------------------------------------- /src/ewma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/ewma.ts -------------------------------------------------------------------------------- /src/heiken-ashi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/heiken-ashi.ts -------------------------------------------------------------------------------- /src/lwma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/lwma.ts -------------------------------------------------------------------------------- /src/macd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/macd.ts -------------------------------------------------------------------------------- /src/mfi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/mfi.ts -------------------------------------------------------------------------------- /src/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/move.ts -------------------------------------------------------------------------------- /src/pivot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/pivot.ts -------------------------------------------------------------------------------- /src/providers/circular-buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/circular-buffer.ts -------------------------------------------------------------------------------- /src/providers/correlation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/correlation.ts -------------------------------------------------------------------------------- /src/providers/extremum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/extremum.ts -------------------------------------------------------------------------------- /src/providers/gain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/gain.ts -------------------------------------------------------------------------------- /src/providers/levels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/levels.ts -------------------------------------------------------------------------------- /src/providers/max-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/max-value.ts -------------------------------------------------------------------------------- /src/providers/mean-deviation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/mean-deviation.ts -------------------------------------------------------------------------------- /src/providers/min-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/min-value.ts -------------------------------------------------------------------------------- /src/providers/percent-rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/percent-rank.ts -------------------------------------------------------------------------------- /src/providers/sampler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/sampler.ts -------------------------------------------------------------------------------- /src/providers/standard-deviation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/standard-deviation.ts -------------------------------------------------------------------------------- /src/providers/true-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/providers/true-range.ts -------------------------------------------------------------------------------- /src/psar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/psar.ts -------------------------------------------------------------------------------- /src/rma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/rma.ts -------------------------------------------------------------------------------- /src/roc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/roc.ts -------------------------------------------------------------------------------- /src/rsi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/rsi.ts -------------------------------------------------------------------------------- /src/sma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/sma.ts -------------------------------------------------------------------------------- /src/smma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/smma.ts -------------------------------------------------------------------------------- /src/stochastic-rsi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/stochastic-rsi.ts -------------------------------------------------------------------------------- /src/stochastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/stochastic.ts -------------------------------------------------------------------------------- /src/supertrend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/supertrend.ts -------------------------------------------------------------------------------- /src/trendlines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/index.ts -------------------------------------------------------------------------------- /src/trendlines/line.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/line.model.ts -------------------------------------------------------------------------------- /src/trendlines/lines.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/lines.model.ts -------------------------------------------------------------------------------- /src/trendlines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/readme.md -------------------------------------------------------------------------------- /src/trendlines/sample2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/sample2.jpg -------------------------------------------------------------------------------- /src/trendlines/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/sample3.png -------------------------------------------------------------------------------- /src/trendlines/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/sample4.png -------------------------------------------------------------------------------- /src/trendlines/trend.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/trend.model.ts -------------------------------------------------------------------------------- /src/trendlines/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/trendlines/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/volume-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/volume-profile.ts -------------------------------------------------------------------------------- /src/wave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/wave.ts -------------------------------------------------------------------------------- /src/wema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/wema.ts -------------------------------------------------------------------------------- /src/williams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/williams.ts -------------------------------------------------------------------------------- /src/wma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/wma.ts -------------------------------------------------------------------------------- /src/wws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/src/wws.ts -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/ac/ac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ac/ac.spec.ts -------------------------------------------------------------------------------- /tests/ac/awesome-and-accelerator-oscillators.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ac/awesome-and-accelerator-oscillators.xlsx -------------------------------------------------------------------------------- /tests/ac/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ac/excel-data.ts -------------------------------------------------------------------------------- /tests/adx/adx.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/adx/adx.spec.ts -------------------------------------------------------------------------------- /tests/adx/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/adx/data.ts -------------------------------------------------------------------------------- /tests/ama/AMA_AUDCAD_TF5_15-2-30.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ama/AMA_AUDCAD_TF5_15-2-30.xlsx -------------------------------------------------------------------------------- /tests/ama/ama.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ama/ama.spec.ts -------------------------------------------------------------------------------- /tests/ama/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ama/data.ts -------------------------------------------------------------------------------- /tests/ao/ao.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ao/ao.spec.ts -------------------------------------------------------------------------------- /tests/ao/awesome-and-accelerator-oscillators.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ao/awesome-and-accelerator-oscillators.xlsx -------------------------------------------------------------------------------- /tests/ao/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ao/excel-data.ts -------------------------------------------------------------------------------- /tests/atr/Average-True-Range.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/atr/Average-True-Range.xlsx -------------------------------------------------------------------------------- /tests/atr/atr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/atr/atr.spec.ts -------------------------------------------------------------------------------- /tests/atr/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/atr/excel-data.ts -------------------------------------------------------------------------------- /tests/atr/issue-25.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/atr/issue-25.spec.ts -------------------------------------------------------------------------------- /tests/bbands/Bollinger-Bands.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/bbands/Bollinger-Bands.xlsx -------------------------------------------------------------------------------- /tests/bbands/bbands.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/bbands/bbands.spec.ts -------------------------------------------------------------------------------- /tests/bbands/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/bbands/excel-data.ts -------------------------------------------------------------------------------- /tests/cci/Commoditive Channel Index.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/cci/Commoditive Channel Index.xls -------------------------------------------------------------------------------- /tests/cci/cci.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/cci/cci.spec.ts -------------------------------------------------------------------------------- /tests/cci/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/cci/excel-data.ts -------------------------------------------------------------------------------- /tests/crsi/crsi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/crsi/crsi.ts -------------------------------------------------------------------------------- /tests/dc/Donchian.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/dc/Donchian.xls -------------------------------------------------------------------------------- /tests/dc/dc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/dc/dc.spec.ts -------------------------------------------------------------------------------- /tests/dc/dc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/dc/dc.ts -------------------------------------------------------------------------------- /tests/dc/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/dc/excel-data.ts -------------------------------------------------------------------------------- /tests/ema/EMA.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ema/EMA.xlsx -------------------------------------------------------------------------------- /tests/ema/ema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ema/ema.spec.ts -------------------------------------------------------------------------------- /tests/ema/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ema/excel-data.ts -------------------------------------------------------------------------------- /tests/ewma/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ewma/data.ts -------------------------------------------------------------------------------- /tests/ewma/ewma.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/ewma/ewma.spec.ts -------------------------------------------------------------------------------- /tests/heikenashi/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/heikenashi/excel-data.ts -------------------------------------------------------------------------------- /tests/heikenashi/ha-chart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/heikenashi/ha-chart.xlsx -------------------------------------------------------------------------------- /tests/heikenashi/ha.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/heikenashi/ha.spec.ts -------------------------------------------------------------------------------- /tests/macd/MACD.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/macd/MACD.xlsx -------------------------------------------------------------------------------- /tests/macd/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/macd/excel-data.ts -------------------------------------------------------------------------------- /tests/macd/macd.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/macd/macd.spec.ts -------------------------------------------------------------------------------- /tests/mfi/MoneyFlowIndex.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/mfi/MoneyFlowIndex.xlsm -------------------------------------------------------------------------------- /tests/mfi/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/mfi/data.ts -------------------------------------------------------------------------------- /tests/mfi/mfi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/mfi/mfi.spec.ts -------------------------------------------------------------------------------- /tests/pivot/pivot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/pivot/pivot.ts -------------------------------------------------------------------------------- /tests/providers/circular-buffer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/providers/circular-buffer.spec.ts -------------------------------------------------------------------------------- /tests/providers/percent-rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/providers/percent-rank.ts -------------------------------------------------------------------------------- /tests/providers/sampler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/providers/sampler.spec.ts -------------------------------------------------------------------------------- /tests/providers/standard-deviation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/providers/standard-deviation.spec.ts -------------------------------------------------------------------------------- /tests/psar/Parabolic-SAR.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/psar/Parabolic-SAR.xlsm -------------------------------------------------------------------------------- /tests/psar/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/psar/excel-data.ts -------------------------------------------------------------------------------- /tests/psar/psar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/psar/psar.spec.ts -------------------------------------------------------------------------------- /tests/rma/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rma/data.ts -------------------------------------------------------------------------------- /tests/rma/rma.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rma/rma.spec.ts -------------------------------------------------------------------------------- /tests/roc/cs-roc.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/roc/cs-roc.xls -------------------------------------------------------------------------------- /tests/roc/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/roc/excel-data.ts -------------------------------------------------------------------------------- /tests/roc/roc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/roc/roc.spec.ts -------------------------------------------------------------------------------- /tests/rsi/RSI-calculation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rsi/RSI-calculation.xlsx -------------------------------------------------------------------------------- /tests/rsi/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rsi/excel-data.ts -------------------------------------------------------------------------------- /tests/rsi/issue-16.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rsi/issue-16.spec.ts -------------------------------------------------------------------------------- /tests/rsi/rsi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/rsi/rsi.spec.ts -------------------------------------------------------------------------------- /tests/sma/moving-average.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/sma/moving-average.xlsx -------------------------------------------------------------------------------- /tests/sma/sma.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/sma/sma.spec.ts -------------------------------------------------------------------------------- /tests/stoch-rsi/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/stoch-rsi/excel-data.ts -------------------------------------------------------------------------------- /tests/stoch-rsi/stoch-rsi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/stoch-rsi/stoch-rsi.spec.ts -------------------------------------------------------------------------------- /tests/stochastic/StochasticOscillator.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/stochastic/StochasticOscillator.xlsm -------------------------------------------------------------------------------- /tests/stochastic/excel-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/stochastic/excel-data.ts -------------------------------------------------------------------------------- /tests/stochastic/stochastic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/stochastic/stochastic.spec.ts -------------------------------------------------------------------------------- /tests/supertrend/SuperTrend.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/supertrend/SuperTrend.xlsx -------------------------------------------------------------------------------- /tests/supertrend/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/supertrend/data.ts -------------------------------------------------------------------------------- /tests/supertrend/supertrend.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/supertrend/supertrend.spec.ts -------------------------------------------------------------------------------- /tests/trendlines/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/trendlines/data.json -------------------------------------------------------------------------------- /tests/trendlines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/trendlines/index.ts -------------------------------------------------------------------------------- /tests/truerange/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/truerange/data.ts -------------------------------------------------------------------------------- /tests/truerange/truerange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/truerange/truerange.spec.ts -------------------------------------------------------------------------------- /tests/volume-profile/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/volume-profile/data.ts -------------------------------------------------------------------------------- /tests/volume-profile/volume-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/volume-profile/volume-profile.spec.ts -------------------------------------------------------------------------------- /tests/wema/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/wema/data.ts -------------------------------------------------------------------------------- /tests/wema/wema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/wema/wema.spec.ts -------------------------------------------------------------------------------- /tests/williams/cs-percentr.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/williams/cs-percentr.xls -------------------------------------------------------------------------------- /tests/williams/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/williams/data.ts -------------------------------------------------------------------------------- /tests/williams/williams.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/williams/williams.spec.ts -------------------------------------------------------------------------------- /tests/wma/11-Weighted-Moving-Average.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/wma/11-Weighted-Moving-Average.xlsx -------------------------------------------------------------------------------- /tests/wma/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/wma/data.ts -------------------------------------------------------------------------------- /tests/wma/wma.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tests/wma/wma.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coin-unknown/Indicators/HEAD/yarn.lock --------------------------------------------------------------------------------