Recently, MT4 has offered futures and CFDs. I understand that C2 does not support futures or CFDs for MetaTrader.
I have modified the C2MT4 script so that it will send “AAPL” symbol to Collective 2. Basically, I will be sending Apple stock trading signals and not CFDs for MetaTrader.
Please let me know if this will work.
#import "C2MT4Connector.dll"
string C2Init2(string c2InterfaceHost, string email, string password, string systemid, double c2LotMultiplier, string eaVersion, string terminal_data_path, string terminal_commondata_path, string reserve );
string C2OrderOpen(string email, string password, string systemid, int orderid, string symbol, int cmd, double volume, double price, double stoploss, double takeprofit, string timeStamp, string mt4OrderComment);
string C2OrderClose(string email, string password, string systemid, int orderid, string symbol, int cmd, double volume, double closePrice, string mt4OrderComment);
int C2ReadResponses();
string C2NextResponse();
#import
extern string C2SystemID = “”;
extern string C2Email = “”;
extern string C2Password = “”;
extern double C2LotMultiplier = 10;
extern string C2InterfaceHost = “ts.collective2.com”;