Difference Ask - MarketInfo(Symbol(), MODE_ASK)

 

Hello,

Can anyone explain to me if Ask = MarketInfo (Symbol(), MODE_ASK)

And if OrderSend (..., Ask, ..., ....) = OrderSend (.., MarketInfo (Symbol(), MODE_ASK), ....) ?


Thank you.

 
nikky:

Hello,

Can anyone explain to me if Ask = MarketInfo (Symbol(), MODE_ASK)

And if OrderSend (..., Ask, ..., ....) = OrderSend (.., MarketInfo (Symbol(), MODE_ASK), ....) ?

It should but not necessarily . . .

If you did this first . . .

RefreshRates();

. . . then Ask should be the same as MarketInfo (Symbol(), MODE_ASK)

 
Ok ! thank you :)
 
Ask (and the other predefined variables) do not change while start() runs, (unless you call RefreshRates().) MarketInfo returns the current value.