KSforex: I need to fill between buffers with solid color, smooth and without zoom in problem.
- Switch to MT5
- You can minimize the zoom problem by changing the histogram width.
int OnInit(){ width = (int) ChartGetInteger(0,CHART_SCALE); SetIndexStyle(0, DRAW_HISTOGRAM, EMPTY, width); ⋮ } int OnCalculate(…){ if(ChartGetInteger(0,CHART_SCALE) != width){ width = (int) ChartGetInteger(0,CHART_SCALE); SetIndexStyle(0, DRAW_HISTOGRAM, EMPTY, width); } ⋮

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi
I need to fill between buffers with solid color, smooth and without zoom in problem.
How built-in ichimoku do it prefect but published source code of ichimoku not? ( Please check screen shot to understand my mean)
I know it is possible to do it by drawing too many triangles but it makes mt4 very slow. I Want to do it same way ichimoku built in did.