Hi all,
Is there any indicators which show which hourly candle make daily high or low - attached pic of TRO indicator - Hopefully something available like this ?
Thanks
Re: MT4 Indicator requests and ideas
16972Honje.
Whats the name of the green and red channel on the chart ?
Re: MT4 Indicator requests and ideas
16973Adaptive Donchian ZZ 100+BTMickey Abi wrote: Sun Nov 13, 2022 4:50 pm Honje.
Whats the name of the green and red channel on the chart ?
Give you
Honje
- These users thanked the author Jedidiah for the post:
- Mickey Abi
Do not show pity: life for life, eye for eye, tooth for tooth, hand for hand, and foot for foot.
Deuteronomy 19:21
Deuteronomy 19:21
Re: MT4 Indicator requests and ideas
16974也许这个…………?rogeryrogery wrote: Sun Nov 13, 2022 4:49 pm Hi all,
Is there any indicators which show which hourly candle make daily high or low - attached pic of TRO indicator - Hopefully something available like this ?
Thanks
Re: MT4 Indicator requests and ideas
16975Maybe can you share ?
The one I shared / looking for tell you what time of hour candle make higher / lower of days .
Like in this pic - in last 250 days - candle at 22:00 made highest of day 57% of time and candle at 17:00 made lowest of day 58% of time.
The one I shared / looking for tell you what time of hour candle make higher / lower of days .
Like in this pic - in last 250 days - candle at 22:00 made highest of day 57% of time and candle at 17:00 made lowest of day 58% of time.
Re: MT4 Indicator requests and ideas
16976Yes the Arrow is valid ( was valid ) during that candle formation,
You can test
Open GBPUSD H1
Then use Period 11 you will get this Then Change period to 12, You will get this. Again change to Period 13, You will get this HOW TO USE HP Last IN TRADING
- Open H4 chart and add HP Last with period 7 | This will Give you intra_Day trading direction
- Then on lower Timeframe, m15 use HP with period 13 or Period 21
- Then if the last signal on H4 is BUY, then on lower timeframe you will take only BUY alert as as your Entry
NB | You can use other indicator on m15 to confrim your entries.
Below is GBPUSD H4, we have only BUY as our trading direction since 09/11
Re: MT4 Indicator requests and ideas
16977[quote=DTRCT post_id=1295495865 time=1668335132 user_id=4931323]
Yes the Arrow is valid ( was valid ) during that candle formation,
thanks for information.
i check the mt4 tester for arrow repainting also, m1 chart. what i find that, arrow paint on 2nd bar from current bar..
i just try m5 9 & m1 14 periods settings .have you try the period in m5 arrow for m1 trades!!
Yes the Arrow is valid ( was valid ) during that candle formation,
thanks for information.

i check the mt4 tester for arrow repainting also, m1 chart. what i find that, arrow paint on 2nd bar from current bar..
i just try m5 9 & m1 14 periods settings .have you try the period in m5 arrow for m1 trades!!
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
16978It seems like the line recalculates, but the arrows don't refresh accordingly.
The coloring is not coded using the standard procedure.
I suppose that this part of the code:
should look like this:
The coloring is not coded using the standard procedure.
I suppose that this part of the code:
Code: Select all
//arrow handling
for(x = limit - 1; x >= 0; x--)
{
arrup[x] = EMPTY_VALUE;
arrdwn[x] = EMPTY_VALUE;
}
for(x = limit - 1; x >= 0; x--)
{
if (trend[x] != trend[x+1])
{
atr=iATR(Symbol(),0,100,x)/2; //typical ATR value to get distance
if (trend[x] > 0) //uptrend
{
if (ShowArrows == true ) { arrup[x+1] = hpf[x+1] - atr * 2 ; }
}
else if ( trend[x] < 0 ) //downtrend
{
if (ShowArrows == true ) { arrdwn[x+1] = hpf[x+1] + atr * 2 ; }
}
}
else
{
arrup[x] = EMPTY_VALUE;
arrdwn[x] = EMPTY_VALUE;
}
}
Code: Select all
//arrow handling
for(x = limit - 1; x >= 0; x--)
{
arrup[x] = EMPTY_VALUE;
arrdwn[x] = EMPTY_VALUE;
if (trend[x] != trend[x+1])
{
atr=iATR(Symbol(),0,100,x)/2; //typical ATR value to get distance
if (trend[x] > 0) //uptrend
{
if (ShowArrows == true ) { arrup[x+1] = hpf[x+1] - atr * 2 ; }
}
else if ( trend[x] < 0 ) //downtrend
{
if (ShowArrows == true ) { arrdwn[x+1] = hpf[x+1] + atr * 2 ; }
}
}
Re: MT4 Indicator requests and ideas
16979Letting you know am working on it, while I'm at it will try and update it somewhat.honje19960321 wrote: Sun Nov 13, 2022 3:49 pm Dear Mr Tools, this is a hidden gem.
It was never asked to upgrade it.
Now I dust it off and take it out
it's sparkling now.
微信截图_20221112201702.png
1.
Please change the default setting to
ChannelPeriod 20
HigLowShift 20
微信截图_20221113134239.png
2.
Please give silver line breakout channel, add alert and vertical line and arrow
An alert is an alert for a breakout channel
3.
Please change the color judgment of the zero line. DodgerBlue is displayed if the silver line is above the zero line. SandyBrown is displayed if the silver line is below the zero line.
3.png
4.
Please add a signal wire to the silver wire
4.png
Gratitude
Honje
Re: MT4 Indicator requests and ideas
16980Try here Bollinger band type indicatorshonje19960321 wrote: Sun Nov 13, 2022 3:49 pm Dear Mr Tools, this is a hidden gem.
It was never asked to upgrade it.
Now I dust it off and take it out
it's sparkling now.
微信截图_20221112201702.png
1.
Please change the default setting to
ChannelPeriod 20
HigLowShift 20
微信截图_20221113134239.png
2.
Please give silver line breakout channel, add alert and vertical line and arrow
An alert is an alert for a breakout channel
3.
Please change the color judgment of the zero line. DodgerBlue is displayed if the silver line is above the zero line. SandyBrown is displayed if the silver line is below the zero line.
3.png
4.
Please add a signal wire to the silver wire
4.png
Gratitude
Honje