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

# Options

## Definition

The connection's configuration options

## Properties

| Property         | Description                                                     |
| ---------------- | --------------------------------------------------------------- |
| ConnectOnStartup | A bool representing if this connection auto connects on startup |

\--

| Name     | A string representing the connection's name       |
| -------- | ------------------------------------------------- |
| Provider | A Provider representing the connection's provider |

## Examples

```csharp
// Example of accessing information on all connected connections
public class MyAddOnTab : NTTabPage
{
    public MyAddOnTab()
    {
        // Print information about all connected connections
        lock (Connection.Connections)
            Connection.Connections.ToList().ForEach(c => NinjaTrader.Code.Output.Process(string.Format("Connection: {0} Provider: {1}", c.Options.Name, c.Options.Provider), PrintTo.OutputTab1));
    }

    // Other required NTTabPage members left out for demonstration purposes. Be sure to add them in your own code.
}
```