Table of Contents

Interface IAnalyticsPanel

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

The interface for work with result panel.

public interface IAnalyticsPanel
Extension Methods

Methods

CreateChart<X, Y>()

Create chart with 2 dimension to show analytics result.

IAnalyticsChart<X, Y, VoidType> CreateChart<X, Y>()

Returns

IAnalyticsChart<X, Y, VoidType>

IAnalyticsChart<X, Y, Z>

Type Parameters

X

Type of X values.

Y

Type of Y values.

CreateChart<X, Y, Z>()

Create chart with 3 dimension to show analytics result.

IAnalyticsChart<X, Y, Z> CreateChart<X, Y, Z>()

Returns

IAnalyticsChart<X, Y, Z>

IAnalyticsChart<X, Y, Z>

Type Parameters

X

Type of X values.

Y

Type of Y values.

Z

Type of Z values.

CreateGrid(params string[])

Create table to show analytics result.

IAnalyticsGrid CreateGrid(params string[] columns)

Parameters

columns string[]

Columns.

Returns

IAnalyticsGrid

Table.

Draw3D(IEnumerable<string>, IEnumerable<string>, double[,], string, string, string)

Draw 3D to show analytics result.

void Draw3D(IEnumerable<string> xTitles, IEnumerable<string> yTitles, double[,] data, string xTitle = null, string yTitle = null, string zTitle = null)

Parameters

xTitles IEnumerable<string>

X titles.

yTitles IEnumerable<string>

Y titles.

data double[,]

Data.

xTitle string

Title for X axis.

yTitle string

Title for Y axis.

zTitle string

Title for Z axis.

DrawHeatmap(IEnumerable<string>, IEnumerable<string>, double[,])

Draw heatmap to show analytics result.

void DrawHeatmap(IEnumerable<string> xTitles, IEnumerable<string> yTitles, double[,] data)

Parameters

xTitles IEnumerable<string>

X titles.

yTitles IEnumerable<string>

Y titles.

data double[,]

Data.