├── AAPL.csv ├── BTCUSD_Weekly.csv ├── BTC_Gtrends.csv ├── GE.csv ├── GRPN.csv ├── TSLA.csv ├── basic_setup.py ├── bt_main.py ├── bt_main_btc.py ├── bt_main_optimize.py ├── bt_main_plotting.py ├── bt_main_screener.py ├── portfolio.py ├── readme.rst ├── requirements.txt ├── stats.html └── strategies.py /AAPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/AAPL.csv -------------------------------------------------------------------------------- /BTCUSD_Weekly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/BTCUSD_Weekly.csv -------------------------------------------------------------------------------- /BTC_Gtrends.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/BTC_Gtrends.csv -------------------------------------------------------------------------------- /GE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/GE.csv -------------------------------------------------------------------------------- /GRPN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/GRPN.csv -------------------------------------------------------------------------------- /TSLA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/TSLA.csv -------------------------------------------------------------------------------- /basic_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/basic_setup.py -------------------------------------------------------------------------------- /bt_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/bt_main.py -------------------------------------------------------------------------------- /bt_main_btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/bt_main_btc.py -------------------------------------------------------------------------------- /bt_main_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/bt_main_optimize.py -------------------------------------------------------------------------------- /bt_main_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/bt_main_plotting.py -------------------------------------------------------------------------------- /bt_main_screener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/bt_main_screener.py -------------------------------------------------------------------------------- /portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/portfolio.py -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/readme.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | backtrader==1.9.76.123 2 | QuantStats==0.0.25 3 | pandas==1.0.3 4 | -------------------------------------------------------------------------------- /stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/stats.html -------------------------------------------------------------------------------- /strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonForForex/Backtrader-for-backtesting/HEAD/strategies.py --------------------------------------------------------------------------------