Skip to main content

A backtester for trading algorithms

Project description

TA-Lib

Tests

This is a Python wrapper for TA-LIB based on Cython instead of SWIG. From the homepage:

TA-Lib is widely used by trading software developers requiring to perform technical analysis of financial market data.

  • Includes 150+ indicators such as ADX, MACD, RSI, Stochastic, Bollinger Bands, etc.
  • Candlestick pattern recognition
  • Open-source API for C/C++, Java, Perl, Python and 100% Managed .NET

The original Python bindings included with TA-Lib use SWIG which unfortunately are difficult to install and aren't as efficient as they could be. Therefore this project uses Cython and Numpy to efficiently and cleanly bind to TA-Lib -- producing results 2-4 times faster than the SWIG interface.

In addition, this project also supports the use of the Polars and Pandas libraries.

Installation

You can install from PyPI:

$ python3 -m pip install TA-Lib

Or checkout the sources and run setup.py yourself:

$ python setup.py install

It also appears possible to install via Conda Forge:

$ conda install -c conda-forge ta-lib

Dependencies

To use TA-Lib for python, you need to have the TA-Lib already installed. You should probably follow their installation directions for your platform, but some suggestions are included below for reference.

Mac OS X

You can simply install using Homebrew:

$ brew install ta-lib

If you are using Apple Silicon, such as the M1 processors, and building mixed architecture Homebrew projects, you might want to make sure it's being built for your architecture:

$ arch -arm64 brew install ta-lib

And perhaps you can set these before installing with pip:

$ export TA_INCLUDE_PATH="$(brew --prefix ta-lib)/include"
$ export TA_LIBRARY_PATH="$(brew --prefix ta-lib)/lib"

You might also find this helpful, particularly if you have tried several different installations without success:

$ your-arm64-python -m pip install --no-cache-dir ta-lib
Windows

Download ta-lib-0.4.0-msvc.zip and unzip to C:\ta-lib.

This is a 32-bit binary release. If you want to use 64-bit Python, you will need to build a 64-bit version of the library. Some unofficial (and unsupported) instructions for building on 64-bit Windows 10, here for reference:

  1. Download and Unzip ta-lib-0.4.0-msvc.zip
  2. Move the Unzipped Folder ta-lib to C:\
  3. Download and Install Visual Studio Community 2015
    • Remember to Select [Visual C++] Feature
  4. Build TA-Lib Library
    • From Windows Start Menu, Start [VS2015 x64 Native Tools Command Prompt]
    • Move to C:\ta-lib\c\make\cdr\win32\msvc
    • Build the Library nmake

You might also try these unofficial windows binaries for both 32-bit and 64-bit:

https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib

Linux

Download ta-lib-0.4.0-src.tar.gz and:

$ tar -xzf ta-lib-0.4.0-src.tar.gz
$ cd ta-lib/
$ ./configure --prefix=/usr
$ make
$ sudo make install

If you build TA-Lib using make -jX it will fail but that's OK! Simply rerun make -jX followed by [sudo] make install.

Note: if your directory path includes spaces, the installation will probably fail with No such file or directory errors.

Troubleshooting

If you get a warning that looks like this:

setup.py:79: UserWarning: Cannot find ta-lib library, installation may fail.
warnings.warn('Cannot find ta-lib library, installation may fail.')

This typically means setup.py can't find the underlying TA-Lib library, a dependency which needs to be installed.


If you installed the underlying TA-Lib library with a custom prefix (e.g., with ./configure --prefix=$PREFIX), then when you go to install this python wrapper you can specify additional search paths to find the library and include files for the underlying TA-Lib library using the TA_LIBRARY_PATH and TA_INCLUDE_PATH environment variables:

$ export TA_LIBRARY_PATH=$PREFIX/lib
$ export TA_INCLUDE_PATH=$PREFIX/include
$ python setup.py install # or pip install ta-lib

Sometimes installation will produce build errors like this:

