You'd solve your problem faster by testing OrderSend with with SL and Tp at 0.
seungbaek:
Thanks Raptor for your reply... Curretly i do not know GFT is ECN or not and I will confirm.
Why do you care? Just code it for ECN and it works on any broker.Thanks Raptor for your reply... Curretly i do not know GFT is ECN or not and I will confirm.
//++++ These are adjusted for 5 digit brokers. int pips2points; // slippage 3 pips 3=points 30=points double pips2dbl; // Stoploss 15 pips 0.015 0.0150 int Digits.pips; // DoubleToStr(dbl/pips2dbl, Digits.pips) int init(){ if (Digits % 2 == 1){ // DE30=1/JPY=3/EURUSD=5 forum.mql4.com/43064#515262 pips2dbl = Point*10; pips2points = 10; Digits.pips = 1; } else { pips2dbl = Point; pips2points = 1; Digits.pips = 0; } // OrderSend(... Slippage.Pips * pips2points, Bid - StopLossPips * pips2dbl //---- These are adjusted for 5 digit brokers. /* On ECN brokers you must open first and THEN set stops int ticket = OrderSend(..., 0,0,...) if (ticket < 0) Alert("OrderSend failed: ", GetLastError()); else if (!OrderSelect(ticket, SELECT_BY_TICKET)) Alert("OrderSelect failed: ", GetLastError()); else if (!OrderModify(OrderTicket(), OrderOpenPrice(), SL, TP, 0) Alert("OrderModify failed: ", GetLastError()); */

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Could someone please help fix the error code 130?
When I run a tester it was okay to get a result without any error code.
But I had an error code 130 when it attached to chart and runing real time with the demo account.
While running the tester, for example, the journal showed "opened price : 1.30003, stoploss : 1.29503, takeprofit : 1.30503 - OK".
However during real time runing with M5 EUR:USD chart of demo account I had an "Error opening SELL order : 130" and then could not open any order.
Thanks for your help!!!
Regards,
Seung