├── .gitignore ├── LICENSE ├── README.md ├── docs ├── alerting.md ├── appendix │ ├── CAC40_feb2020_1.png │ ├── CAC40_feb2020_2.png │ ├── CAC40_feb2020_3.png │ ├── admin_interface1.png │ ├── bot_interface1.png │ ├── no_strat_selected.png │ ├── start_messages.txt │ └── strats_selected.png ├── backtesting.md ├── blacklist.md ├── commands_list.md ├── download_data.md ├── installation_guide.md ├── jobs.md ├── machine_learning.md ├── optimization.md ├── orders.md ├── porfolio.md ├── predefined_strategies.md ├── reporting.md ├── start_bot.md ├── stock_exchange.md ├── stocks.md ├── strategies.md ├── toubleshooting.md └── trend_calculation.md ├── py-trading-bot ├── __init__.py ├── core │ ├── __init__.py │ ├── caller.py │ ├── common.py │ ├── constants.py │ ├── data_manager.py │ ├── data_manager_online.py │ ├── indicators.py │ ├── macro.py │ ├── presel.py │ ├── presel_classic.py │ ├── strat.py │ ├── stratL.py │ └── strat_legacy.py ├── dump.json ├── general_settings │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── views.py ├── jupyter_scripts │ ├── PyPortfolioOpt.ipynb │ ├── corr.ipynb │ ├── live.ipynb │ ├── macro_vis.ipynb │ ├── ml.ipynb │ ├── presel.ipynb │ ├── presel_classic.ipynb │ ├── stats.ipynb │ ├── strat.ipynb │ ├── tested_arrs_reader.ipynb │ └── trend_vis.ipynb ├── logs │ ├── info.log │ ├── trade.log │ └── warning_and_error.log ├── manage.py ├── ml │ ├── __init__.py │ ├── ml.py │ └── models │ │ ├── .placeholder │ │ ├── 251119_lstm_test_no_reduced_memory.json │ │ ├── 251119_lstm_test_no_reduced_memory.pickle │ │ ├── 251119_lstm_test_reduced_memory.json │ │ ├── 251119_lstm_test_reduced_memory.pickle │ │ ├── 251119_mlp_test_no_reduced_memory.json │ │ ├── 251119_mlp_test_no_reduced_memory.pickle │ │ ├── lstm_test.json │ │ ├── lstm_test.pickle │ │ ├── mlp_test.json │ │ ├── mlp_test.pickle │ │ ├── scaler_x_251119_lstm_test_no_reduced_memory.save │ │ ├── scaler_x_251119_lstm_test_reduced_memory.save │ │ ├── scaler_x_251119_mlp_test_no_reduced_memory.save │ │ ├── scaler_x_lstm_test.save │ │ ├── scaler_x_mlp_test.save │ │ ├── scaler_y_251119_lstm_test_no_reduced_memory.save │ │ ├── scaler_y_251119_lstm_test_reduced_memory.save │ │ ├── scaler_y_251119_mlp_test_no_reduced_memory.save │ │ ├── scaler_y_lstm_test.save │ │ └── scaler_y_mlp_test.save ├── opt │ ├── opt_by_part.py │ ├── opt_by_part_rec.py │ ├── opt_corr.py │ ├── opt_keep.py │ ├── opt_macro.py │ ├── opt_main.py │ ├── opt_presel.py │ ├── opt_sl.py │ ├── opt_strat.py │ ├── opt_symbols.py │ ├── output │ │ └── folder_holder │ └── tested_arrs │ │ └── folder_holder ├── opt_starter.py ├── orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── form.py │ ├── ib.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── ss_manager.py │ ├── templates │ │ └── orders │ │ │ └── pf.html │ ├── urls.py │ └── views.py ├── reporting │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── filter.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── scanner.py │ ├── static │ │ └── reporting │ │ │ └── report.css │ ├── telegram.py │ ├── templates │ │ └── reporting │ │ │ ├── alerts.html │ │ │ ├── download_ib.html │ │ │ ├── download_yf.html │ │ │ ├── report.html │ │ │ ├── reports.html │ │ │ ├── scan.html │ │ │ ├── scans.html │ │ │ ├── success_report.html │ │ │ ├── trend.html │ │ │ └── trigger_scan.html │ ├── urls.py │ └── views.py ├── saved_cours │ ├── CAC40_2007_2022_08.h5 │ ├── DAX_2007_2022_08.h5 │ ├── IT_2007_2022_08.h5 │ └── NASDAQ_2007_2022_08.h5 ├── start_bot.sh ├── telegram_bot.pickle ├── tests │ ├── __init__.py │ ├── minimum_example │ │ └── telegram_minimal.py │ ├── note_about_tests.md │ ├── perf.ipynb │ ├── test_data_manager.py │ ├── test_data_manager_online.py │ ├── test_defi.py │ ├── test_ib.py │ ├── test_indicators.py │ ├── test_macro.py │ ├── test_ml.py │ ├── test_opt.py │ ├── test_opt_main.py │ ├── test_opt_presel.py │ ├── test_opt_strat.py │ ├── test_orders.py │ ├── test_presel.py │ ├── test_preselP.py │ ├── test_presel_classic.py │ ├── test_reporting.py │ ├── test_ss_manager.py │ ├── test_strat.py │ ├── test_stratP.py │ ├── test_strat_legacy.py │ ├── test_telegram.py │ └── toolbox.py └── trading_bot │ ├── __init__.py │ ├── asgi.py │ ├── celery.py │ ├── etc │ ├── .placeholder │ ├── DB_SECRET │ ├── DB_USER │ ├── DJANGO_SECRET │ └── TELEGRAM_TOKEN │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /docs/alerting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/alerting.md -------------------------------------------------------------------------------- /docs/appendix/CAC40_feb2020_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/CAC40_feb2020_1.png -------------------------------------------------------------------------------- /docs/appendix/CAC40_feb2020_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/CAC40_feb2020_2.png -------------------------------------------------------------------------------- /docs/appendix/CAC40_feb2020_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/CAC40_feb2020_3.png -------------------------------------------------------------------------------- /docs/appendix/admin_interface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/admin_interface1.png -------------------------------------------------------------------------------- /docs/appendix/bot_interface1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/bot_interface1.png -------------------------------------------------------------------------------- /docs/appendix/no_strat_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/no_strat_selected.png -------------------------------------------------------------------------------- /docs/appendix/start_messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/start_messages.txt -------------------------------------------------------------------------------- /docs/appendix/strats_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/appendix/strats_selected.png -------------------------------------------------------------------------------- /docs/backtesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/backtesting.md -------------------------------------------------------------------------------- /docs/blacklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/blacklist.md -------------------------------------------------------------------------------- /docs/commands_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/commands_list.md -------------------------------------------------------------------------------- /docs/download_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/download_data.md -------------------------------------------------------------------------------- /docs/installation_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/installation_guide.md -------------------------------------------------------------------------------- /docs/jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/jobs.md -------------------------------------------------------------------------------- /docs/machine_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/machine_learning.md -------------------------------------------------------------------------------- /docs/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/optimization.md -------------------------------------------------------------------------------- /docs/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/orders.md -------------------------------------------------------------------------------- /docs/porfolio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/porfolio.md -------------------------------------------------------------------------------- /docs/predefined_strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/predefined_strategies.md -------------------------------------------------------------------------------- /docs/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/reporting.md -------------------------------------------------------------------------------- /docs/start_bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/start_bot.md -------------------------------------------------------------------------------- /docs/stock_exchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/stock_exchange.md -------------------------------------------------------------------------------- /docs/stocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/stocks.md -------------------------------------------------------------------------------- /docs/strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/strategies.md -------------------------------------------------------------------------------- /docs/toubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/toubleshooting.md -------------------------------------------------------------------------------- /docs/trend_calculation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/docs/trend_calculation.md -------------------------------------------------------------------------------- /py-trading-bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/__init__.py -------------------------------------------------------------------------------- /py-trading-bot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/core/caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/caller.py -------------------------------------------------------------------------------- /py-trading-bot/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/common.py -------------------------------------------------------------------------------- /py-trading-bot/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/constants.py -------------------------------------------------------------------------------- /py-trading-bot/core/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/data_manager.py -------------------------------------------------------------------------------- /py-trading-bot/core/data_manager_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/data_manager_online.py -------------------------------------------------------------------------------- /py-trading-bot/core/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/indicators.py -------------------------------------------------------------------------------- /py-trading-bot/core/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/macro.py -------------------------------------------------------------------------------- /py-trading-bot/core/presel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/presel.py -------------------------------------------------------------------------------- /py-trading-bot/core/presel_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/presel_classic.py -------------------------------------------------------------------------------- /py-trading-bot/core/strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/strat.py -------------------------------------------------------------------------------- /py-trading-bot/core/stratL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/stratL.py -------------------------------------------------------------------------------- /py-trading-bot/core/strat_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/core/strat_legacy.py -------------------------------------------------------------------------------- /py-trading-bot/dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/dump.json -------------------------------------------------------------------------------- /py-trading-bot/general_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/general_settings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/general_settings/admin.py -------------------------------------------------------------------------------- /py-trading-bot/general_settings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/general_settings/apps.py -------------------------------------------------------------------------------- /py-trading-bot/general_settings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/general_settings/migrations/0001_initial.py -------------------------------------------------------------------------------- /py-trading-bot/general_settings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/general_settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/general_settings/models.py -------------------------------------------------------------------------------- /py-trading-bot/general_settings/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/ PyPortfolioOpt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/ PyPortfolioOpt.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/corr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/corr.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/live.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/live.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/macro_vis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/macro_vis.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/ml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/ml.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/presel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/presel.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/presel_classic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/presel_classic.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/stats.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/strat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/strat.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/tested_arrs_reader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/tested_arrs_reader.ipynb -------------------------------------------------------------------------------- /py-trading-bot/jupyter_scripts/trend_vis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/jupyter_scripts/trend_vis.ipynb -------------------------------------------------------------------------------- /py-trading-bot/logs/info.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/logs/trade.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/logs/warning_and_error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/manage.py -------------------------------------------------------------------------------- /py-trading-bot/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/ml/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/ml.py -------------------------------------------------------------------------------- /py-trading-bot/ml/models/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_lstm_test_no_reduced_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_lstm_test_no_reduced_memory.json -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_lstm_test_no_reduced_memory.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_lstm_test_no_reduced_memory.pickle -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_lstm_test_reduced_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_lstm_test_reduced_memory.json -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_lstm_test_reduced_memory.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_lstm_test_reduced_memory.pickle -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_mlp_test_no_reduced_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_mlp_test_no_reduced_memory.json -------------------------------------------------------------------------------- /py-trading-bot/ml/models/251119_mlp_test_no_reduced_memory.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/251119_mlp_test_no_reduced_memory.pickle -------------------------------------------------------------------------------- /py-trading-bot/ml/models/lstm_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/lstm_test.json -------------------------------------------------------------------------------- /py-trading-bot/ml/models/lstm_test.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/lstm_test.pickle -------------------------------------------------------------------------------- /py-trading-bot/ml/models/mlp_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/mlp_test.json -------------------------------------------------------------------------------- /py-trading-bot/ml/models/mlp_test.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/mlp_test.pickle -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_x_251119_lstm_test_no_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_x_251119_lstm_test_no_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_x_251119_lstm_test_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_x_251119_lstm_test_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_x_251119_mlp_test_no_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_x_251119_mlp_test_no_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_x_lstm_test.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_x_lstm_test.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_x_mlp_test.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_x_mlp_test.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_y_251119_lstm_test_no_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_y_251119_lstm_test_no_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_y_251119_lstm_test_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_y_251119_lstm_test_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_y_251119_mlp_test_no_reduced_memory.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_y_251119_mlp_test_no_reduced_memory.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_y_lstm_test.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_y_lstm_test.save -------------------------------------------------------------------------------- /py-trading-bot/ml/models/scaler_y_mlp_test.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/ml/models/scaler_y_mlp_test.save -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_by_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_by_part.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_by_part_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_by_part_rec.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_corr.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_keep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_keep.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_macro.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_main.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_presel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_presel.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_sl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_sl.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_strat.py -------------------------------------------------------------------------------- /py-trading-bot/opt/opt_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt/opt_symbols.py -------------------------------------------------------------------------------- /py-trading-bot/opt/output/folder_holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/opt/tested_arrs/folder_holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/opt_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/opt_starter.py -------------------------------------------------------------------------------- /py-trading-bot/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/admin.py -------------------------------------------------------------------------------- /py-trading-bot/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/apps.py -------------------------------------------------------------------------------- /py-trading-bot/orders/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/form.py -------------------------------------------------------------------------------- /py-trading-bot/orders/ib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/ib.py -------------------------------------------------------------------------------- /py-trading-bot/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/models.py -------------------------------------------------------------------------------- /py-trading-bot/orders/ss_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/ss_manager.py -------------------------------------------------------------------------------- /py-trading-bot/orders/templates/orders/pf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/templates/orders/pf.html -------------------------------------------------------------------------------- /py-trading-bot/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/urls.py -------------------------------------------------------------------------------- /py-trading-bot/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/orders/views.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/reporting/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/admin.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/apps.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/filter.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/forms.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/reporting/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/models.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/scanner.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/static/reporting/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/static/reporting/report.css -------------------------------------------------------------------------------- /py-trading-bot/reporting/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/telegram.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/alerts.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/download_ib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/download_ib.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/download_yf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/download_yf.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/report.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/reports.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/scan.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/scans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/scans.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/success_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/success_report.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/trend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/trend.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/templates/reporting/trigger_scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/templates/reporting/trigger_scan.html -------------------------------------------------------------------------------- /py-trading-bot/reporting/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/urls.py -------------------------------------------------------------------------------- /py-trading-bot/reporting/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/reporting/views.py -------------------------------------------------------------------------------- /py-trading-bot/saved_cours/CAC40_2007_2022_08.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/saved_cours/CAC40_2007_2022_08.h5 -------------------------------------------------------------------------------- /py-trading-bot/saved_cours/DAX_2007_2022_08.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/saved_cours/DAX_2007_2022_08.h5 -------------------------------------------------------------------------------- /py-trading-bot/saved_cours/IT_2007_2022_08.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/saved_cours/IT_2007_2022_08.h5 -------------------------------------------------------------------------------- /py-trading-bot/saved_cours/NASDAQ_2007_2022_08.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/saved_cours/NASDAQ_2007_2022_08.h5 -------------------------------------------------------------------------------- /py-trading-bot/start_bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/start_bot.sh -------------------------------------------------------------------------------- /py-trading-bot/telegram_bot.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/telegram_bot.pickle -------------------------------------------------------------------------------- /py-trading-bot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /py-trading-bot/tests/minimum_example/telegram_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/minimum_example/telegram_minimal.py -------------------------------------------------------------------------------- /py-trading-bot/tests/note_about_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/note_about_tests.md -------------------------------------------------------------------------------- /py-trading-bot/tests/perf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/perf.ipynb -------------------------------------------------------------------------------- /py-trading-bot/tests/test_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_data_manager.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_data_manager_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_data_manager_online.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_defi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_defi.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_ib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_ib.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_indicators.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_macro.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_ml.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_opt.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_opt_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_opt_main.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_opt_presel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_opt_presel.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_opt_strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_opt_strat.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_orders.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_presel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_presel.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_preselP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_preselP.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_presel_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_presel_classic.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_reporting.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_ss_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_ss_manager.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_strat.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_stratP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_stratP.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_strat_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_strat_legacy.py -------------------------------------------------------------------------------- /py-trading-bot/tests/test_telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/test_telegram.py -------------------------------------------------------------------------------- /py-trading-bot/tests/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/tests/toolbox.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/__init__.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/asgi.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/celery.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/etc/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/etc/DB_SECRET: -------------------------------------------------------------------------------- 1 | DBpasswordfortheuser 2 | -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/etc/DB_USER: -------------------------------------------------------------------------------- 1 | myDBusername 2 | -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/etc/DJANGO_SECRET: -------------------------------------------------------------------------------- 1 | YourDjangoSecret 2 | -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/etc/TELEGRAM_TOKEN: -------------------------------------------------------------------------------- 1 | yourTelegramToken 2 | -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/settings.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/urls.py -------------------------------------------------------------------------------- /py-trading-bot/trading_bot/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/py-trading-bot/trading_bot/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psemdel/py-trading-bot/HEAD/requirements.txt --------------------------------------------------------------------------------