is your indicator configured to fetch data from 2022 or there is no config like that?
it could be either issue on indicaror or mql5 tester may be on maintenance. i would suggest to try posting in codebase later 24- 48 hours. based on my previous experience of posing in codebase, if its a maintenance error it could be resolved automatically else mods may notify admin in case if its an issue with all indicators. You may try posting a different indicator but not publish it in order to find if that passes mql5 tester.
Usually the validator requires a very optimized calculation loop (from what I discovered). It's very picky about the indicator calculating from way back in history to now, and it usually wants prev_calculated in the loop instead of starting from zero. Codes uploaded very quickly for me when starting loops from prev_calculated-1 (last processed bar), but a condition is necessary to ensure prev_calculated is greater than zero for this start index
this is for the market not codebase . its the same validator ?
Conor Mcnamara #:
Usually the validator requires a very optimized calculation loop (from what I discovered). It's very picky about the indicator calculating from way back in history to now, and it usually wants prev_calculated in the loop instead of starting from zero. Codes uploaded very quickly for me when starting loops from prev_calculated-1 (last processed bar), but a condition is necessary to ensure prev_calculated is greater than zero for this start index
Usually the validator requires a very optimized calculation loop (from what I discovered). It's very picky about the indicator calculating from way back in history to now, and it usually wants prev_calculated in the loop instead of starting from zero. Codes uploaded very quickly for me when starting loops from prev_calculated-1 (last processed bar), but a condition is necessary to ensure prev_calculated is greater than zero for this start index
if(prev_calculated==0){ ArrayFill(bar_index,0,ArraySize(bar_index),0.0); ArrayFill(os,0,ArraySize(os),0.0); entry=false; } int from=prev_calculated; for(int i=from;i<rates_total;i++){
it is accounting for that i think

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
what do i do in this case ?
thanks
(its an indicator)