
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 Mladen,
indicator stochastic bar chart work fine but bars not shown properly below level 20 and above 80 check
It is an issue that happens with the newest builds on mt4 (only with some indicators that are using DRAW_NONE style, which does not work the same as before)
Here is the fixed version
It is an issue that happens with the newest builds on mt4 (only with some indicators that are using DRAW_NONE style, which does not work the same as before)
Here is the fixed version
Dearest MLADEN
Thanks for explaining,do you means all those codes that are using "DRAW_NONE" .... should be replaced like you explained for to remove such issue .... or only the indicators that are drawing objects in sw ?
regards
for example
"int init()
{
SetIndexBuffer(0,open); SetIndexStyle(0,DRAW_NONE);
SetIndexBuffer(1,close); SetIndexStyle(1,DRAW_NONE);
SetIndexBuffer(2,high); SetIndexStyle(2,DRAW_NONE);
SetIndexBuffer(3,low); SetIndexStyle(3,DRAW_NONE);
IndicatorShortName(UniqueID);
.................. and .....
int init()
{
IndicatorBuffers(5);
SetIndexBuffer(0,open); SetIndexStyle(0,DRAW_NONE);
SetIndexBuffer(1,close); SetIndexStyle(1,DRAW_NONE);
SetIndexBuffer(2,high); SetIndexStyle(2,DRAW_NONE);
SetIndexBuffer(3,low); SetIndexStyle(3,DRAW_NONE);
SetIndexBuffer(4,trend);
SetLevelValue(0,levelOb);
SetLevelValue(1,levelOs);
=================================================================
.............. should be replaced like this .........
int init()
{
SetIndexBuffer(0,open); SetIndexStyle(0,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(1,close); SetIndexStyle(1,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(2,high); SetIndexStyle(2,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(3,low); SetIndexStyle(3,EMPTY,EMPTY,EMPTY,clrNONE);
IndicatorShortName(UniqueID);
return(0);"
Dearest MLADEN
Thanks for explaining,do you means all those codes that are using "DRAW_NONE" .... should be replaced like you explained for to remove such issue .... or only the indicators that are drawing objects in sw ?
regards
for example
"int init()
{
SetIndexBuffer(0,open); SetIndexStyle(0,DRAW_NONE);
SetIndexBuffer(1,close); SetIndexStyle(1,DRAW_NONE);
SetIndexBuffer(2,high); SetIndexStyle(2,DRAW_NONE);
SetIndexBuffer(3,low); SetIndexStyle(3,DRAW_NONE);
IndicatorShortName(UniqueID);
.................. and .....
int init()
{
IndicatorBuffers(5);
SetIndexBuffer(0,open); SetIndexStyle(0,DRAW_NONE);
SetIndexBuffer(1,close); SetIndexStyle(1,DRAW_NONE);
SetIndexBuffer(2,high); SetIndexStyle(2,DRAW_NONE);
SetIndexBuffer(3,low); SetIndexStyle(3,DRAW_NONE);
SetIndexBuffer(4,trend);
SetLevelValue(0,levelOb);
SetLevelValue(1,levelOs);
=================================================================
.............. should be replaced like this .........
int init()
{
SetIndexBuffer(0,open); SetIndexStyle(0,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(1,close); SetIndexStyle(1,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(2,high); SetIndexStyle(2,EMPTY,EMPTY,EMPTY,clrNONE);
SetIndexBuffer(3,low); SetIndexStyle(3,EMPTY,EMPTY,EMPTY,clrNONE);
IndicatorShortName(UniqueID);
return(0);"
Yes, simply instead of using drawing style DRAW_NONE, we should declare that it is drawing whatever, but using color none and then it will work with the new builds of metatrader 4 too (it started in the last few builds of metatrader 4 - about 2,3 months ago)
Dearest MLADEN
Thanks for explained reply,if this apply to all "on chart and sw" indicators that using objects and or drawing style and having "DRAW_NONE"
and why there are 3 "EMPTY" states/repeated,why not 1 or 4 ?
regards
It is an issue that happens with the newest builds on mt4 (only with some indicators that are using DRAW_NONE style, which does not work the same as before)
Here is the fixed version
Thanks mladen,
Dearest MLADEN
Thanks for explained reply,if this apply to all "on chart and sw" indicators that using objects and or drawing style and having "DRAW_NONE"
and why there are 3 "EMPTY" states/repeated,why not 1 or 4 ?
regards
Hello Mladen, im wondering if you Thought about making a histogram or a type of oscillator from StepMA of rsi adaptive ema 2.9? Do you Think its a intresting or possible idea?
Cheers to all
Hello Mladen, im wondering if you Thought about making a histogram or a type of oscillator from StepMA of rsi adaptive ema 2.9? Do you Think its a intresting or possible idea?
Cheers to all
An previous histo version v2.8 of that.
Hello, tell me what the indicator is in the basement.