Url

View as Markdown

Definition

Indicates the Url configured for the Master Instrument properties.

Property Value

A string value representing the Url that is configured for the current master instrument.

Syntax

Bars.Instrument.MasterInstrument.Url

Examples

1protected override void OnBarUpdate()
2
3 {
4
5 // Displays the master instrument's URL at the bottom right of the chart
6
7 Draw.TextFixed(this, "tag1", "Instruments URL is " + Bars.Instrument.MasterInstrument.Url, TextPosition.BottomRight);
8
9 }