Thanks a lot! You didn't give me time to take a coffee...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...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,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 mntiwana, would you mind sharing the "preset" file with the setups you have in your picture??? Thank you...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
Which one from above 2jjventural 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...
You can use much simpler (and faster) code for thatnmgvs 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?
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);
I think this should be it - with used indicators
can someone explain what the different values of ma method and ma price means in this indicator?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