This is a basic problem. You understand how to coding
Alert(NormalizeDouble(Bid,2));
The alert function uses a string.
int x = 3; int y = 10; Alert (IntegerToString(x+y)); double xx = 3.27; double yy = 10.11; Alert (DoubleToString(xx+yy,2));
Le Hong Phat:
This is a basic problem. You understand how to coding
This is a basic problem. You understand how to coding
Alert(NormalizeDouble(Bid,2));
Thank you
Thank you

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
if the below is executable , is the a way to Alert a function without storing its value in variable just by calling the variable between the brackets of the ALert?
int x = 3;
int y = 10;
Alert (x+y);
is the a way to Alert a function without storing its value in variable just by calling the variable between the brackets of the ALert?
NormalizeDouble(Bid,2);
Alert (NormalizeDouble);