https://github.com/bukosabino/ta
Raw File
Tip revision: 5438c949518274d0f6957480ac0f97f735c0cd98 authored by Bukosabino on 21 March 2020, 16:42:44 UTC
fixing bug: keltner channel high band calculation. Also, included percentage band and width band indicators for keltner channel. Also, included 2 ways to calculate the centerline of Keltner Channel: original version (sma of typical price) vs modern version (ema of close)
Tip revision: 5438c94
Makefile
init:
	pip install -r requirements.txt

lint:
	pycodestyle --max-line-length=119 ta && isort --check-only --recursive ta

isort-fix:
	isort --recursive ta

test: lint
	# python -m unittest discover
	coverage run tests.py
	coverage report -m
back to top