> 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.

# Exchanges

## Definition

A collection of exchange(s) configured for the **Master Instrument properties**.

## Property Value

A collection of Exchanges which represent the exchanges configured for the current instrument.

## Syntax

`Bars.Instrument.MasterInstrument.Exchanges`

## Examples

```csharp
foreach(Exchange exchange in Bars.Instrument.MasterInstrument.Exchanges)
{
 Print(exchange); // Default, Nasdaq, NYSE
}
```