GithubHelp home page GithubHelp logo

fagan2888 / jhtalib-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from joosthoeks/jhtalib

0.0 0.0 0.0 4.41 MB

Technical Analysis Library Time-Series

Home Page: https://jhtalib.joosthoeks.com

License: GNU General Public License v3.0

Python 75.88% Jupyter Notebook 24.12%

jhtalib-1's Introduction

title author date
jhTAlib
Joost Hoeks
2019-09-18

jhTAlib

Technical Analysis Library Time-Series

You can use and import it for your:

  • Technical Analysis Software

  • Charting Software

  • Backtest Software

  • Trading Robot Software

  • Trading Software in general

Work in progress...


Depends only on


Docs


Install

From PyPI:

$ [sudo] pip3 install jhtalib

From source:

$ git clone https://github.com/joosthoeks/jhTAlib.git
$ cd jhTAlib
$ [sudo] pip3 install -e .

Update

From PyPI:

$ [sudo] pip3 install --upgrade jhtalib

From source:

$ cd jhTAlib
$ git pull [upstream master]

Examples

$ cd example/

Example 1

$ python3 example-1-plot.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-1-plot.ipynb


Example 2

$ python3 example-2-plot.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-2-plot.ipynb


Example 3

$ python3 example-3-plot.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-3-plot.ipynb


Example 4

$ python3 example-4-plot-quandl.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-4-plot-quandl.ipynb


Example 5

$ python3 example-5-plot-quandl.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-5-plot-quandl.ipynb


Example 6

$ python3 example-6-plot-quandl.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-6-plot-quandl.ipynb


Example 7

$ python3 example-7-quandl-2-df.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-7-quandl-2-df.ipynb


Example 8

$ python3 example-8-alphavantage-2-df.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-8-alphavantage-2-df.ipynb


Example 9

$ python3 example-9-cryptocompare-2-df.py

or

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-9-cryptocompare-2-df.ipynb


Example 10

DF NumPy Pandas

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-10-df-numpy-pandas.ipynb


Example 11

Basic Usage

https://colab.research.google.com/github/joosthoeks/jhTAlib/blob/master/example/example-11-basic-usage.ipynb


Test

$ cd test/
$ python3 test.py

Reference

import jhtalib as jhta

Behavioral Techniques

ATH | All Time High | DONE

  • dict of lists of floats = jhta.ATH(df, price='High')

LMC | Last Major Correction | DONE

  • dict of lists of floats = jhta.LMC(df, price='Low', price_high='High')

PP | Pivot Point | DONE


FIBOPR | Fibonacci Price Retracements | DONE

  • dict of lists of floats = jhta.FIBOPR(df, price='Close')

FIBTR | Fibonacci Time Retracements |


GANNPR | W. D. Gann Price Retracements | DONE

  • dict of lists of floats = jhta.GANNPR(df, price='Close')

GANNTR | W. D. Gann Time Retracements |


JDN | Julian Day Number | DONE


JD | Julian Date | DONE


SUNC | Sun Cycle |


MERCURYC | Mercury Cycle |


VENUSC | Venus Cycle |


EARTHC | Earth Cycle |


MARSC | Mars Cycle |


JUPITERC | Jupiter Cycle |


SATURNC | Saturn Cycle |


URANUSC | Uranus Cycle |


NEPTUNEC | Neptune Cycle |


PLUTOC | Pluto Cycle |


MOONC | Moon Cycle |


Candlestick

CDLBODYS | Candle Body Size | DONE


CDLWICKS | Candle Wick Size | DONE


CDLUPPSHAS | Candle Upper Shadow Size | DONE


CDLLOWSHAS | Candle Lower Shadow Size | DONE


CDLBODYP | Candle Body Percent | DONE

  • list of floats = jhta.CDLBODYP(df, open='Open', close='Close')

CDLBODYM | Candle Body Momentum | DONE

  • list of floats = jhta.CDLBODYM(df, n, open='Open', close='Close')

  • book: Trading Systems and Methods


GAP | Gap | DONE

  • list of floats = jhta.GAP(df, high='High', low='Low', close='Close')

QSTICK | Qstick | DONE