talib/_ta_lib.c:601:10: fatal error: ta-lib/ta_defs.h: No such file or directory
  601 | #include "ta-lib/ta_defs.h"
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.

or:

common.obj : error LNK2001: unresolved external symbol TA_SetUnstablePeriod
common.obj : error LNK2001: unresolved external symbol TA_Shutdown
common.obj : error LNK2001: unresolved external symbol TA_Initialize
common.obj : error LNK2001: unresolved external symbol TA_GetUnstablePeriod
common.obj : error LNK2001: unresolved external symbol TA_GetVersionString

This typically means that it can't find the underlying TA-Lib library, a dependency which needs to be installed. On Windows, this could be caused by installing the 32-bit binary distribution of the underlying TA-Lib library, but trying to use it with 64-bit Python.


Sometimes installation will fail with errors like this:

talib/common.c:8:22: fatal error: pyconfig.h: No such file or directory
 #include "pyconfig.h"
                      ^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

This typically means that you need the Python headers, and should run something like:

$ sudo apt-get install python3-dev

Sometimes building the underlying TA-Lib library has errors running make that look like this:

../libtool: line 1717: cd: .libs/libta_lib.lax/libta_abstract.a: No such file or directory
make[2]: *** [libta_lib.la] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1

This might mean that the directory path to the underlying TA-Lib library has spaces in the directory names. Try putting it in a path that does not have any spaces and trying again.


Sometimes you might get this error running setup.py:

/usr/include/limits.h:26:10: fatal error: bits/libc-header-start.h: No such file or directory
#include <bits/libc-header-start.h>
         ^~~~~~~~~~~~~~~~~~~~~~~~~~

This is likely an issue with trying to compile for 32-bit platform but without the appropriate headers. You might find some success looking at the first answer to this question.


If you get an error on macOS like this:

code signature in <141BC883-189B-322C-AE90-CBF6B5206F67>
'python3.9/site-packages/talib/_ta_lib.cpython-39-darwin.so' not valid for
use in process: Trying to load an unsigned library)

You might look at this question and use xcrun codesign to fix it.


If you wonder why STOCHRSI gives you different results than you expect, probably you want STOCH applied to RSI, which is a little different than the STOCHRSI which is STOCHF applied to RSI:

>> >
from src import talib
>> > import numpy
>> > c = numpy.random.randn(100)

# this is the library function
>> > k, d = talib.STOCHRSI(c)

# this produces the same result, calling STOCHF
>> > rsi = talib.RSI(c)
>> > k, d = talib.STOCHF(rsi, rsi, rsi)

# you might want this instead, calling STOCH
>> > rsi = talib.RSI(c)
>> > k, d = talib.STOCH(rsi, rsi, rsi)

If the build appears to hang, you might be running on a VM with not enough memory -- try 1 GB or 2 GB.

Function API

Similar to TA-Lib, the Function API provides a lightweight wrapper of the exposed TA-Lib indicators.

Each function returns an output array and have default values for their parameters, unless specified as keyword arguments. Typically, these functions will have an initial "lookback" period (a required number of observations before an output is generated) set to NaN.

For convenience, the Function API supports both numpy.ndarray and pandas.Series and polars.Series inputs.

All of the following examples use the Function API:

import numpy
import talib

close = numpy.random.random(100)

Calculate a simple moving average of the close prices:

output = talib.SMA(close)

Calculating bollinger bands, with triple exponential moving average:

from talib import MA_Type

upper, middle, lower = talib.BBANDS(close, matype=MA_Type.T3)

Calculating momentum of the close prices, with a time period of 5:

output = talib.MOM(close, timeperiod=5)
NaN's

The underlying TA-Lib C library handles NaN's in a sometimes surprising manner by typically propagating NaN's to the end of the output, for example:

>>> c = numpy.array([1.0, 2.0, 3.0, np.nan, 4.0, 5.0, 6.0])

>>> talib.SMA(c, 3)
array([nan, nan,  2., nan, nan, nan, nan])

