> For the complete documentation index, see [llms.txt](https://fto-2.gitbook.io/fto-indicators-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fto-2.gitbook.io/fto-indicators-docs/types/output-window.md).

# TOutputWindow

An enumeration that defines where an indicator should be displayed on the chart.

## Values

| Value             | Description                                                      |
| ----------------- | ---------------------------------------------------------------- |
| `CHART_WINDOW`    | Display the indicator in the main chart window overlaid on price |
| `SEPARATE_WINDOW` | Display the indicator in a separate window below the main chart  |

## Example Usage

```typescript
// Display indicator in the main chart window (like Moving Averages)
this.api.SetOutputWindow(TOutputWindow.CHART_WINDOW);

// Display indicator in a separate window (like RSI)
this.api.SetOutputWindow(TOutputWindow.SEPARATE_WINDOW);
```
