MT5-TradingToolCrypto
MT5-TradingToolCrypto copied to clipboard
List of open source bots
- a simple UI for manual trading crypto
- market-maker: using RobotFrameWork
- robot with indicators : using RobotFrameWork
-
- open trades with core api: CBP:Class
There are two wrappers for building bots quickly within metatrader
#include <TradingToolCrypto\CBP\CBPFrameWork.mqh>
#include <TradingToolCrypto\TT\RobotFrameWork.mqh>
RobotFrameWork mt5 : this is your standard metatrader syntax for open/close/orders/price/positions within mt5 brokerages (you must use this library if you want to backtest your robot).
The CBPFrameWork is the same as the RobotFrameWork , but this handles your crypto trades (for live trading).
When building bots, it's recommended to use both include files and have a
input bool Exchange_Trading
and toggle live trading at the crypto exchanges.