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

# TrendChannel

## Definition

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

## Methods and Properties

| Parameter                                                                   | Description                                                                                                                                                               |
| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| TrendStartAnchor                                                            | An [IDrawingTool's ChartAnchor](/developer/desktop-sdk/references/drawing-tools/chartanchor) representing the starting point of the drawing object                        |
| TrendEndAnchor                                                              | An [IDrawingTool's ChartAnchor](/developer/desktop-sdk/references/drawing-tools/chartanchor) representing the end point of the drawing object                             |
| ParallelStartAnchor                                                         | An [IDrawingTool's ChartAnchor](/developer/desktop-sdk/references/drawing-tools/chartanchor) representing the starting point of the second line used in the trend channel |
| [PriceLevels](/developer/desktop-sdk/references/common/drawing/pricelevels) | A collection of prices calculated by the drawing object                                                                                                                   |

## Example

```csharp
// Instantiate a TrendChannel object  
TrendChannel myTC = Draw.TrendChannel(this, "tag1", true, 10, Low[10], 0, High[0], 10, High[10] + 5 * TickSize);            
   
// Increase the y-axis position of the object's TrendEndAnchor  
myTC.TrendEndAnchor.Price += 15;
```