Question #1:
How do I get the Bid and Ask for a specific instrument on a multi instrument strategy?
For example: Let's say we have a strategy with 5 instruments. To get the Bid for one instrument I have:
GetCurrentBid()[3]
The compiler gives the following error: "Cannot apply indexing with [] to an expression of type double"
Question #2:
Similar to #1, how do I enter a trade on a specific instrument on a multi instrument strategy?
For example: Let's say we have a strategy with 5 instruments. To get the Bid for one instrument I have:
EnterLong(Quantity)[3];
The compiler gives the following error: "Cannot apply indexing with [] to an expression of type NinjaTrader.Cbi.IOrder"
Thanks

Comment