display - Pine Script Constants
display
Section titled “display”Overview
Section titled “Overview”Constants under the display namespace.
Constants
Section titled “Constants”| Name | Type | Description |
|---|---|---|
display.all | const plot_simple_display | A named constant for use with the display parameter of plot*() and input*() functions. Displays plotted or input values in all possible locations. |
display.data_window | const plot_display | A 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.none | const plot_simple_display | A 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.pane | const plot_display | A named constant for use with the display parameter of plot*() functions. Displays plotted values in the chart pane used by the script. |
display.price_scale | const plot_display | A 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_line | const plot_display | A 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. |