├── .gitignore ├── LICENSE.txt ├── README.rst ├── demo.py ├── requirements.test.txt ├── requirements.txt ├── setup.py ├── stocktrends ├── __init__.py └── indicators.py ├── tests ├── HDFCLIFE.csv ├── HOOLI ├── __init__.py ├── hooli_linebreak_3.csv ├── hooli_renko_4.csv └── test_indicators.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/README.rst -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/demo.py -------------------------------------------------------------------------------- /requirements.test.txt: -------------------------------------------------------------------------------- 1 | pytest==7.3.0 2 | tox==4.14.2 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas==2.1.3 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/setup.py -------------------------------------------------------------------------------- /stocktrends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/stocktrends/__init__.py -------------------------------------------------------------------------------- /stocktrends/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/stocktrends/indicators.py -------------------------------------------------------------------------------- /tests/HDFCLIFE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tests/HDFCLIFE.csv -------------------------------------------------------------------------------- /tests/HOOLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tests/HOOLI -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hooli_linebreak_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tests/hooli_linebreak_3.csv -------------------------------------------------------------------------------- /tests/hooli_renko_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tests/hooli_renko_4.csv -------------------------------------------------------------------------------- /tests/test_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tests/test_indicators.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChillarAnand/stocktrends/HEAD/tox.ini --------------------------------------------------------------------------------