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

# Name

## Definition

Indicates the name of the specified account

## Property Value

A **string** representing the name of the account

## Syntax

`\<account\>.Name`

## Examples

```csharp
protected override void OnStateChange()
 if (State == State.SetDefaults) 
 {
		 // Initialize myAccount
 }

private void OnAccountStatusUpdate(object sender, AccountStatusEventArgs e) 
{
	 // Print the name of each account updated
	 Print(String.Format("{0} account updated", myAccount.Name));
}
```