ReferencesCommonDrawingDraw.RiskReward()RiskRewardAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Risk Reward IDrawingTool. Methods and Properties ParameterDescriptionEntryAnchorAn IDrawingTool’s ChartAnchor representing the entry point of the drawing objectRiskAnchorAn IDrawingTool’s ChartAnchor representing the stop loss point of the drawing objectRewardAnchorAn IDrawingTool’s ChartAnchor representing the profit target point of the drawing objectRatioAn int value determining the calculated ratio between the risk or reward based on the entry point Examples 1// Instantiate a RiskReward object2RiskReward myRR = Draw.RiskReward(this, "tag1", false, 0, High[0], 10, Low[0], 2, true);34// Change the object's risk/reward ratio to 2:15myRR.Ratio = 2;