pipokito:
Hi all,
My EA strategy's adapts according to various market setting which are represented by X that can take the Value of -2,-1,0,1,2.
In order for the EA to be more user friendly I would like to display on the Chart the Value of X.
I used the following code:
But the only thing showing is a grey text "Label" .
Any idea where the erro comes from?
Bests,
Andrea
variables are case sensitive ie "XValue" should be "Xvalue"
Thanks,
you're right!
I used
Comment("RSI30_70="+RSI30_70 + "\n" + "RSI50_80="+RSI50_80 + "\n" + "RSI50_20="+RSI50_20 + "\n" + "X Value =" + X);
instead.
But thank you for your reply,
Have a great life ;)
I'm not sure that you have understood what Rod pointed out to you
ObjectCreate("XValue", OBJ_LABEL, 0, 0, 0); ObjectSetText("Xvalue",X,7, "Verdana", Red);
The 1st "XValue" has a capital V, the rest a lower case v
The 1st "XValue" has a capital V, the rest a lower case v
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 all,
My EA strategy's adapts according to various market setting which are represented by X that can take the Value of -2,-1,0,1,2.
In order for the EA to be more user friendly I would like to display on the Chart the Value of X.
I used the following code:
But the only thing showing is a grey text "Label" .
Any idea where the erro comes from?
Bests,
Andrea