TickSize

View as Markdown

Definition

Indicates the tick size configured for the Master Instrument properties.

Property Value

A double value representing the tick size configured for the current master instrument.

Syntax

Bars.Instrument.MasterInstrument.TickSize

Examples

1protected override void OnBarUpdate()
2{
3 // Displays the master instrument's tick size at the bottom right of the chart
4 Draw.TextFixed(this, "tag1", Bars.Instrument.MasterInstrument.TickSize.ToString(), TextPosition.BottomRight);
5
6}