├── LICENSE ├── README.md ├── setup.py └── timeframeConver ├── __init__.py └── tfConverter.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joao-aguilera-c/timeframe-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joao-aguilera-c/timeframe-converter/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joao-aguilera-c/timeframe-converter/HEAD/setup.py -------------------------------------------------------------------------------- /timeframeConver/__init__.py: -------------------------------------------------------------------------------- 1 | import tfConverter 2 | -------------------------------------------------------------------------------- /timeframeConver/tfConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joao-aguilera-c/timeframe-converter/HEAD/timeframeConver/tfConverter.py --------------------------------------------------------------------------------