Quote:
Originally Posted by natsirte
Hi
in my EA I try to put
double var_global = GlobalVariableGet(ok_trade,Direction) ; // or
GlobalVariableGet(ok_trade) but I have the message that the variable not defined.
Why?
best regards
|
Use something like this.
string ok_trade;
int direction;
direction=GlobalVariableGet(ok_trade);
__________________
I have not failed. I've just found 10,000 ways that won't work.
Thomas Alva Edison
|