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

# PaintPriceMarkers

## Definition

If true, any indicator plot values display price markers in the y-axis.

## Property Value

This property returns true if the indicator plot values display in the y-axis; otherwise, false. Default set to true.

Warning: This property should ONLY be set from the **OnStateChange()** method during **State.SetDefaults** or **State.Configure**.

## Syntax

`PaintPriceMarkers`

## Examples

```csharp
protected override void OnStateChange()
{
     if (State == State.SetDefaults)
     {
         PaintPriceMarkers = true; // Indicator plots values display in the y-axis
         AddPlot(Brushes.Orange, "SMA");
     }
}
```