Exchange

View as Markdown

Definition

Indicates the current exchange of an instrument

Property Value

Represents the exchange which is selected for the current instrument.

Syntax

Instrument.Exchange

Examples

1protected override void OnBarUpdate()
2{
3 // Print the exchange of the currently configured instrument
4 Print(String.Format("Configured instrument is on the {0} exchange", Instrument.Exchange));
5}

Additional Access Information

This property can be accessed without a null reference check in the OnBarUpdate() event handler. When the OnBarUpdate() event is triggered, there will always be an Instrument object. Should you wish to access this property elsewhere, check for null reference first. e.g. if (Instrument != null)