Hi All,
I am using MT5 on a demo account. I've created a custom symbol (EURUSD.custom), imported the same settings of EURUSD. imported 1 min bar data and tick data.
When backtesting any EA (Simple MA cross), whenever I reach OrderSend() function, it through the error "failed market sell 0.01 EURUSD.custom [Market closed]". the EA runs properly, bars are formed, rates are copied,signals are generated, it is only when trying to send a market order.
I would really appreciate the support.
Regards
"
- 2017.11.11
- www.mql5.com
Hi All,
I am using MT5 on a demo account. I've created a custom symbol (EURUSD.custom), imported the same settings of EURUSD. imported 1 min bar data and tick data.
When backtesting any EA (Simple MA cross), whenever I reach OrderSend() function, it through the error "failed market sell 0.01 EURUSD.custom [Market closed]". the EA runs properly, bars are formed, rates are copied,signals are generated, it is only when trying to send a market order.
I would really appreciate the support.
Regards
"
I've got a similar issue but with trading equity CFD and only for backtests before 2016 or 2008 depending on which broker I use..
The strange thing is that a few days ago, everything worked just fine and I was able to backtest back to 1990.
I've got a similar issue but with trading equity CFD and only for backtests before 2016 or 2008 depending on which broker I use..
The strange thing is that a few days ago, everything worked just fine and I was able to backtest back to 1990.
Search the forum first before posting! You would have found out that the newer builds of MetaTester 5, now also take into account the session times for a symbol and will prevent out-of-session trading and report an error, as if it were a real live situation. It is a more realistic simulation now in regards to session times.
I got this issue too. The issue is indeed what Fernando Carreiro has mentioned.
This is how I solve it:
I am backtesting EURUSD using daily timeframe, and its trading session is Monday to Thursday 00:01-23:59 and Friday 00:01-23:55.
Since the trade time starts from 00:01, I can't set Expert_EveryTick=false because it always tries to send order at 00:00 when a new daily bar forms.
Thus, i set Expert_EveryTick=true, and then handle the signal generation once every daily bar in my custom Signal Module.
Of course, you can try to mess around with the trading session by double clicking on the trading session time in the symbol.
I've got a similar issue but with trading equity CFD and only for backtests before 2016 or 2008 depending on which broker I use..
The strange thing is that a few days ago, everything worked just fine and I was able to backtest back to 1990.
Please read
https://www.mql5.com/en/forum/369755
May helpful
- 2021.05.21
- www.mql5.com
Hi Everyone,
I am also getting this error when backtesting and can see the problem.
My broker has these times:
The issue occurs when a trade attempt is made at 00:00. How is it best to handle this? If I disallow trading out of hours then it will mess up the signals.
So I'm thinking about just queuing the order until I can trade? Is that the best way of doing it?
Cheers,
Ed
This is your choice, you can ignore signals when the market is close, or delay them (queue), or whatever you find as "best" way.
This is your choice, you can ignore signals when the market is close, or delay them (queue), or whatever you find as "best" way.
Thanks Alain,
Seems a bit of a pain in the back side that the quote period is different to the trading period. Especially if trading the daily time frame as a new candle will be generated at 00:00 but you wont be able to make a trade at that point. So all trades will be delayed.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi All,
I am using MT5 on a demo account. I've created a custom symbol (EURUSD.custom), imported the same settings of EURUSD. imported 1 min bar data and tick data.
When backtesting any EA (Simple MA cross), whenever I reach OrderSend() function, it through the error "failed market sell 0.01 EURUSD.custom [Market closed]". the EA runs properly, bars are formed, rates are copied,signals are generated, it is only when trying to send a market order.
I would really appreciate the support.
Regards
"