├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── common ├── __init__.py ├── backtesting.py ├── classifiers.py ├── depth_processing.py ├── gen_features.py ├── gen_features_rolling_agg.py ├── gen_labels_highlow.py ├── gen_labels_topbot.py ├── gen_signals.py ├── generators.py ├── model_store.py ├── my_feature_example.py ├── types.py ├── utils.py └── utils_mt5.py ├── configs ├── config-mt5-sample-1h.jsonc ├── config-sample-1h.jsonc └── config-sample-1min.jsonc ├── docs ├── conventions.md ├── images │ └── fig_1.png ├── scripts.md ├── server.md ├── signaler.md └── trader.md ├── inputs ├── __init__.py ├── collector_binance.py └── collector_mt5.py ├── outputs ├── __init__.py ├── notifier_diagram.py ├── notifier_scores.py ├── notifier_trades.py ├── trader_binance.py └── trader_mt5.py ├── requirements.txt ├── scripts ├── __init__.py ├── download_binance.py ├── download_mt5.py ├── download_yahoo.py ├── features.py ├── labels.py ├── merge.py ├── predict.py ├── predict_rolling.py ├── signals.py ├── simulate.py └── train.py ├── service ├── App.py ├── __init__.py ├── analyzer.py ├── mt5.py └── server.py └── tests ├── test_classifiers.py ├── test_label_generation.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/backtesting.py -------------------------------------------------------------------------------- /common/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/classifiers.py -------------------------------------------------------------------------------- /common/depth_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/depth_processing.py -------------------------------------------------------------------------------- /common/gen_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/gen_features.py -------------------------------------------------------------------------------- /common/gen_features_rolling_agg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/gen_features_rolling_agg.py -------------------------------------------------------------------------------- /common/gen_labels_highlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/gen_labels_highlow.py -------------------------------------------------------------------------------- /common/gen_labels_topbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/gen_labels_topbot.py -------------------------------------------------------------------------------- /common/gen_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/gen_signals.py -------------------------------------------------------------------------------- /common/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/generators.py -------------------------------------------------------------------------------- /common/model_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/model_store.py -------------------------------------------------------------------------------- /common/my_feature_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/my_feature_example.py -------------------------------------------------------------------------------- /common/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/types.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/utils.py -------------------------------------------------------------------------------- /common/utils_mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/common/utils_mt5.py -------------------------------------------------------------------------------- /configs/config-mt5-sample-1h.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/configs/config-mt5-sample-1h.jsonc -------------------------------------------------------------------------------- /configs/config-sample-1h.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/configs/config-sample-1h.jsonc -------------------------------------------------------------------------------- /configs/config-sample-1min.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/configs/config-sample-1min.jsonc -------------------------------------------------------------------------------- /docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/conventions.md -------------------------------------------------------------------------------- /docs/images/fig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/images/fig_1.png -------------------------------------------------------------------------------- /docs/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/scripts.md -------------------------------------------------------------------------------- /docs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/server.md -------------------------------------------------------------------------------- /docs/signaler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/signaler.md -------------------------------------------------------------------------------- /docs/trader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/docs/trader.md -------------------------------------------------------------------------------- /inputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/inputs/__init__.py -------------------------------------------------------------------------------- /inputs/collector_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/inputs/collector_binance.py -------------------------------------------------------------------------------- /inputs/collector_mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/inputs/collector_mt5.py -------------------------------------------------------------------------------- /outputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/__init__.py -------------------------------------------------------------------------------- /outputs/notifier_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/notifier_diagram.py -------------------------------------------------------------------------------- /outputs/notifier_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/notifier_scores.py -------------------------------------------------------------------------------- /outputs/notifier_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/notifier_trades.py -------------------------------------------------------------------------------- /outputs/trader_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/trader_binance.py -------------------------------------------------------------------------------- /outputs/trader_mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/outputs/trader_mt5.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/download_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/download_binance.py -------------------------------------------------------------------------------- /scripts/download_mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/download_mt5.py -------------------------------------------------------------------------------- /scripts/download_yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/download_yahoo.py -------------------------------------------------------------------------------- /scripts/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/features.py -------------------------------------------------------------------------------- /scripts/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/labels.py -------------------------------------------------------------------------------- /scripts/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/merge.py -------------------------------------------------------------------------------- /scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/predict.py -------------------------------------------------------------------------------- /scripts/predict_rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/predict_rolling.py -------------------------------------------------------------------------------- /scripts/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/signals.py -------------------------------------------------------------------------------- /scripts/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/simulate.py -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/scripts/train.py -------------------------------------------------------------------------------- /service/App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/service/App.py -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.8.dev' 2 | -------------------------------------------------------------------------------- /service/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/service/analyzer.py -------------------------------------------------------------------------------- /service/mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/service/mt5.py -------------------------------------------------------------------------------- /service/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/service/server.py -------------------------------------------------------------------------------- /tests/test_classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/tests/test_classifiers.py -------------------------------------------------------------------------------- /tests/test_label_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/tests/test_label_generation.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xNaokiDev/intelligent-trading-bot/HEAD/tests/test_utils.py --------------------------------------------------------------------------------