SHADOWT | Shadow Trends | DONE

  • dict of lists of floats = jhta.SHADOWT(df, n, open='Open', high='High', low='Low', close='Close')

  • book: The New Technical Trader


IMI | Intraday Momentum Index | DONE


INSBAR | Inside Bar | DONE

  • list of booleans = jhta.INSBAR(df, high='High', low='Low')

OUTSBAR | Outside Bar | DONE

  • list of booleans = jhta.OUTSBAR(df, high='High', low='Low')

Cycle Indicators

HT_DCPERIOD | Hilbert Transform - Dominant Cycle Period |


HT_DCPHASE | Hilbert Transform - Dominant Cycle Phase |


HT_PHASOR | Hilbert Transform - Phasor Components |


HT_SINE | Hilbert Transform - SineWave |


HT_TRENDLINE | Hilbert Transform - Instantaneous Trendline |


HT_TRENDMODE | Hilbert Transform - Trend vs Cycle Mode |


TS | Trend Score | DONE


Data

CSV2DF | CSV file 2 DataFeed | DONE

  • dict of tuples of floats = jhta.CSV2DF(csv_file_path, datetime='datetime', Open='Open', high='High', low='Low', close='Close', volume='Volume')

CSVURL2DF | CSV file url 2 DataFeed | DONE

  • dict of tuples of floats = jhta.CSVURL2DF(csv_file_url, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

DF2CSV | DataFeed 2 CSV file | DONE

  • csv file = jhta.DF2CSV(df, csv_file_path, datetime='datetime', Open='Open', high='High', low='Low', close='Close', volume='Volume')

DF2DFREV | DataFeed 2 DataFeed Reversed | DONE

  • dict of tuples of floats = jhta.DF2DFREV(df, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

DF2DFWIN | DataFeed 2 DataFeed Window | DONE

  • dict of tuples of floats = jhta.DF2DFWIN(df, start=0, end=10, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

DF_HEAD | DataFeed HEAD | DONE

  • dict of tuples of floats = jhta.DF_HEAD(df, n=5, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

DF_TAIL | DataFeed TAIL | DONE

  • dict of tuples of floats = jhta.DF_TAIL(df, n=5, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

DF2HEIKIN_ASHI | DataFeed 2 Heikin-Ashi DataFeed | DONE

  • dict of tuples of floats = jhta.DF2HEIKIN_ASHI(df, datetime='datetime', open='Open', high='High', low='Low', close='Close', volume='Volume')

Event Driven

ASI | Accumulation Swing Index (J. Welles Wilder) | DONE

  • list of floats = jhta.ASI(df, L, open='Open', high='High', low='Low', close='Close')

  • book: New Concepts in Technical Trading Systems


SI | Swing Index (J. Welles Wilder) | DONE

  • list of floats = jhta.SI(df, L, open='Open', high='High', low='Low', close='Close')

  • book: New Concepts in Technical Trading Systems


SAVGP | Swing Average Price - previous Average Price | DONE

  • list of floats = jhta.SAVGP(df, open='Open', high='High', low='Low', close='Close')

SAVGPS | Swing Average Price - previous Average Price Summation | DONE

  • list of floats = jhta.SAVGPS(df, open='Open', high='High', low='Low', close='Close')

SCO | Swing Close - Open | DONE

  • list of floats = jhta.SCO(df, open='Open', close='Close')

SCOS | Swing Close - Open Summation | DONE

  • list of floats = jhta.SCOS(df, open='Open', close='Close')

SMEDP | Swing Median Price - previous Median Price | DONE

  • list of floats = jhta.SMEDP(df, high='High', low='Low')

SMEDPS | Swing Median Price - previous Median Price Summation | DONE

  • list of floats = jhta.SMEDPS(df, high='High', low='Low')

SPP | Swing Price - previous Price | DONE

  • list of floats = jhta.SPP(df, price='Close')

SPPS | Swing Price - previous Price Summation | DONE

  • list of floats = jhta.SPPS(df, price='Close')

STYPP | Swing Typical Price - previous Typical Price | DONE

  • list of floats = jhta.STYPP(df, high='High', low='Low', close='Close')

STYPPS | Swing Typical Price - previous Typical Price Summation | DONE

  • list of floats = jhta.STYPPS(df, high='High', low='Low', close='Close')

SWCLP | Swing Weighted Close Price - previous Weighted Close Price | DONE

  • list of floats = jhta.SWCLP(df, high='High', low='Low', close='Close')

SWCLPS | Swing Weighted Close Price - previous Weighted Close Price Summation | DONE

  • list of floats = jhta.SWCLPS(df, high='High', low='Low', close='Close')

Experimental

VWAP | Volume Weighted Average Price | DONE

  • list of floats = jhta.VWAP(df, open='Open', high='High', low='Low', close='Close', volume='Volume')

  • book: An Introduction to Algorithmic Trading


MFAI | Market Facilitation Index | DONE


VAMA | Volume Adjusted Moving Average | DONE


WWMA | Welles Wilder Moving Average | DONE


WWS | Welles Wilder Summation | DONE


MFI | Money Flow Index | DONE


General

NORMALIZE | Normalize | DONE


STANDARDIZE | Standardize | DONE


RATIO | Ratio | DONE


SPREAD | Spread | DONE

  • list of floats = jhta.SPREAD(df1, df2, price1='Close', price2='Close')

CP | Comparative Performance | DONE


CRSI | Comparative Relative Strength Index | DONE


CS | Comparative Strength | DONE


Information

INFO | Print df Information | DONE

  • print = jhta.INFO(df, price='Close')

INFO_TRADES | Print Trades Information | DONE

  • print = jhta.INFO_TRADES(profit_trades_list, loss_trades_list)

Math Functions

EXP | Exponential | DONE

  • list of floats = jhta.EXP(df, price='Close')

LOG | Logarithm | DONE

  • list of floats = jhta.LOG(df, price='Close')

LOG10 | Base-10 Logarithm | DONE

  • list of floats = jhta.LOG10(df, price='Close')

SQRT | Square Root | DONE

  • list of floats = jhta.SQRT(df, price='Close')

ACOS | Arc Cosine | DONE

  • list of floats = jhta.ACOS(df, price='Close')

ASIN | Arc Sine | DONE

  • list of floats = jhta.ASIN(df, price='Close')

ATAN | Arc Tangent | DONE

  • list of floats = jhta.ATAN(df, price='Close')

COS | Cosine | DONE

  • list of floats = jhta.COS(df, price='Close')

SIN | Sine | DONE

  • list of floats = jhta.SIN(df, price='Close')

TAN | Tangent | DONE

  • list of floats = jhta.TAN(df, price='Close')

ACOSH | Inverse Hyperbolic Cosine | DONE

  • list of floats = jhta.ACOSH(df, price='Close')

ASINH | Inverse Hyperbolic Sine | DONE

  • list of floats = jhta.ASINH(df, price='Close')

ATANH | Inverse Hyperbolic Tangent | DONE

  • list of floats = jhta.ATANH(df, price='Close')

COSH | Hyperbolic Cosine | DONE

  • list of floats = jhta.COSH(df, price='Close')

SINH | Hyperbolic Sine | DONE

  • list of floats = jhta.SINH(df, price='Close')

TANH | Hyperbolic Tangent | DONE

  • list of floats = jhta.TANH(df, price='Close')

PI | Mathematical constant PI | DONE

  • float = jhta.PI()

E | Mathematical constant E | DONE

  • float = jhta.E()

TAU | Mathematical constant TAU | DONE

  • float = jhta.TAU()

PHI | Mathematical constant PHI | DONE

  • float = jhta.PHI()

FIB | Fibonacci series up to n | DONE

  • list of ints = jhta.FIB(n)

CEIL | Ceiling | DONE

  • list of floats = jhta.CEIL(df, price='Close')

FLOOR | Floor | DONE

  • list of floats = jhta.FLOOR(df, price='Close')

DEGREES | Radians to Degrees | DONE

  • list of floats = jhta.DEGREES(df, price='Close')

RADIANS | Degrees to Radians | DONE

  • list of floats = jhta.RADIANS(df, price='Close')

ADD | Addition High + Low | DONE

  • list of floats = jhta.ADD(df, high='High', low='Low')

DIV | Division High / Low | DONE

  • list of floats = jhta.DIV(df, high='High', low='Low')

MAX | Highest value over a specified period | DONE

  • list of floats = jhta.MAX(df, n, price='Close')

MAXINDEX | Index of highest value over a specified period | DONE

  • list of ints = jhta.MAXINDEX(df, n, price='Close')

MIN | Lowest value over a specified period | DONE

  • list of floats = jhta.MIN(df, n, price='Close')

MININDEX | Index of lowest value over a specified period | DONE

  • list of ints = jhta.MININDEX(df, n, price='Close')

MINMAX | Lowest and Highest values over a specified period | DONE

  • dict of lists of floats = jhta.MINMAX(df, n, price='Close')

MINMAXINDEX | Indexes of lowest and highest values over a specified period | DONE

  • dict of lists of ints = jhta.MINMAXINDEX(df, n, price='Close')

MULT | Multiply High * Low | DONE

  • list of floats = jhta.MULT(df, high='High', low='Low')

SUB | Subtraction High - Low | DONE

  • list of floats = jhta.SUB(df, high='High', low='Low')

SUM | Summation | DONE

  • list of floats = jhta.SUM(df, n, price='Close')

SLOPE | Slope | DONE

  • float = jhta.SLOPE(x1, y1, x2, y2)

  • book: An Introduction to Algorithmic Trading


SLOPES | Slopes | DONE

  • list of floats = jhta.SLOPES(df, n, price='Close')

  • book: An Introduction to Algorithmic Trading


ED | Euclidean Distance | DONE

  • float = jhta.ED(x1, y1, x2, y2)

  • book: An Introduction to Algorithmic Trading


EDS | Euclidean Distances | DONE

  • list of floats = jhta.EDS(df, n, price='Close')

  • book: An Introduction to Algorithmic Trading


Momentum Indicators

ADX | Average Directional Movement Index |


ADXR | Average Directional Movement Index Rating |


APO | Absolute Price Oscillator | DONE


AROON | Aroon |


AROONOSC | Aroon Oscillator |


BOP | Balance Of Power |


CCI | Commodity Channel Index |


CMO | Chande Momentum Oscillator |


DX | Directional Movement Index |


MACD | Moving Average Convergence/Divergence |


MACDEXT | MACD with controllable MA type |


MACDFIX | Moving Average Convergence/Divergence Fix 12/26 |


MINUS_DI | Minus Directional Indicator |


MINUS_DM | Minus Directional Movement |


MOM | Momentum | DONE


PLUS_DI | Plus Directional Indicator |


PLUS_DM | Plus Directional Movement |


PPO | Percentage Price Oscillator |


RMI | Relative Momentum Index | DONE


ROC | Rate of Change | DONE

  • list of floats = jhta.ROC(df, n, price='Close')

ROCP | Rate of Change Percentage | DONE

  • list of floats = jhta.ROCP(df, n, price='Close')

ROCR | Rate of Change Ratio | DONE

  • list of floats = jhta.ROCR(df, n, price='Close')

ROCR100 | Rate of Change Ratio 100 scale | DONE


RSI | Relative Strength Index | DONE


STOCH | Stochastic | DONE


STOCHF | Stochastic Fast |


STOCHRSI | Stochastic Relative Strength Index |


TRIX | 1-day Rate-Of-Change (ROC) of a Triple Smooth EMA |


ULTOSC | Ultimate Oscillator |


WILLR | Williams' %R | DONE


Overlap Studies

BBANDS | Bollinger Bands | DONE


BBANDW | Bollinger Band Width | DONE


DEMA | Double Exponential Moving Average |


EMA | Exponential Moving Average | DONE


ENVP | Envelope Percent | DONE


KAMA | Kaufman Adaptive Moving Average |


MA | Moving Average |


MAMA | MESA Adaptive Moving Average |


MAVP | Moving Average with Variable Period |


MIDPOINT | MidPoint over period | DONE


MIDPRICE | MidPoint Price over period | DONE


MMR | Mayer Multiple Ratio | DONE


SAR | Parabolic SAR | DONE

  • list of floats = jhta.SAR(df, af_step=.02, af_max=.2, high='High', low='Low')

  • book: New Concepts in Technical Trading Systems


SAREXT | Parabolic SAR - Extended |


SMA | Simple Moving Average | DONE


T3 | Triple Exponential Moving Average (T3) |


TEMA | Triple Exponential Moving Average |


TRIMA | Triangular Moving Average | DONE


WMA | Weighted Moving Average


Pattern Recognition

CDL2CROWS | Two Crows |

CDL3BLACKCROWS | Three Black Crows |

CDL3INSIDE | Three Inside Up/Down |

CDL3LINESTRIKE | Three-Line Strike |

CDL3OUTSIDE | Three Outside Up/Down |

CDL3STARSINSOUTH | Three Stars In The South |

CDL3WHITESOLDIERS | Three Advancing White Soldiers |

CDLABANDONEDBABY | Abandoned Baby |

CDLADVANCEBLOCK | Advance Block |

CDLBELTHOLD | Belt-hold |

CDLBREAKAWAY | Breakaway |

CDLCLOSINGMARUBOZU | Closing Marubozu |

CDLCONSEALBABYSWALL | Concealing Baby Swallow |

CDLCOUNTERATTACK | Counterattack |

CDLDARKCLOUDCOVER | Dark Cloud Cover |

CDLDOJI | Doji |

CDLDOJISTAR | Doji Star |

CDLDRAGONFLYDOJI | Dragonfly Doji |

CDLENGULFING | Engulfing Pattern |

CDLEVENINGDOJISTAR | Evening Doji Star |

CDLEVENINGSTAR | Evening Star |

CDLGAPSIDESIDEWHITE | Up/Down-gap side-by-side white lines |

CDLGRAVESTONEDOJI | Gravestone Doji |

CDLHAMMER | Hammer |

CDLHANGINGMAN | Hanging Man |

CDLHARAMI | Harami Pattern |

CDLHARAMICROSS | Harami Cross Pattern |

CDLHIGHWAVE | High-Wave Candle |

CDLHIKKAKE | Hikkake Pattern |

CDLHIKKAKEMOD | Modified Hikkake Pattern |

CDLHOMINGPIGEON | Homing Pigeon |

CDLIDENTICAL3CROWS | Identical Three Crows |

CDLINNECK | In-Neck Pattern |

CDLINVERTEDHAMMER | Inverted Hammer |

CDLKICKING | Kicking |

CDLKICKINGBYLENGTH | Kicking - bull/bear determined by the longer marubozu |

CDLLADDERBOTTOM | Ladder Bottom |

CDLLONGLEGGEDDOJI | Long Legged Doji |

CDLLONGLINE | Long Line Candle |

CDLMARUBOZU | Marubozu |

CDLMATCHINGLOW | Matching Low |

CDLMATHOLD | Mat Hold |

CDLMORNINGDOJISTAR | Morning Doji Star |

CDLMORNINGSTAR | Morning Star |

CDLONNECK | On-Neck Pattern |

CDLPIERCING | Piercing Pattern |

CDLRICKSHAWMAN | Rickshaw Man |

CDLRISEFALL3METHODS | Rising/Falling Three Methods |

CDLSEPARATINGLINES | Separating Lines |

CDLSHOOTINGSTAR | Shooting Star |

CDLSHORTLINE | Short Line Candle |

CDLSPINNINGTOP | Spinning Top |

CDLSTALLEDPATTERN | Stalled Pattern |

CDLSTICKSANDWICH | Stick Sandwich |

CDLTAKURI | Takuri (Dragonfly Doji with very long lower shadow) |

CDLTASUKIGAP | Tasuki Gap |

CDLTHRUSTING | Thrusting Pattern |

CDLTRISTAR | Tristar Pattern |

CDLUNIQUE3RIVER | Unique 3 River |

CDLUPSIDEGAP2CROWS | Upside Gap Two Crows |

CDLXSIDEGAP3METHODS | Upside/Downside Gap Three Methods |


Price Transform

AVGPRICE | Average Price | DONE


MEDPRICE | Median Price | DONE


TYPPRICE | Typical Price | DONE


WCLPRICE | Weighted Close Price | DONE


Statistic Functions

MEAN | Arithmetic mean (average) of data | DONE

  • list of floats = jhta.MEAN(df, n, price='Close')

HARMONIC_MEAN | Harmonic mean of data | DONE

  • list of floats = jhta.HARMONIC_MEAN(df, n, price='Close')

MEDIAN | Median (middle value) of data | DONE

  • list of floats = jhta.MEDIAN(df, n, price='Close')

MEDIAN_LOW | Low median of data | DONE

  • list of floats = jhta.MEDIAN_LOW(df, n, price='Close')

MEDIAN_HIGH | High median of data | DONE

  • list of floats = jhta.MEDIAN_HIGH(df, n, price='Close')

MEDIAN_GROUPED | Median, or 50th percentile, of grouped data | DONE

  • list of floats = jhta.MEDIAN_GROUPED(df, n, price='Close', interval=1)

MODE | Mode (most common value) of discrete data | DONE

  • list of floats = jhta.MODE(df, n, price='Close')

PSTDEV | Population standard deviation of data | DONE

  • list of floats = jhta.PSTDEV(df, n, price='Close', mu=None)

PVARIANCE | Population variance of data | DONE

  • list of floats = jhta.PVARIANCE(df, n, price='Close', mu=None)

STDEV | Sample standard deviation of data | DONE

  • list of floats = jhta.STDEV(df, n, price='Close', xbar=None)

VARIANCE | Sample variance of data | DONE

  • list of floats = jhta.VARIANCE(df, n, price='Close', xbar=None)

COV | Covariance | DONE


COVARIANCE | Covariance | DONE


COR | Correlation | DONE

  • float = jhta.COR(list1, list2)

CORRELATION | Correlation | DONE

  • list of floats = jhta.CORRELATION(df1, df2, n, price1='Close', price2='Close')

PCOR | Population Correlation | DONE

  • float = jhta.PCOR(list1, list2)

PCORRELATION | Population Correlation | DONE

  • list of floats = jhta.PCORRELATION(df1, df2, n, price1='Close', price2='Close')

BETA | Beta | DONE


BETAS | Betas | DONE


LSR | Least Squares Regression | DONE


SLR | Simple Linear Regression | DONE


Uncategorised

HR | Hit Rate / Win Rate | DONE


PLR | Profit/Loss Ratio | DONE


EV | Expected Value | DONE


POR | Probability of Ruin (Table of Lucas and LeBeau) | DONE

  • int = jhta.POR(hitrade_float, profit_loss_ratio_float)

  • book: Computer Analysis of the Futures Markets


BPPS | Basis Points per Second | DONE

  • float = jhta.BPPS(trade_start_price, trade_end_price, trade_start_timestamp, trade_end_timestamp)

  • book: An Introduction to Algorithmic Trading


RET | Return | DONE

  • list of floats = jhta.RET(df, price='Close')

  • book: An Introduction to Algorithmic Trading


RETS | Returns | DONE

  • list of floats = jhta.RETS(df, price='Close')

  • book: An Introduction to Algorithmic Trading


PRET | %Return | DONE

  • list of floats = jhta.PRET(df, price='Close')

  • book: An Introduction to Algorithmic Trading


PRETS | %Returns | DONE

  • list of floats = jhta.PRETS(df, price='Close')

  • book: An Introduction to Algorithmic Trading


Volatility Indicators

AEM | Arms Ease of Movement | DONE


ATR | Average True Range | DONE


NATR | Normalized Average True Range |


RVI | Relative Volatility Index | DONE


INERTIA | Inertia |


PRANGE | %Range | DONE

  • list of floats = jhta.PRANGE(df, n, max_price='High', min_price='Low')

  • book: An Introduction to Algorithmic Trading


TRANGE | True Range | DONE


Volume Indicators

AD | Chaikin A/D Line | DONE


ADOSC | Chaikin A/D Oscillator |


OBV | On Balance Volume | DONE


PVR | Price Volume Rank | DONE


PVT | Price Volume Trend | DONE


PVI | Positive Volume Index | DONE


NVI | Negative Volume Index | DONE


Notebooks

Recession Probability


Donation and Funding


jhtalib-1's People

Contributors

joosthoeks avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.