├── .gitignore ├── .idea ├── .gitignore ├── how_to_build_a_metatrader5_trading_bot_expert_advisor.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── example_settings.json ├── main.py ├── mt5_interface.py └── strategy.py /.gitignore: -------------------------------------------------------------------------------- 1 | /settings.json 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/how_to_build_a_metatrader5_trading_bot_expert_advisor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/.idea/how_to_build_a_metatrader5_trading_bot_expert_advisor.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/README.md -------------------------------------------------------------------------------- /example_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/example_settings.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/main.py -------------------------------------------------------------------------------- /mt5_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/mt5_interface.py -------------------------------------------------------------------------------- /strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimtin/how_to_build_a_metatrader5_trading_bot_expert_advisor/HEAD/strategy.py --------------------------------------------------------------------------------