Page 2135 of 2170
Re: MT4 Indicator requests and ideas
Posted: Sun Jun 01, 2025 12:31 am
by mrtools
太虚一毫 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.
Re: MT4 Indicator requests and ideas
Posted: Sun Jun 01, 2025 1:19 am
by marinvd
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
Posted: Sun Jun 01, 2025 1:50 am
by sunmetal
marinvd wrote: Sun Jun 01, 2025 1:19 am
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.
this pdf contains virus!!!
Re: MT4 Indicator requests and ideas
Posted: Sun Jun 01, 2025 2:03 am
by Eis
Makes me think passwords should be generated keys sent to emails or 2 step verification should be required but they could use a dump account so maybe files need some type of imbedded scanner, ai probably could
Re: MT4 Indicator requests and ideas
Posted: Sun Jun 01, 2025 1:29 pm
by mrtools
cinemachild90 wrote: Tue May 27, 2025 6:17 pm
Hi,
Can you please make arrows on chart when color 5 cross color 6.
Thank you in advance
Hello, sorry would need more information.
Re: MT4 Indicator requests and ideas
Posted: Sun Jun 01, 2025 8:40 pm
by mohsen1208
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
Posted: Mon Jun 02, 2025 12:24 am
by mrtools
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.
Re: MT4 Indicator requests and ideas
Posted: Tue Jun 03, 2025 2:29 am
by andrei-1
Experts, could you take a look at Xeu_JMA z - score_(eco).
It does not display the values correctly if there is no fresh data.
You need to wait and switch timeframes.
Re: MT4 Indicator requests and ideas
Posted: Tue Jun 03, 2025 10:45 pm
by Intrest 1
Add signal ma please
Re: MT4 Indicator requests and ideas
Posted: Tue Jun 03, 2025 11:36 pm
by mrtools
andrei-1 wrote: Tue Jun 03, 2025 2:29 am
Experts, could you take a look at Xeu_JMA z - score_(eco).
It does not display the values correctly if there is no fresh data.
You need to wait and switch timeframes.
Hello, is there any explanation on the indicator, not sure how it is supposed to work?