View on GitHub

TA-Lib

Python wrapper for TA-Lib (https://ta-lib.org/).

Download this project as a .zip file Download this project as a tar.gz file

Math Operator Functions

ADD - Vector Arithmetic Add

real = ADD(real0, real1)

DIV - Vector Arithmetic Div

real = DIV(real0, real1)

MAX - Highest value over a specified period

real = MAX(real, timeperiod=30)

MAXINDEX - Index of highest value over a specified period

integer = MAXINDEX(real, timeperiod=30)

MIN - Lowest value over a specified period

real = MIN(real, timeperiod=30)

MININDEX - Index of lowest value over a specified period

integer = MININDEX(real, timeperiod=30)

MINMAX - Lowest and highest values over a specified period

min, max = MINMAX(real, timeperiod=30)

MINMAXINDEX - Indexes of lowest and highest values over a specified period

minidx, maxidx = MINMAXINDEX(real, timeperiod=30)

MULT - Vector Arithmetic Mult

real = MULT(real0, real1)

SUB - Vector Arithmetic Subtraction

real = SUB(real0, real1)

SUM - Summation

real = SUM(real, timeperiod=30)

Documentation Index All Function Groups