Table of Contents

Interface IAnalyticsChart<X, Y, Z>

Namespace
StockSharp.Algo.Analytics
Assembly
StockSharp.Algo.Analytics.dll

The interface for work with a chart.

public interface IAnalyticsChart<X, Y, Z>

Type Parameters

X

Type of X values.

Y

Type of Y values.

Z

Type of Z values.

Extension Methods

Methods

Append(string, IEnumerable<X>, IEnumerable<Y>, ChartIndicatorDrawStyles, Color?)

Append series.

void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, ChartIndicatorDrawStyles style = ChartIndicatorDrawStyles.Line, Color? color = null)

Parameters

title string

Series title.

xValues IEnumerable<X>

X values.

yValues IEnumerable<Y>

Y values.

style ChartIndicatorDrawStyles

ChartIndicatorDrawStyles

color Color?

Series color.

Append(string, IEnumerable<X>, IEnumerable<Y>, IEnumerable<Z>, ChartIndicatorDrawStyles, Color?)

Append series.

void Append(string title, IEnumerable<X> xValues, IEnumerable<Y> yValues, IEnumerable<Z> zValues, ChartIndicatorDrawStyles style = ChartIndicatorDrawStyles.Bubble, Color? color = null)

Parameters

title string

Series title.

xValues IEnumerable<X>

X values.

yValues IEnumerable<Y>

Y values.

zValues IEnumerable<Z>

Z values.

style ChartIndicatorDrawStyles

ChartIndicatorDrawStyles

color Color?

Series color.