Skip to content
Algo Trade Analytics Docs

display - Pine Script Constants

Constants under the display namespace.

NameTypeDescription
display.allconst plot_simple_displayA named constant for use with the display parameter of plot*() and input*() functions. Displays plotted or input values in all possible locations.
display.data_windowconst plot_displayA named constant for use with the display parameter of plot*() and input*() functions. Displays plotted or input values in the Data Window, a menu accessible from the chart’s right sidebar.
display.noneconst plot_simple_displayA named constant for use with the display parameter of plot*() and input*() functions. plot*() functions using this will not display their plotted values anywhere. However, alert template messages and fill functions can still use the values, and they will appear in exported chart data. input*() functions using this constant will only display their values within the script’s settings.
display.paneconst plot_displayA named constant for use with the display parameter of plot*() functions. Displays plotted values in the chart pane used by the script.
display.price_scaleconst plot_displayA named constant for use with the display parameter of plot*() functions. Displays the plot’s label and value on the price scale if the chart’s settings allow it.
display.status_lineconst plot_displayA named constant for use with the display parameter of plot*() and input*() functions. Displays plotted or input values in the status line next to the script’s name on the chart if the chart’s settings allow it.