You can compare that to a Pandas rolling mean, where their approach is to output NaN until enough "lookback" values are observed to generate new outputs:

>>> c = pandas.Series([1.0, 2.0, 3.0, np.nan, 4.0, 5.0, 6.0])

>>> c.rolling(3).mean()
0    NaN
1    NaN
2    2.0
3    NaN
4    NaN
5    NaN
6    5.0
dtype: float64

Abstract API

If you're already familiar with using the function API, you should feel right at home using the Abstract API.

Every function takes a collection of named inputs, either a dict of numpy.ndarray or pandas.Series or polars.Series, or a pandas.DataFrame or polars.DataFrame. If a pandas.DataFrame or polars.DataFrame is provided, the output is returned as the same type with named output columns.

For example, inputs could be provided for the typical "OHLCV" data:

import numpy as np

# note that all ndarrays must be the same length!
inputs = {
    'open': np.random.random(100),
    'high': np.random.random(100),
    'low': np.random.random(100),
    'close': np.random.random(100),
    'volume': np.random.random(100)
}

Functions can either be imported directly or instantiated by name:

from talib import abstract

# directly
SMA = abstract.SMA

# or by name
SMA = abstract.Function('sma')

From there, calling functions is basically the same as the function API:

from talib.abstract import *

# uses close prices (default)
output = SMA(inputs, timeperiod=25)

# uses open prices
output = SMA(inputs, timeperiod=25, price='open')

# uses close prices (default)
upper, middle, lower = BBANDS(inputs, 20, 2, 2)

# uses high, low, close (default)
slowk, slowd = STOCH(inputs, 5, 3, 0, 3, 0) # uses high, low, close by default

# uses high, low, open instead
slowk, slowd = STOCH(inputs, 5, 3, 0, 3, 0, prices=['high', 'low', 'open'])

Streaming API

An experimental Streaming API was added that allows users to compute the latest value of an indicator. This can be faster than using the Function API, for example in an application that receives streaming data, and wants to know just the most recent updated indicator value.

import talib
from talib import stream

close = np.random.random(100)

# the Function API
output = talib.SMA(close)

# the Streaming API
latest = stream.SMA(close)

# the latest value is the same as the last output value
assert (output[-1] - latest) < 0.00001

Supported Indicators and Functions

We can show all the TA functions supported by TA-Lib, either as a list or as a dict sorted by group (e.g. "Overlap Studies", "Momentum Indicators", etc):

import talib

# list of functions
print talib.get_functions()

# dict of functions by group
print talib.get_function_groups()

Indicator Groups

  • Overlap Studies
  • Momentum Indicators
  • Volume Indicators
  • Volatility Indicators
  • Price Transform
  • Cycle Indicators
  • Pattern Recognition
