Page 35 of 389

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 4:40 am
by nmgvs
mladen wrote: Fri May 19, 2017 4:11 am That was the most up-to-date version as far as I know too
Here is this version :
- new mtf mode
- automatic candles width


averages channel.png
Thanks a lot! You didn't give me time to take a coffee... :)

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 5:21 am
by nmgvs
mladen wrote: Fri May 19, 2017 4:11 am That was the most up-to-date version as far as I know too
Here is this version :
- new mtf mode
- automatic candles width


averages channel.png
Hi Mladen,

Hopping not being annoying can you put the scale as the below(I use it for mt4 Heinken Ashi and works with the same scale as the mt4 candlestick), if not I will be OK already with this 2.06 version ;).
void OnChartEvent(const int id,const long& lparam,const double& dparam,const string& sparam)
{
int chartscale=ChartGetInteger(0,CHART_SCALE);
if(chartscale==5)body_candle=12;
if(chartscale==4)body_candle=6;
if(chartscale==3)body_candle=3;
if(chartscale==2)body_candle=2;
if(chartscale==1)body_candle=2;
if(chartscale==0)body_candle=2;
SetIndexStyle(2,DRAW_HISTOGRAM,0,body_candle,ExtColor3);
SetIndexStyle(3,DRAW_HISTOGRAM,0,body_candle,ExtColor4);
}


BTW do you have plans to code the averages channel candlestick to MT5?

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 3:47 pm
by jjventural
mntiwana wrote: Fri May 19, 2017 4:19 am Averages Channel Candles + alerts 2.05
The last latest version of Averages Channel Candles with 33 Averages - 20 prices - interpolated mtf - double smoothed - full alerts package - show candles true/false - bar and body width option - candle on first
picture with Ahrens Moving Average and HA median body price
Hi mntiwana, would you mind sharing the "preset" file with the setups you have in your picture??? Thank you...

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 4:52 pm
by mntiwana
jjventural wrote: Fri May 19, 2017 3:47 pm Hi mntiwana, would you mind sharing the "preset" file with the setups you have in your picture??? Thank you...
Which one from above 2

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 5:01 pm
by mladen
nmgvs wrote: Fri May 19, 2017 5:21 am Hi Mladen,

Hopping not being annoying can you put the scale as the below(I use it for mt4 Heinken Ashi and works with the same scale as the mt4 candlestick), if not I will be OK already with this 2.06 version ;).
void OnChartEvent(const int id,const long& lparam,const double& dparam,const string& sparam)
{
int chartscale=ChartGetInteger(0,CHART_SCALE);
if(chartscale==5)body_candle=12;
if(chartscale==4)body_candle=6;
if(chartscale==3)body_candle=3;
if(chartscale==2)body_candle=2;
if(chartscale==1)body_candle=2;
if(chartscale==0)body_candle=2;
SetIndexStyle(2,DRAW_HISTOGRAM,0,body_candle,ExtColor3);
SetIndexStyle(3,DRAW_HISTOGRAM,0,body_candle,ExtColor4);
}


BTW do you have plans to code the averages channel candlestick to MT5?
You can use much simpler (and faster) code for that
Something like this :

Code: Select all

int _candleWidths[] = {2,2,2,3,6,12}, _width = _candleWidths[(int)ChartGetInteger(0,CHART_SCALE)];
    //
    // for each buffer that needs to be adjusted then the following can go
    //
    SetIndexStyle(nnn,EMPTY,EMPTY,_width);

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 5:51 pm
by jjventural
mntiwana wrote: Fri May 19, 2017 4:52 pm Which one from above 2
Post 343... thank you...

Re: Moving Average indicators for MT4

Posted: Fri May 19, 2017 6:27 pm
by mladen
New version of averages channel candles (all the averages included and all the latest prices too)


Re: Moving Average indicators for MT4

Posted: Sat May 20, 2017 1:16 am
by mntiwana
jjventural wrote: Fri May 19, 2017 5:51 pm Post 343... thank you...
I think this should be it - with used indicators

Re: Moving Average indicators for MT4

Posted: Sat May 20, 2017 10:47 pm
by mladen
Upgraded "stripped" laguerre (new prices added)


Re: Moving Average indicators for MT4

Posted: Sun May 21, 2017 5:31 pm
by shaileshm
mntiwana wrote: Thu May 18, 2017 5:20 am MA ribbon filled 1.01
MLADENs version - MA Ribbon Filled - ma periods,methods and prices adjustable
in the picture used,fast ma value 1,slow ma 50
can someone explain what the different values of ma method and ma price means in this indicator?