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

# ArrowDown

## Definition

Represents an interface that exposes information regarding an Arrow Down IDrawingTool.

## Methods and Properties

| Anchor       | An IDrawingTool's ChartAnchor representing the point of the drawing object |
| ------------ | -------------------------------------------------------------------------- |
| AreaBrush    | A Brush object representing the fill color of the draw object              |
| OutlineBrush | A Brush object representing the color of the draw object's outline         |

## Example

```csharp
// Instantiate an ArrowDown object
ArrowDown myArrow = Draw.ArrowDown(this, "tag1", true, Time[0], High[0] + (2 * TickSize), Brushes.Green);

// Set the outline color of the Arrow
myArrow.OutlineBrush = Brushes.Black;
```