MT5-TradingToolCrypto icon indicating copy to clipboard operation
MT5-TradingToolCrypto copied to clipboard

List of open source bots

Open TradingToolCrypto opened this issue 1 year ago • 1 comments

TradingToolCrypto avatar Nov 27 '23 16:11 TradingToolCrypto

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.

TradingToolCrypto avatar Nov 27 '23 16:11 TradingToolCrypto