Skip to content

ScatterChartPoint

QuantConnect.ScatterChartPoint

ScatterChartPoint()
ScatterChartPoint(
    time: int, value: Optional[float], tooltip: str = None
)
ScatterChartPoint(
    time: Union[datetime, date],
    value: Optional[float],
    tooltip: str = None,
)

Bases: ChartPoint

A chart point for a scatter series plot

Signature descriptions:

  • Creates a new empty instance

  • Creates a new instance at the specified time and value

tooltip

tooltip: str

A summary of this point for the tooltip

time

time: datetime

Time of this chart series point

x

x: int

Shortcut for x for C# naming conventions

y

y: Optional[float]

Shortcut for y for C# naming conventions

clone

clone() -> ISeriesPoint

Clones this instance

Returns:

Type Description
ISeriesPoint

Clone of this instance.

to_string

to_string() -> str

Provides a readable string representation of this instance.