Splits

View as Markdown

Definition

Indicates the Splits that have been configured for the Master Instrument properties used in for stocks.

Property Value

A collection of Splits configured for the current instrument.

Possible values are:

DateFactor
A DateTime structure representing the date of the splitA double value representing the number of points the stock split

Syntax

Bars.Instrument.MasterInstrument.Splits

Examples

1 foreach (Split split in Bars.Instrument.MasterInstrument.Splits)
2{
3 Print(split.Date);
4 Print(split.Factor);
5}