TradingToolCrypto / MT5-TradingToolCrypto

All the tradingtools: crypto integration to metatrader including cryptobridgepro, crypto charts, paymentbot, indicators, robots are located here. Just download the zip folder, drag and drop into Metatrader 5 directory
https://tradingtoolcrypto.com
114 stars 34 forks source link

List of open source bots #11

Open TradingToolCrypto opened 10 months ago

TradingToolCrypto commented 10 months ago
TradingToolCrypto commented 10 months ago

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.