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

# Ray

## Definition

Represents an interface that exposes information regarding a Ray **IDrawingTool**.

## Methods and Properties

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

## Examples

```csharp
// Instantiate a Ray object
Ray myRay = Draw.Ray(this, "tag1", 10, 1000, 0, 1001, Brushes.LimeGreen);
 
// Set a new Stroke for the object
myRay.Stroke = new Stroke(Brushes.Green, DashStyleHelper.DashDot, 3);
```