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?