Hello, this part太虚一毫 wrote: Sat May 31, 2025 11:34 pm Cumulative Momentum Histo (MTF Alerts Arrows) – Does this metric use future data? Redraw?
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);
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);