Error 130 bites again........Help!

 
//+------------------------------------------------------------------+
//|                                                        Ron Greene|
//+------------------------------------------------------------------+
//
//  Changed Thresh A to 10 on May 5
// 
#include <stdlib.mqh>
//---- input parameters

extern string ________________;

extern string _______________;

int ticket;
int open_slippage= 10;
int close_slippage= 10;
static int count;
//------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
Print("*************************");
Print("*************************");
return(0);
}

//+------------------------------------------------------------------+
//| expert start function |
 
//+------------------------------------------------------------------+

int start()
{


if(count > 5) return(0);


Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));
Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("Freeze Level - ", MarketInfo(Symbol(), MODE_FREEZELEVEL));

Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));
Print ("StopLevel = ",MarketInfo(Symbol(), MODE_STOPLEVEL));

double Spread = NormalizeDouble((Ask - Bid) * 100000,0);




if(Spread > 11.0 )
   {
      return(0);
   }    

   

double SL = Bid + (100 * Point);
double TP = Bid + (100 * Point);
    
      SellNow("EURUSD", Bid + (50 * Point) ,SL,TP,1.0);
 
count = count + 1; 
    
//=================================================================================
//=================================================================================
      
return(0); 
}


//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}

//+------------------------------------------------------------------+
//| Buy |
//+------------------------------------------------------------------+
void BuyNow( string Sym, double price, double BSL, double BTP, double lotSize)
{
Print(" ________________________ENTERING BUYNOW ",Sym," _____________________");
RefreshRates();
Print(">>>>>>>>>>>> Price = ", price, "  BSL = ", BSL, "   BTP = ", BTP);
OrderSendEx(Sym, OP_BUY, lotSize, price , open_slippage, BSL, BTP, "Test", 111, 0, Blue);
return;
}


//+------------------------------------------------------------------+
//| Sell |
//+------------------------------------------------------------------+
void SellNow(string Sym, double price, double SSL,double STP, double lotSize)
{
Print(" ________________________ENTERING SELLNOW ",Sym," _____________________");
RefreshRates();

Print(">>>>>>>>>>>> Price = ", DoubleToStr(price,5), "  SSL = ", DoubleToStr(SSL,5), "   STP = ", DoubleToStr(STP,5));

OrderSendEx(Sym, OP_SELL, lotSize, price,open_slippage, SSL, STP, "Test" , 111, 0, Red);
return;
}


//+------------------------------------------------------------------+
//| Close at market price |
//+------------------------------------------------------------------+

 
//+------------------------------------------------------------------+
//| Extended order execution functions for used in multiple pairs |
//| with automatic retry attempts. |
//+------------------------------------------------------------------+
void OrderSendEx(string symbol, int cmd, double volume, double price, int slippage, double stoploss, double takeprofit, string comment, int magic, datetime expiration=5, color arrow_color=CLR_NONE) 
{
Print("_____________________________________");
Print ("price = ", DoubleToStr(price,5));
Print ("stoploss = ", DoubleToStr(stoploss,5));
Print ("takeprfit = ", DoubleToStr(takeprofit,5));
Print("_____________________________________");

if(!WaitWhileBusy())
{
Print("**********************Error in OrderSendEx(): Timeout Encountered");
int TimeOutError = GetLastError();
Print (" Error2 Error2 Error2 Error2 Error2 Error2 Error2 ");
Print (" >>>>>>>>>> ", TimeOutError, " <<<<<<<<");
Print (" Error2 Error2 Error2 Error2 Error2 Error2 Error2 ");
return;
}
SetBusyState();
arrow_color = Blue;
if(cmd == 1) arrow_color = Red;

int preticket = OrderSend(symbol, cmd, volume, NormalizeDouble(price,Digits), slippage, NormalizeDouble(stoploss,Digits), NormalizeDouble(takeprofit,Digits), comment, magic, expiration, color arrow_color);
Sleep(10000);
ReleaseBusyState();
ticket= preticket; 
Print (" ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = ",ticket);
if (ticket == (-1)) 
{
TimeOutError = GetLastError();

Print (" Error5 Error5 Error5 Error5 Error5 Error5 Error5 ");
Print (" >>>>>>>>>> ", TimeOutError, " <<<<<<<<");
Print (" Error5 Error5 Error5 Error5 Error5 Error5 Error5 ");
}
return;
}
 
 
bool OrderCloseEx(double lots, double price, int slippage, color Color= Yellow )
{
if(!WaitWhileBusy())
{
Print("Error in OrderCloseEx(): Timeout encountered");
int TimeOutError = GetLastError();
Print (" Error1 Error1 Error1 Error1 Error1 Error1 Error1 ");
Print (" >>>>>>>>>> ", TimeOutError, " <<<<<<<<");
Print (" Error1 Error1 Error1 Error1 Error1 Error1 Error1 ");
return(false);
}
SetBusyState();
bool ret = OrderClose(ticket, lots, price , slippage, color Color );
Sleep(6000);
ReleaseBusyState(); 
return(ret);
}
 
