Get bid

Created at 09 Feb 2020, 00:44
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
RO

rob.p.marshall

Joined 27.12.2015

Get bid
09 Feb 2020, 00:44


Question regarding 

public double Bid{ get; }

cBot is running with an instance of USDJPY and I need the syntax to get the bid price of AUDJPY?


@rob.p.marshall
Replies

PanagiotisCharalampous
10 Feb 2020, 08:36

Hi Rob,

See below

            Symbol symbol = Symbols.GetSymbol("AUDJPY");
            Print(symbol.Bid);

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous