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

# Price

## Definition

Determines price value the chart anchor is drawn.

## Property Value

An **double** value representing a price value

## Syntax

`\<chartanchor\>.Price`

## Examples

```csharp
public override void OnMouseDown(ChartControl chartControl, ChartPanel chartPanel, ChartScale chartScale, Point point)
{
   Print(MyAnchor.Price); // prints the Y axis data point of the chart anchor 
   // 1999.25
}
```