//+------------------------------------------------------------------+
//| Calling state functions |
//+------------------------------------------------------------------+
bool WaitWhileBusy()
{
datetime OldCurTime;
int timeoutsec=6;
OldCurTime=CurTime();
while (GlobalVariableCheck("InTrade") || !IsTradeAllowed()) {
if(OldCurTime + timeoutsec <= CurTime()) {
return(false); 
}
Sleep(1000);
}
return(true);
}
void SetBusyState()
{
GlobalVariableSet("InTrade", CurTime()); // set lock indicator
}
void ReleaseBusyState()
{
GlobalVariableDel("InTrade"); // clear lock indicator
}
//+------------------------------------------------------------------+
//| Symbol to index |
//+------------------------------------------------------------------+

Ok, I've read everything on the Forum about "error 130 on ECN brokers and pending orders" but I still can't get around my bug at FinFx. As you can see below, my Buy entry price (1.32796) is .00050 away from the current Ask price; should be no problem there. My stoploss ( 1.32771) is .00025 from the entry price and also .00025 from the current Ask price; should be no problem there. Ditto for the takeprofit with is also .00025 above the entry price. Why am I still getting the error 130?

12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: Buy set for 1.32796 Ask = 1.32746
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: ________________________ENTERING BUYNOW EURUSD _____________________
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: _____________________________________
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: price = 1.32796
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: stoploss = 1.32771
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: takeprfit = 1.32821
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: _____________________________________
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: OrderSend error 130
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: >>>>>>>>>> 130 <<<<<<<<
12:31:39 2011.01.03 08:36 UP and Down EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: *****************************
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: Buy set for 1.32640 Ask = 1.32590
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: ________________________ENTERING BUYNOW EURUSD _____________________
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: _____________________________________
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: price = 1.32640
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: stoploss = 1.32615
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: takeprfit = 1.32665
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: _____________________________________
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: OrderSend error 130
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: >>>>>>>>>> 130 <<<<<<<<
12:31:39 2011.01.03 08:45 UP and Down EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
12:31:39 2011.01.03 13:26 UP and Down EURUSD,M1: SSSSSSSSSSSSSSSSSSSSSSSSSS
12:31:39 2011.01.03 13:26 UP and Down EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________

 

https://www.mql5.com/en/forum/135633/page4#540502

very nice topic for error problems to look

 
deVries:

https://www.mql5.com/en/forum/135633/page4#540502

very nice topic for error problems to look



Thanks deVries but I endeavored to cover all those topics prior to posting as noted below:

1. ECN Broker – FinFX is an ECN broker and normally use 0’s for SL/TP but now I’m attempting a Buy Stop where you must post a SL/TP

2. 4/5-Digit Broker – 5 digit broker as indicated with Ask

3. Changing Market Rates – the error is occurring on every trade attempt in a backtest

4. Spread – not an issue as attempting to run back test (multiple times) in prime time when actual spread is averaging 7 pips – never a problem when doing a market order.

