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

# Strategies

## Definition

A collection of strategies configured on the chart.

## Property Value

A **ChartObjectCollection** of **StrategyRenderBase** objects containing information on all configured strategies on the chart.

## Syntax

`\<chartcontrol\>.Strategies`

## Examples

```csharp
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
   // Print the number of strategies configured on the chart
   if (chartControl.Strategies.Count > 0) 
           Print(chartControl.Strategies[0].Name);
}
```