ReferencesCommonDrawingDraw.Diamond()DiamondAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Diamond IDrawingTool. Methods and Properties ParameterDescriptionAnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectAreaBrushA Brush object representing the fill color of the draw objectOutlineBrushA Brush object representing the color of the draw object’s outline Examples 1// Instantiates a red diamond on the current bar 1 tick below the low2Diamond myDiamond = Draw.Diamond(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);34// Set the area fill color to Red5myDiamond.AreaBrush = Brushes.Red;