SetOutputWindow
Syntax
SetOutputWindow(outputWindow: TOutputWindow): voidParameters
Return Value
Description
Example
// Display indicator in the main chart window (like Moving Averages, Bollinger Bands)
this.api.SetOutputWindow(TOutputWindow.CHART_WINDOW);
// Display indicator in a separate window (like RSI, MACD, Stochastic)
this.api.SetOutputWindow(TOutputWindow.SEPARATE_WINDOW);Last updated