cython-indicators

Indicator functions using cython


License
MIT
Install
pip install cython-indicators==1.0.0

Documentation

Indicator Functions using cython (v0.0.6)

@Author epociask

** Still in infancy, gonna require a good amount of work **

Currently provide support for:

Adding Support For

Currently Supported and Tested on

  • MACOSX
  • Kalinux_x86
  • Debian_x86
  • Fedora_x86
  • Raspbian_x64

To Install (For Now)

Add to python envrionment (PIP)

pip install cython-indicators  

Add to python envrionment (Manual)

git clone https://github.com/epociask/cython_indicator_functions.git 

python setup.py build 

python setup.py install --user 

To Run (For Now)

import indicators
import numpy as np 

closes = np.array([12.3, 11.5, 23.5, 24.2, 32.4])

print(indicators.SMA(closes, 4))

22.9