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

# ArrowUp

## Definition

Represents an interface that exposes information regarding an Arrow Up [IDrawingTool](/developer/desktop-sdk/references/common/drawing/idrawingtool).

## Methods and Properties

| Property     | Description                                                                                                                                     |
| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Anchor       | An [IDrawingTool](/developer/desktop-sdk/references/common/drawing/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
ArrowUp myArrow = Draw.ArrowUp(this, "tag1", true, Time[0], Low[0] - (2 * TickSize), Brushes.Green);

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