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

# Save()

Saves elements in our **NTTabPage** to the workspace (e.g. Selected accounts or instruments)

## Examples

```csharp
// NTTabPage member. Required for saving elements to workspaces
public void Save(XElement element)
{
     if (element == null)
         return;

     // Save any elements you may want persisted. e.g. selected accounts or instruments
}
```