├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── ichimoku.py └── sample-data ├── ohcl_sample.csv └── sample.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/README.md -------------------------------------------------------------------------------- /ichimoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/ichimoku.py -------------------------------------------------------------------------------- /sample-data/ohcl_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/sample-data/ohcl_sample.csv -------------------------------------------------------------------------------- /sample-data/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumotrader/ichimoku-crypto/HEAD/sample-data/sample.png --------------------------------------------------------------------------------