Attachments forums

List of attachments posted on this forum.


All files on forums: 161147

Re: MT4 Indicator requests and ideas

mrtools, Sun Jun 01, 2025 12:29 am

太虚一毫 wrote: Sat May 31, 2025 11:34 pm Cumulative Momentum Histo (MTF Alerts Arrows) – Does this metric use future data? Redraw?
Hello, this part

Code: Select all

for (int k=0; k<Length && (i+k)<Bars; k++) mom[i] += price-iMA(NULL,0,MaLength,0,MaMethod,Price,i+k+1);
think it should be

Code: Select all

for (int k=0; k<Length && (i+k+1)<Bars; k++) mom[i] += price-iMA(NULL,0,MaLength,0,MaMethod,Price,i+k+1);
And might have been an issue in the mtf. But those things, guess it could have caused it to repaint, best to test it on the strategy tester to be certain.
All files in topic