Page 1833 of 2170
Re: MT4 Indicator requests and ideas
Posted: Tue Apr 18, 2023 7:10 am
by Chickenspicy
mrtools wrote: Tue Apr 18, 2023 7:01 am
On lines 138 to 141 maybe try changing
Code: Select all
upArrow[i] = EMPTY_VALUE;
dnArrow[i] = EMPTY_VALUE;
if (High[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i]+iATR(NULL,0,20,i);
if ( Low[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = High[i]-iATR(NULL,0,20,i);
to
Code: Select all
upArrow[i] = EMPTY_VALUE;
dnArrow[i] = EMPTY_VALUE;
if (Close[i+1]>upBuffer[i+1] && Close[i+1]>Open[i+1] && Close[i]<Open[i]) upArrow[i] = High[i]+iATR(NULL,0,20,i);
if ( Close[i+1]<dnBuffer[i+1] && Close[i+1]<Open[i+1] && Close[i]>Open[i]) dnArrow[i] = High[i]-iATR(NULL,0,20,i);

result is okay thank you
can there be option to switch between on/ off for penetrate for the standard high low also?
Re: MT4 Indicator requests and ideas
Posted: Tue Apr 18, 2023 7:38 am
by mrtools
Chickenspicy wrote: Tue Apr 18, 2023 7:10 am

result is okay thank you
can there be option to switch between on/ off for penetrate for the standard high low also?
Check out lines 173 to 182 you can add that to the mix, of course instead of alerts on High Low can change that to arrows on high low then add arrowsOnHighLow to your external parameters, similar to the alertsOnHighLow.
Re: MT4 Indicator requests and ideas
Posted: Tue Apr 18, 2023 8:07 am
by Chickenspicy
mrtools wrote: Tue Apr 18, 2023 7:38 am
Check out lines 173 to 182 you can add that to the mix, of course instead of alerts on High Low can change that to arrows on high low then add arrowsOnHighLow to your external parameters, similar to the alertsOnHighLow.
thank you i see now, is it close > open only?
that seems correct to me
Re: MT4 Indicator requests and ideas
Posted: Tue Apr 18, 2023 3:18 pm
by Chickenspicy
(deleted)
Re: MT4 Indicator requests and ideas
Posted: Wed Apr 19, 2023 1:14 am
by Jedidiah
Dear Mr.Tools
If you guys think it's possible, please help add buttons to it
its breakout strategy works
Grateful
Re: MT4 Indicator requests and ideas
Posted: Wed Apr 19, 2023 1:32 am
by Chickenspicy
im looking for a macd if someone can help
ive seen it before but i cant find it
there was a picture of it too
its a joke
Re: MT4 Indicator requests and ideas
Posted: Wed Apr 19, 2023 1:33 am
by BeatlemaniaSA
Hi @mrtools,
I am considering using the attached indicator in MTF mode, however, I would love the higher timeframes to be automatically adjusted. Currently, it only has MTF and so only a specific TF can be set.
Therefore, would you be so kind as to add the following to this indicator:
1) AHTF
2) arrows for when the histogram crosses the zero (0) line, and
3) slope colour change when the histogram changes direction
EDIT @mrtools, I hope you won't mind me adding another request to the above. Can you
PLEASE make the histogram bars auto-adjusting
Warmest regards,
BeatlemaniaSA :idea:
Screenshot:
Indicator:
Re: MT4 Indicator requests and ideas
Posted: Thu Apr 20, 2023 7:09 am
by traderokey
Hi Mrtools,
Could you please add on/off button to the "! Onchart Kase permission stochastic avgs" indicator?
Thanks
viewtopic.php?f=579496&p=1295510163#p1295510163
Re: MT4 Indicator requests and ideas
Posted: Thu Apr 20, 2023 11:33 am
by Modahen77
Hello Mrtools and other coders in the house,please can you help me to change this indicator , so that the ARROWS are not displayed on the input data window but on the main chart window
. That bis like + buffer. Thankiing you in advance for your priceless time.
Re: MT4 Indicator requests and ideas
Posted: Thu Apr 20, 2023 1:18 pm
by mrtools