Creating a Cube and Indicator
The algorithm for creating a cube or indicator from a DLL assembly is similar to the process from code (see the creation of a cube and indicator) except for the content selection stage. Similarly, when adding a strategy from DLL, you can choose both the type of cube and indicators if they are created in the connected DLL:
When creating an indicator, to compile the code it is necessary to include the NuGet package StockSharp.Algo, where the base class for all indicators Strategy is located.
When creating a cube, to compile the code it is necessary to include the NuGet package StockSharp.Diagram.Core, where the base class for all cubes DiagramExternalElement is located.
When adding connected cubes or indicators to the diagram, you need to follow the steps described in the sections for a cube or indicator.