All Projects → dysonance → Indicators.jl

dysonance / Indicators.jl

Licence: other
Financial market technical analysis & indicators in Julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Indicators.jl

Simplestockanalysispython
Stock Analysis Tutorial in Python
Stars: ✭ 126 (-3.08%)
Mutual labels:  time-series, timeseries, technical-analysis
Cnn For Stock Market Prediction Pytorch
CNN for stock market prediction using raw data & candlestick graph.
Stars: ✭ 86 (-33.85%)
Mutual labels:  time-series, finance
Timbala
Durable time-series database that's API-compatible with Prometheus.
Stars: ✭ 85 (-34.62%)
Mutual labels:  time-series, timeseries
Stingray
Anything can happen in the next half hour (including spectral timing made easy)!
Stars: ✭ 94 (-27.69%)
Mutual labels:  time-series, timeseries
Tradestation
EasyLanguage indicators and systems for TradeStation
Stars: ✭ 65 (-50%)
Mutual labels:  finance, technical-analysis
Fecon236
Tools for financial economics. Curated wrapper over Python ecosystem. Source code for fecon235 Jupyter notebooks.
Stars: ✭ 72 (-44.62%)
Mutual labels:  time-series, finance
Trendyways
Simple javascript library containing methods for financial technical analysis
Stars: ✭ 121 (-6.92%)
Mutual labels:  finance, technical-analysis
Pandas Ta
Technical Analysis Indicators - Pandas TA is an easy to use Python 3 Pandas Extension with 130+ Indicators
Stars: ✭ 962 (+640%)
Mutual labels:  finance, technical-analysis
Griddb
GridDB is a next-generation open source database that makes time series IoT and big data fast,and easy.
Stars: ✭ 1,587 (+1120.77%)
Mutual labels:  time-series, timeseries
Strategems.jl
Quantitative systematic trading strategy development and backtesting in Julia
Stars: ✭ 106 (-18.46%)
Mutual labels:  time-series, finance
Tsmoothie
A python library for time-series smoothing and outlier detection in a vectorized way.
Stars: ✭ 109 (-16.15%)
Mutual labels:  time-series, timeseries
Neural prophet
NeuralProphet - A simple forecasting model based on Neural Networks in PyTorch
Stars: ✭ 1,125 (+765.38%)
Mutual labels:  time-series, timeseries
Kaggle Web Traffic
1st place solution
Stars: ✭ 1,641 (+1162.31%)
Mutual labels:  time-series, timeseries
Stl Decomp 4j
Java implementation of Seasonal-Trend-Loess time-series decomposition algorithm.
Stars: ✭ 75 (-42.31%)
Mutual labels:  time-series, timeseries
Msgarch
MSGARCH R Package
Stars: ✭ 51 (-60.77%)
Mutual labels:  time-series, finance
Brein Time Utilities
Library which contains several time-dependent data and index structures (e.g., IntervalTree, BucketTimeSeries), as well as algorithms.
Stars: ✭ 94 (-27.69%)
Mutual labels:  time-series, timeseries
Finance4py
股市技術分析小工具
Stars: ✭ 8 (-93.85%)
Mutual labels:  finance, technical-analysis
Kaggle Web Traffic Time Series Forecasting
Solution to Kaggle - Web Traffic Time Series Forecasting
Stars: ✭ 29 (-77.69%)
Mutual labels:  time-series, timeseries
Doppelganger
[IMC 2020 (Best Paper Finalist)] Using GANs for Sharing Networked Time Series Data: Challenges, Initial Promise, and Open Questions
Stars: ✭ 97 (-25.38%)
Mutual labels:  time-series, timeseries
Pytorch Gan Timeseries
GANs for time series generation in pytorch
Stars: ✭ 109 (-16.15%)
Mutual labels:  time-series, finance

Build Status Coverage Status codecov.io

Indicators

Indicators is a Julia package offering efficient implementations of many technical analysis indicators and algorithms. This work is inspired by the TTR package in R and the Python implementation of TA-Lib, and the ultimate goal is to implement all of the functionality of these offerings (and more) in Julia. This package has been written to be able to interface with both native Julia Array types, as well as the TS time series type from the Temporal package. Contributions are of course always welcome for wrapping any of these functions in methods for other types and/or packages out there, as are suggestions for other indicators to add to the lists below.

Implemented

Moving Averages

  • SMA (simple moving average)
  • WMA (weighted moving average)
  • EMA (exponential moving average)
  • TRIMA (triangular moving average)
  • KAMA (Kaufman adaptive moving average)
  • MAMA (MESA adaptive moving average, developed by John Ehlers)
  • HMA (Hull moving average)
  • ALMA (Arnaud-Legoux moving average)
  • SWMA (sine-weighted moving average)
  • DEMA (double exponential moving average)
  • TEMA (triple exponential moving average)
  • ZLEMA (zero-lag exponential moving average)
  • MMA (modified moving average)
  • VWMA (volume-weighted moving average)
  • MLR (moving linear regression)
    • Prediction
    • Slope
    • Intercept
    • Standard error
    • Upper & lower bound
    • R-squared

Momentum Indicators

  • Momentum (n-day price change)
  • ROC (rate of change)
  • MACD (moving average convergence-divergence)
  • RSI (relative strength index)
  • ADX (average directional index)
  • Parabolic SAR (stop and reverse)
  • Fast & slow stochastics
  • SMI (stochastic momentum indicator)
  • KST (Know Sure Thing)
  • Williams %R
  • CCI (commodity channel index)
  • Donchian channel
  • Aroon indicator + oscillator

Volatility Indicators

  • Bollinger Bands
  • Average True Range
  • Keltner Bands

Other

  • Rolling/running mean
  • Rolling/running standard deviation
  • Rolling/running variance
  • Rolling/running covariance
  • Rolling/running correlation
  • Rolling/running maximum
  • Rolling/running minimum
  • Rolling/running MAD (mean absolute deviation)
  • Rolling/running quantiles

Wish List

To-Do

  • Hamming moving average
  • VWAP (volume-weighted average price)
  • EVWMA (elastic, volume-weighted moving average)
  • VMA (variable-length moving average)
  • Chaikin Money Flow
  • Ultimate Oscillator
  • OBV (on-balance volume)
  • Too many more to name...always happy to hear suggestions though!

Done

  • Moving Linear Regression
  • KAMA (Kaufman adaptive moving average)
  • DEMA (double exponential moving average)
  • TEMA (tripe exponential moving average)
  • ALMA (Arnaud Legoux moving average)
  • Parabolic SAR
  • Williams %R
  • KST (know sure thing)
  • CCI (commodity channel index)
  • ROC (rate of change)
  • Momentum
  • Donchian Channel
  • Aroon Indicator / Aroon Oscillator
  • Stochastics
    • Slow Stochastics
    • Fast Stochastics
    • Stochastic Momentum Index
  • MMA (modified moving average)
  • ZLEMA (zero lag exponential moving average)
  • VWMA (volume-weighted moving average)

Examples

Randomly generated data:

alt text

Apple (AAPL) daily data from 2015:

alt text

Corn futures daily data

alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].