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

# ArrowLine

## Definition

Represents an interface that exposes information regarding an Arrow Line **IDrawingTool**.

## Methods and Properties

| Property    | Description                                                                             |
| ----------- | --------------------------------------------------------------------------------------- |
| StartAnchor | An **IDrawingTool's ChartAnchor** representing the starting point of the drawing object |
| EndAnchor   | An **IDrawingTool's ChartAnchor** representing the end point of the drawing object      |
| Stroke      | A **Stroke** object used to draw the object                                             |

## Example

```csharp
// Draw an ArrowLine object
ArrowLine myArrow = Draw.ArrowLine(this, "myArrowLine", 3, High[3], 1, High[1], Brushes.Blue, DashStyleHelper.DashDot, 3);

// Disable the arrow's visibility
myArrow.IsVisible = false;
```