5. Stop Level - FinFX has a .00001 stop level, I’m at .00025; no discernible problem here

6. Freeze Level – FinFX has a 0 freeze level, I’m at .00050; no discernible problem here

7. Ticksize – is .00001 FinFX; no discernible problem here

Still baffled!

 
RBG:

Ok, I've read everything on the Forum about "error 130 on ECN brokers and pending orders" but I still can't get around my bug at FinFx. As you can see below, my Buy entry price (1.32796) is .00050 away from the current Ask price; should be no problem there. My stoploss ( 1.32771) is .00025 from the entry price and also .00025 from the current Ask price; should be no problem there. Ditto for the takeprofit with is also .00025 above the entry price. Why am I still getting the error 130?

There is a reason . . . just just have to find it.

When you get an error 130 print everything, Bid, Ask, Freezelevel, Stoplevel, OrderType, Price you are trying to enter at, SL & TP. Did you read my thread about error 130 ? it took me a year, I found the issue . . .

https://www.mql5.com/en/forum/134846

 
There are no mind readers here - you have to post your code.
 
WHRoeder:
There are no mind readers here - you have to post your code.
. . . or just analyse the issue fully and discover the cause yourself ;-)
 
Always funny how people expect us to know whats wrong with the codes they're not showing.
 
ubzen:
Always funny how people expect us to know whats wrong with the codes they're not showing.
Don't need to see the code to know the error is in the code ;-)
 
ubzen:
Always funny how people expect us to know whats wrong with the codes they're not showing.

Ok, not funny anymore - code inserted above. First insert was the wrong one - stripped down code to the essence - now getting an erro 138. Thanks
Files:
errorx138.mq4  7 kb
 
RaptorUK:

There is a reason . . . just just have to find it.

When you get an error 130 print everything, Bid, Ask, Freezelevel, Stoplevel, OrderType, Price you are trying to enter at, SL & TP. Did you read my thread about error 130 ? it took me a year, I found the issue . . .

https://www.mql5.com/en/forum/134846


RBG:

Ok, not funny anymore - code inserted above. First insert was the wrong one - stripped down code to the essence - now getting an erro 138. Thanks
Print the values as above.
 
RaptorUK:

Print the values as above.

11:39:09 Test EURUSD,M1: loaded successfully
11:39:18 Test EURUSD,M1: loaded successfully
11:39:20 Test test started
11:39:20 2011.01.03 00:00 Test EURUSD,M1: *************************
11:39:20 2011.01.03 00:00 Test EURUSD,M1: *************************
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33393 SSL = 1.33493 STP = 1.33293
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33393
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33493
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33293
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33395 SSL = 1.33495 STP = 1.33295
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33395
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33495
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33295
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33396 SSL = 1.33496 STP = 1.33296
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33396
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33496
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33296
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33398 SSL = 1.33498 STP = 1.33298
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33398
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33498
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33298
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33399 SSL = 1.33499 STP = 1.33299
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33399
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33499
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33299
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Freeze Level - 0
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: StopLevel = 1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ________________________ENTERING SELLNOW EURUSD _____________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>>>> Price = 1.33398 SSL = 1.33498 STP = 1.33298
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: price = 1.33398
11:39:20 2011.01.03 00:00 Test EURUSD,M1: stoploss = 1.33498
11:39:20 2011.01.03 00:00 Test EURUSD,M1: takeprfit = 1.33298
11:39:20 2011.01.03 00:00 Test EURUSD,M1: _____________________________________
11:39:20 2011.01.03 00:00 Test EURUSD,M1: OrderSend error 138
11:39:20 2011.01.03 00:00 Test EURUSD,M1: ++++++++++++++++++++++++++ Order Executed ++++++ Ticket = -1
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
11:39:20 2011.01.03 00:00 Test EURUSD,M1: >>>>>>>>>> 138 <<<<<<<<
11:39:20 2011.01.03 00:00 Test EURUSD,M1: Error5 Error5 Error5 Error5 Error5 Error5 Error5
Reason: