> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# Splits

## 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:

| Date                                                    | Factor                                                               |
| ------------------------------------------------------- | -------------------------------------------------------------------- |
| A DateTime structure representing the date of the split | A **double** value representing the number of points the stock split |

## Syntax

`Bars.Instrument.MasterInstrument.Splits`

## Examples

```csharp
 foreach (Split split in Bars.Instrument.MasterInstrument.Splits)
{
     Print(split.Date);
     Print(split.Factor);
}
```