> 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 trading hours template applied to the Bars series object.

## Property Value

A **string** representing the name of the trading hours template.

## Syntax

`Bars.TradingHours.Name`

## Examples

```csharp
protected override void OnBarUpdate()  
{                    
  Print(TradingHours.Name);  
  //Output if applied to the ES with 'use instrument settings':  CME US Index Futures ETH  
}
```