Algo analytics. More info on web site https://stocksharp.com/store/
$ dotnet add package StockSharp.Algo.AnalyticsAlgo.Analytics is a small library that exposes a common set of interfaces for running analytics scripts on top of the StockSharp trading platform. The package itself does not contain any user interface but defines abstractions that allow scripts written in different languages to display their results in a uniform way.
The library is a part of the main StockSharp repository and can be found in the Algo.Analytics folder. Example scripts that implement these interfaces are located in the sibling folders:
Algo.Analytics.CSharp – C# examplesAlgo.Analytics.FSharp – F# examplesAlgo.Analytics.Python – Python examples together with helper modules for .NET interoperabilityThese example scripts showcase the Hydra analytics feature. See the Hydra documentation for details on executing analytics scripts inside the platform.
IAnalyticsScriptEntry point for a custom analytic. The Run method receives the logging interface, an IAnalyticsPanel for output and parameters describing the market data to analyse.
IAnalyticsPanelRepresents a container where a script can place the output. It allows creating:
CreateGridCreateChartCreateChart with three generic argumentsDrawHeatmapDraw3DIAnalyticsChartA chart produced by IAnalyticsPanel. It exposes Append methods to add series of points (or bubbles in the 3D case) with the desired drawing style and color.
IAnalyticsGridA helper interface to fill tabular data and specify sorting rules.
The example folders contain several ready‑to‑use scripts demonstrating how to implement different analytics:
Python examples include a set of helper modules under common that simplify working with .NET types from Python code (for example chart_extensions.py and storage_extensions.py).