Re: MT4 Indicator requests and ideas

21341
太虚一毫 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.
These users thanked the author mrtools for the post (total 2):
太虚一毫, FXchaos


Re: MT4 Indicator requests and ideas

21342
KstSarVik wrote: Thu May 29, 2025 1:52 am Good day, dear users and programmers of this forum. I apologize for my English as I am writing through a translator. I have a small idea and a request, as I do not possess programming skills. Is there a possibility to set up an alert and an arrow for the following idea shown in the screenshot? To use Fractal - channel breakout (histo+zone+BT) with specified parameters and PR. And thus catch price reversals. Perhaps you could advise using some other indicator as a filter. I would appreciate any help.
a helpful PDF that breaks down some effective scalping strategies—ideal for anyone looking to refine their intraday setups and improve timing.
It covers entry/exit signals, risk management, and real chart examples.

EDIT : .pdf file was deleted, due probably virus detected.


Re: MT4 Indicator requests and ideas

21346
hi dear mrtools
can you add interpolation calculation to this indicator?
when im choosing 1D for timeframe2, i want to see the indicator data of the current day, normally it will show after the higher candle close.
also note that this indicator data is different when you are in a lower timeframe, the calculation seems to be in both TF1 and TF2.
thank you in advance.

Re: MT4 Indicator requests and ideas

21347
mohsen1208 wrote: Sun Jun 01, 2025 8:40 pm hi dear mrtools
can you add interpolation calculation to this indicator?
when im choosing 1D for timeframe2, i want to see the indicator data of the current day, normally it will show after the higher candle close.
also note that this indicator data is different when you are in a lower timeframe, the calculation seems to be in both TF1 and TF2.
thank you in advance.
Hello, have no idea how to add interpolation to that indicator.
These users thanked the author mrtools for the post:
mohsen1208