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

# TriangleUp

## Definition

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

## Methods and Properties

| Parameter    | Description                                                                                                                                            |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Anchor       | An [IDrawingTool's ChartAnchor](/developer/desktop-sdk/references/drawing-tools/chartanchor) representing the point of the drawing object              |
| AreaBrush    | A [Brush](http://msdn.microsoft.com/en-us/library/system.windows.media.brush\(v=vs.110\).aspx) class representing the fill color of the draw object    |
| OutlineBrush | A [Brush](http://msdn.microsoft.com/en-us/library/system.windows.media.brush\(v=vs.110\).aspx) class representing the outline color of the draw object |

## Examples

```csharp
// Instantiate a TriangleUp object  
TriangleUp myTri = Draw.TriangleUp(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);              
   
// Change the object's AreaBrush  
myTri.AreaBrush = Brushes.Beige;
```