Page 1259 of 2042

Re: MT4 Indicator requests and ideas

Posted: Thu Apr 01, 2021 5:11 pm
by mtp
Which indicator is this? Thread is in FF but very old and no details inside it

Re: MT4 Indicator requests and ideas

Posted: Thu Apr 01, 2021 5:50 pm
by berserkyjc
mrtools wrote: Thu Apr 01, 2021 6:08 am Check here Bollinger bands
Thank you very much!!!!!


I'm trying to use that as a volatility indicator. on a daily timeframe.

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 2:33 am
by mcmstar
Hello
Is there a way to make heiken ashi candle with changeable gap between real candles because I can't see the wicks of real candles or ashi candles stay behind the real candles.

If On/Off button added it would be much better.

Thanks in advance.

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 3:20 am
by Darks
mcmstar wrote: Fri Apr 02, 2021 2:33 am Hello
Is there a way to make heiken ashi candle with changeable gap between real candles because I can't see the wicks of real candles or ashi candles stay behind the real candles.

If On/Off button added it would be much better.

Thanks in advance.
For visibility issue you could actually set chart to foreground, that would bring the candles to front. If that may help.

A simple code could also be added in the init function

Code: Select all

ChartSetInteger(0,CHART_FOREGROUND, true);

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 6:28 am
by mcmstar
Darks wrote: Fri Apr 02, 2021 3:20 am For visibility issue you could actually set chart to foreground, that would bring the candles to front. If that may help.

A simple code could also be added in the init function

Code: Select all

ChartSetInteger(0,CHART_FOREGROUND, true);
Thanks for the reply but ashi candles stay behind the real candles. And some ashi candles when they are close to the real candles I can't see the wick of real candles

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 9:10 am
by kvak
mcmstar wrote: Fri Apr 02, 2021 2:33 am Hello
Is there a way to make heiken ashi candle with changeable gap between real candles because I can't see the wicks of real candles or ashi candles stay behind the real candles.

If On/Off button added it would be much better.

Thanks in advance.
Hi.
Try....on off button
edit I flipped on-off and added automatic adjust bar, redownload

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 11:37 am
by mulyanto
Dear Coders and Mr. Tool

Code: Select all

if(ShowChannel==True)
             {
              ObjectCreate(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJ_FIBOCHANNEL,0,
              
              
              Time[Dnpoint_A],Short[Dnpoint_A],Time[i]+(Time[i]-Time[DnPoint_A]),Short[i]+(Short[i]-Short[DnPoint_A]),Time[UpPoint_A],Long[UpPoint_A]);
              
              
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_COLOR,ChannelDnColor);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_LEVELCOLOR,ChannelDnColor);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i), OBJPROP_FIBOLEVELS,  3);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i), OBJPROP_FIRSTLEVEL+0,   -0.5);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i), OBJPROP_FIRSTLEVEL+1,   -0.236);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i), OBJPROP_FIRSTLEVEL+2,   -0.764);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_RAY,0);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_WIDTH,1);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_STYLE,STYLE_SOLID);
              ObjectSet(StringConcatenate("Channel_",IndicatorNumber,"_",i),OBJPROP_LEVELSTYLE,STYLE_DOT);

              }
Please Help,
what's wrong with my code ?
i just wat to make point C = (Point A to Point B ) * 2

how do i write it ???

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 3:19 pm
by faris123456
Hello every one
please can anyone add arrows and arrows code and arrows on newest when i use MTF in this indicator thanks.

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 8:08 pm
by sagacious
sagacious wrote: Wed Mar 31, 2021 5:59 pm Hello,
Someone could add to this pinbar indicator the ability to search for a pattern simultaneously on several currency pairs (for example, those that I will indicate in the settings), or make very very easy multy currency dashboard?
PZ Harmonic Dashboard did something similar. The Dashboard itself is optional and more complicated. If it can be done, it will be super cool!
I promise to read the mantra for you)!

also drew attention to the problem. When I select 15 TFs in the indicator and look at the one-minute chart, the pattern is somehow not immediately displayed. Auto-update doesn't help. ... If anyone knows a better analogue of the indicator, let me know. I'm just looking for one more detail for my trading system that I would like to share on your forum.
mr tools, i have terrible trouble with this indicator. After pinbar candle, alert play sound every new candle, please... Can you clear this mistake?

Re: MT4 Indicator requests and ideas

Posted: Fri Apr 02, 2021 11:02 pm
by society
Can you make this a level cross instead of a slope change?
Thanks! :thumbup: