DMi in the indicatorionone wrote: Wed Jun 24, 2026 9:47 pm Hmm nothing appears on my MT5 (for wedges and DMI)
it often happens when using series. You should not fight the current and try to use series on MT5
but the dumb LLMs think it's like MT4. it's not. MT5 works well better without series and it's the default mode now
I know MT5 mixes function with series and some without so it's a bit of a mess
No Series Arrays: Right at the top of its OnCalculate block, it explicitly enforces MT5's native behavior:
there are these lines that should block ArraySetAsSeries
ArraySetAsSeries(time, false);
ArraySetAsSeries(high, false);
ArraySetAsSeries(low, false);
ArraySetAsSeries(close, false);