kamada2020:
double PriceLevel = OrderOpenPrice() - Bid; // if Order was a buy Order.
Why is that when the current price level is far away from the OrderOpenPrice level i get zero values.
PriceLevel is zero, or OrderOpenPrice() is zero?
A lot depends on whether you precede OrderOpenPrice() with a OrderSelect()...
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
double PriceLevel = OrderOpenPrice() - Bid; // if Order was a buy Order.
Why is that when the current price level is far away from the OrderOpenPrice level i get zero values.