Forum

tester got "xx pases not processed and returned to task queue" warning

I am trying to run walk forward optimization usually my total steps list is around 220k results and I found this warning but test shows as completed, is this fine or should I think some results are going missing

array out of range meanwhile working with multi currency icustom indicator

I have checked the code and was not able to find the error, could you help? 2020.05.03 22:54:34.762 Herrcrowley_master_nc_jpy (USDJPY,H8) array out of range in 'Herrcrowley_master_nc_jpy.mq5' (94,63), the error is highlighted, thanks

backtest trades issue

every time I run a backtest with the trades of the backtest, appears a lot of another trades that I have never made, could someone guide me what to delete or what to do to get rid of those

visual mode simulation vs non- visual mode simulation

I am having issues with my simulations, it happens visual mode my expert works as it should, but when I try non - visual mode, shows a lot of mistakes , my expert is a multiframe expert that looks for several timeframes from biggest to smallest with confirmations in several times. I don´t think it

trying to turn full closure to partial closure

I am trying to figure out how two different conditions will close partial or full a position. k if true will close full being Lots the size of the operation, kp if true will close partially the operation in Small_lots size. but if I am able to close partial the expert gets blocked, I appreciate if

two of three statements to be true (best way to write this code)

I am looking if this code this on mql5 boolean atLeastTwo(boolean a, boolean b, boolean c) { if ((a && b) || (b && c) || (a && c)) { return true ; } else { return false ; } } can be replaced with any of the following codes to avoid lengthy coding (a? 1 : 0 )+(b? 1 : 0

mt5 crashes when I tried to install rented product on opensuse linux

I have been able to install experts and copiers but I found out problem with this product . when I try to install on opensuse linux after rented the mt5 lasts a few seconds blocked and after that just crashes. any help would be appreciated

trying to find profitable weeks on backtest

I would like some help trying to find out how many weeks are profitable after a backtest is made, i usually do 20 weeks backtest, I tried to build an array of profits and dates like OnTester documentation article, after that I tried split these results on another week array with no luck, any

Enum list not seen for optimization

I am not able to get the list for optimization, if I tweak a bit, if I add another period could show up or just dissapear, it's pretty confusing. #property script_show_inputs enum fibo_periods { MAper_5 = 5 , MAper_8 = 8 , MAper_13 = 13 , }; input int MAper = 13 ;

how to disable optimization dot graph when testing?

this graph pops up every time I make a test