Overlap Studies
BBANDS               Bollinger Bands
DEMA                 Double Exponential Moving Average
EMA                  Exponential Moving Average
HT_TRENDLINE         Hilbert Transform - Instantaneous Trendline
KAMA                 Kaufman Adaptive Moving Average
MA                   Moving average
MAMA                 MESA Adaptive Moving Average
MAVP                 Moving average with variable period
MIDPOINT             MidPoint over period
MIDPRICE             Midpoint Price over period
SAR                  Parabolic SAR
SAREXT               Parabolic SAR - Extended
SMA                  Simple Moving Average
T3                   Triple Exponential Moving Average (T3)
TEMA                 Triple Exponential Moving Average
TRIMA                Triangular Moving Average
WMA                  Weighted Moving Average
Momentum Indicators
ADX                  Average Directional Movement Index
ADXR                 Average Directional Movement Index Rating
APO                  Absolute Price Oscillator
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
MFI                  Money Flow Index
MINUS_DI             Minus Directional Indicator
MINUS_DM             Minus Directional Movement
MOM                  Momentum
PLUS_DI              Plus Directional Indicator
PLUS_DM              Plus Directional Movement
PPO                  Percentage Price Oscillator
ROC                  Rate of change : ((price/prevPrice)-1)*100
ROCP                 Rate of change Percentage: (price-prevPrice)/prevPrice
ROCR                 Rate of change ratio: (price/prevPrice)
ROCR100              Rate of change ratio 100 scale: (price/prevPrice)*100
RSI                  Relative Strength Index
STOCH                Stochastic
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
Volume Indicators
AD                   Chaikin A/D Line
ADOSC                Chaikin A/D Oscillator
OBV                  On Balance Volume
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_TRENDMODE         Hilbert Transform - Trend vs Cycle Mode
Price Transform
AVGPRICE             Average Price
MEDPRICE             Median Price
TYPPRICE             Typical Price
WCLPRICE             Weighted Close Price
Volatility Indicators
ATR                  Average True Range
NATR                 Normalized Average True Range
TRANGE               True Range
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
CDLCONCEALBABYSWALL  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
Statistic Functions
BETA                 Beta
CORREL               Pearson's Correlation Coefficient (r)
LINEARREG            Linear Regression
LINEARREG_ANGLE      Linear Regression Angle
LINEARREG_INTERCEPT  Linear Regression Intercept
LINEARREG_SLOPE      Linear Regression Slope
STDDEV               Standard Deviation
TSF                  Time Series Forecast
VAR                  Variance

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TA-lib-zipline-0.4.22.dev142.tar.gz (70.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

TA_lib_zipline-0.4.22.dev142-cp310-cp310-win_amd64.whl (521.5 kB view details)

Uploaded CPython 3.10Windows x86-64

TA_lib_zipline-0.4.22.dev142-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_11_0_arm64.whl (412.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_10_9_x86_64.whl (738.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

TA_lib_zipline-0.4.22.dev142-cp39-cp39-win_amd64.whl (524.6 kB view details)

Uploaded CPython 3.9Windows x86-64

TA_lib_zipline-0.4.22.dev142-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_11_0_arm64.whl (410.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_10_9_x86_64.whl (738.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

TA_lib_zipline-0.4.22.dev142-cp38-cp38-win_amd64.whl (528.0 kB view details)

Uploaded CPython 3.8Windows x86-64

TA_lib_zipline-0.4.22.dev142-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_11_0_arm64.whl (414.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_10_9_x86_64.whl (741.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

TA_lib_zipline-0.4.22.dev142-cp37-cp37m-win_amd64.whl (510.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

TA_lib_zipline-0.4.22.dev142-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

TA_lib_zipline-0.4.22.dev142-cp37-cp37m-macosx_10_9_x86_64.whl (726.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file TA-lib-zipline-0.4.22.dev142.tar.gz.

File metadata

  • Download URL: TA-lib-zipline-0.4.22.dev142.tar.gz
  • Upload date:
  • Size: 70.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for TA-lib-zipline-0.4.22.dev142.tar.gz
Algorithm Hash digest
SHA256 cbd9726c385016540826e1fb7f420fbefe1c3d2e31b2476fb37267de79a85b5f
MD5 04aaf991a8d6b686ada43cb3536d71b4
BLAKE2b-256 aa2d43c1c1e38c73073132980bafcffe3133b4202698cbb4f5c3740204044e3f

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7736a4ef8745db55bccb2e3f85d9a130fa9081181f5df2fbc41949fc8d46619
MD5 d5c7b4ff1219fa757ccbeb64930b3c69
BLAKE2b-256 7467dfdb8002bdcfed2cff1facb8798f6b769b53054659b1afd1385c6fcf7567

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d9b6e269456a07482af8239f0e5b8707a366433e6ca08afa8ef14c0f81c2825
MD5 8b422966d540ae22f0529c17fc3e9a28
BLAKE2b-256 aea7b46808844ea29623b72b8bf1ee64f16d2a44fcdc9e00a152d3c04c8988f7

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c68ca1f627ab5b80ec4e3ae45239a1a407674392acc7d2abe912367ed80f850f
MD5 4f1740ac216a23f2c064894b93caa9a2
BLAKE2b-256 ea30818eb56c0bb42bf8273fd4546e986ca8f3be2f515164de037c6aa14773b0

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1c67ece6acd9cbc97af9380c090bc31c5976a85c6b653f175d083e7ced9bf41
MD5 68998545a6e0a652015fc5432d71c512
BLAKE2b-256 e1a910e33387f0f965534c0620c97a1aec2f2230d81f75342aa7f2fd7d31c916

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3fa5cffe6ad8896273d01d075f16e512664d9b9eeb6f99dea664f58431d16add
MD5 f69858d0421b6ae123edcc72d246fabd
BLAKE2b-256 da9e3d3d2029b966a7ca0a6e1c6988332729889eb528542bd2cd8b5ce6307b47

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82de1a4706c73850ae1d9fff7e3b68f4db4f33ee6a499c7c7c6590b7accf255c
MD5 72fb831f053a433fcd028240abee1f51
BLAKE2b-256 c47e21e7cc7920e3e49277ca03df09ffa5114b175414184521e70ac2fc677684

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1910ae632054557875f977176fd8770129a79be905289b9716114364a04256ca
MD5 f8e326de1762f76a0f07e4fce13a1323
BLAKE2b-256 979bee10f8a544814c791ba3b5de9cc6c4f5be6298d6cc2e08c51488ce4a6358

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d91b95983891c000669780b60083d2837795aa1ebab9afce915826a3cee765aa
MD5 15ddd5324473f0c0b96ae83ae89f3772
BLAKE2b-256 7cde5c648fa9c50ee2ef828db05ccc2e7d356af9a83b5517614f5ccb857784b9

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1639c30647af10e07b473d6378f662ac0d7cccf18971950fbb9e7c06cf36dd9
MD5 6481b61fad989adfd97da26cd0faa9e9
BLAKE2b-256 f53a5a93bc0cb201c3bffd4bef278342c57d9f8ec36b915e962f93e6e74c88f4

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8f754f6b51076b8c85d6029228e673401f73afcb6260640f3a838651bfca4b0
MD5 8a479235e7458a59aa8e04f0070ce8d7
BLAKE2b-256 155d47e18a831b54b47cfffec426484276d9394434fa4c3dd490cd9bb794733a

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a035987b36c5cc923f33f20e6a59a83d3af7814676c1caf97ffea5f5beab615
MD5 65c006e5b1b852e2d7395ca780b93b40
BLAKE2b-256 9cc08401b002d1a1b222b10ced516f6f70d8eec1381679097f8a02ca45c9c137

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acc4c8af75f9e4c70ec32809d84ab9c92d8df2c03d89c5931817bd9522c24981
MD5 b96f95d50420ddc24a5bcae3afc1571c
BLAKE2b-256 f79ee4a66d7150ca92ee40ff38b673fc6769bfb547bd4ea78fecdfbac0c2ac04

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b7c7cfdd3e5edd05afb9e72b07fcb6fa6e5754667691ad4785313acd753e6a94
MD5 79dc3e6d754304c459f4de220c404090
BLAKE2b-256 7bac5ec34fa8a3d0798f3be961e044cfe2aea82fd51d23a94f927658e943bd2a

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8962f2d61cceefc88a4e3b921598c7be78713bc2369ef5d63d2f440f5eec49f3
MD5 ac89eac7f0b84fbae42b07e8f26a0303
BLAKE2b-256 eab075c15391703cdcc8e7de01875df76d0d067f932821ff914799e4216a07ac

See more details on using hashes here.

File details

Details for the file TA_lib_zipline-0.4.22.dev142-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for TA_lib_zipline-0.4.22.dev142-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d547d772b3584ba324b596252683c3585ed6f3d3294a0cdbbd2712432da57c33
MD5 cbae5c2f292ad9e787e8edd25441954f
BLAKE2b-256 6491fce53ecdcc78f0404a9b4bb24ecc64805ada5142cf6388df1e046fddaa89

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page