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

# RiskReward

## Definition

Represents an interface that exposes information regarding a Risk Reward **IDrawingTool**.

## Methods and Properties

| Parameter    | Description                                                                                           |
| ------------ | ----------------------------------------------------------------------------------------------------- |
| EntryAnchor  | An **IDrawingTool's ChartAnchor** representing the entry point of the drawing object                  |
| RiskAnchor   | An **IDrawingTool's ChartAnchor** representing the stop loss point of the drawing object              |
| RewardAnchor | An **IDrawingTool's ChartAnchor** representing the profit target point of the drawing object          |
| Ratio        | An **int** value determining the calculated ratio between the risk or reward based on the entry point |

## Examples

```csharp
// Instantiate a RiskReward object
RiskReward myRR = Draw.RiskReward(this, "tag1", false, 0, High[0], 10, Low[0], 2, true);

// Change the object's risk/reward ratio to 2:1
myRR.Ratio = 2;
```