Decorators
@background()
decorator
Overloads
@background
(title, color, outline_color, outline_style, outline_width) -> None
Declares attributes of a background plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Background
@columns()
decorator
Overloads
@columns
(id, title, color, base_value, rel_width, display_options) -> None
Declares attributes of a columns plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Columns
@fill()
decorator
Overloads
@fill
(id1, id2, id, title, color) -> None
Declares attributes of a fill plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Fill
@histogram()
decorator
Overloads
@histogram
(id, title, color, line_width, base_value, display_options) -> None
Declares attributes of a histogram plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Histogram
@line()
decorator
Overloads
@line
(id, title, color, line_style, line_width, continuous, display_options) -> None
Declares attributes of a line plot of an indicator. Can be applied only to the
Main
entry point of the indicator. It is optional, so may be omitted in some simple use cases and plot will be rendered using defaults. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Line
@marker()
decorator
Overloads
@marker
(title, color, text, style, position, size, display_options) -> None
Declares attributes of a marker plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Marker
@steps()
decorator
Overloads
@steps
(id, title, color, line_width, display_options) -> None
Declares attributes of a steps plot of an indicator. Can be applied only to the
Main
entry point of the indicator. When applied, it must match with the result of the Main
indicator entry point.Example
See also:
Steps
Types
Background
type
Class which objects represent an element of background plot.
See also:
@background()
Columns
type
Class which objects represent an element of columns plot.
See also:
@columns()
ColumnsDisplayOptions
type
Class with options that control how to display plot data on a chart.
Fill
type
Class which objects represent an element of fill plot.
See also:
@fill()
Histogram
type
Class which objects represent an element of histogram plot.
See also:
@histogram()
HistogramDisplayOptions
type
Class with options that control how to display plot data on a chart.
Line
type
Class which objects represent an element of line plot.
See also:
@line()
LineDisplayOptions
type
Class with options that control how to display plot data on a chart.
Marker
type
Class which objects represent an element of marker plot.
See also:
@marker()
MarkerDisplayOptions
type
Class with options that control how to display plot data on a chart.
Steps
type
Class which objects represent an element of steps plot.
See also:
@steps()
StepsDisplayOptions
type
Class with options that control how to display plot data on a chart.
Enums
marker_position
enum
Enum-like class with constants of marker positions.
Static fields
marker_style
enum
Enum-like class with constants of marker styles.
Static fields