StockSharp.BusinessEntities 5.0.212

Prefix Reserved
dotnet add package StockSharp.BusinessEntities --version 5.0.212
                    
NuGet\Install-Package StockSharp.BusinessEntities -Version 5.0.212
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StockSharp.BusinessEntities" Version="5.0.212" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.BusinessEntities" Version="5.0.212" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.BusinessEntities" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StockSharp.BusinessEntities --version 5.0.212
                    
#r "nuget: StockSharp.BusinessEntities, 5.0.212"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package StockSharp.BusinessEntities@5.0.212
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StockSharp.BusinessEntities&version=5.0.212
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.BusinessEntities&version=5.0.212
                    
Install as a Cake Tool

StockSharp.BusinessEntities

StockSharp.BusinessEntities is the core library that defines the trading entities used throughout the S# platform. It contains models describing exchanges, instruments, orders, trades and other objects along with provider interfaces for market data and order management.

Key classes

  • Exchange and ExchangeBoard — descriptions of an exchange and a specific electronic board.
  • Security — represents a financial instrument with fields such as symbol, type, price step and currency.
  • Portfolio and Position — trading account information and open positions.
  • Order, MyTrade and Trade — objects that reflect registered orders and trades.
  • MarketDepth — order book (best bid/ask and current quotes).
  • News — news item information.
  • Candle and its derivations (e.g. TimeFrameCandle, TickCandle) — candle models for analyzing market data.

Provider interfaces

The library declares base interfaces for interacting with various data sources and trading systems:

  • IConnector is the main interface combining connectivity, subscriptions, orders and data access. It inherits from IMarketDataProvider, ITransactionProvider, ISecurityProvider and others. A fragment of the interface:
public interface IConnector : IMessageChannel, IPersistable, ILogReceiver,
        IMarketDataProvider, ITransactionProvider, ISecurityProvider,
        ISubscriptionProvider, ITimeProvider,
        IPortfolioProvider, IPositionProvider
{
    event Action<Message> NewMessage;
    event Action Connected;
    event Action Disconnected;
    // ...
}
  • IMarketDataProvider — receiving market data and price levels.
  • ITransactionProvider — registering, canceling and modifying orders.
  • ISubscriptionProvider — managing real‑time data subscriptions.
  • ISecurityProvider, IPortfolioProvider, IPositionProvider — access to lists of securities, portfolios and positions.
  • ITimeProvider — current time source.

Extensions and helpers

EntitiesExtensions.cs contains many utilities:

  • Converting price values to pips or points.
  • Cloning and re-registering orders.
  • Transforming entities to StockSharp.Messages types.
  • Enumerating all registered exchanges and boards.

Example method:

public static IEnumerable<Exchange> EnumerateExchanges()
    => typeof(Exchange)
        .GetMembers<PropertyInfo>(_publicStatic, typeof(Exchange))
        .Select(prop => (Exchange)prop.GetValue(null, null));

Project structure

BusinessEntities.csproj connects shared settings and package dependencies:

<Project Sdk="Microsoft.NET.Sdk">
  <Import Project="..\common_target_net.props" />
  <PropertyGroup>
    <ProjectGuid>{DCE69DB8-53CA-4B7F-9368-02F175A31074}</ProjectGuid>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="Ecng.Configuration" Version="$(EcngVer)" />
    <PackageReference Include="Ecng.Drawing" Version="$(EcngVer)" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\Messages\Messages.csproj" />
  </ItemGroup>
</Project>

Usage

BusinessEntities is used in all Samples projects and production connectors. Add the project to your solution or install the package from the private S# NuGet feed. You can then create Security objects, subscribe to data through the interfaces and register orders.

Example

A code fragment for subscribing to an instrument and receiving market data can be found in Samples/01_Basic/01_ConnectAndDownloadInstruments.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on StockSharp.BusinessEntities:

Package Downloads
StockSharp.Alerts.Interfaces

S#.Alerts.Interfaces More info on web site https://stocksharp.com/store/

StockSharp.Charting.Interfaces

S#.Charting.Interfaces More info on web site https://stocksharp.com/store/

TradeSystemsCommon.Tools

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.212 118 7/23/2025
5.0.211 133 7/20/2025
5.0.210 354 7/14/2025
5.0.209 356 7/8/2025
5.0.208 292 7/4/2025
5.0.207 365 6/30/2025
5.0.206 649 6/20/2025
5.0.205 332 6/18/2025
5.0.204 464 6/2/2025
5.0.203 565 5/14/2025
5.0.202 1,064 3/29/2025
5.0.201 293 3/27/2025
5.0.200 914 2/26/2025
5.0.199 745 2/15/2025
5.0.198 404 2/14/2025
5.0.197 901 1/7/2025
5.0.196 552 12/30/2024
5.0.195 1,093 11/18/2024
5.0.194 377 11/16/2024
5.0.193 860 10/14/2024
5.0.192 393 10/9/2024
5.0.191 378 10/7/2024
5.0.190 360 10/3/2024
5.0.189 508 9/23/2024
5.0.188 405 9/18/2024
5.0.187 403 9/16/2024
5.0.186 534 9/8/2024
5.0.185 785 8/24/2024
5.0.184 625 8/9/2024
5.0.183 570 8/1/2024
5.0.182 313 7/28/2024
5.0.181 648 7/4/2024
5.0.180 572 6/23/2024
5.0.179 502 6/13/2024
5.0.178 585 5/30/2024
5.0.177 384 5/22/2024
5.0.176 522 5/13/2024
5.0.175 593 5/5/2024
5.0.174 473 4/26/2024
5.0.173 444 4/25/2024
5.0.172 490 4/12/2024
5.0.171 613 4/4/2024
5.0.170 783 3/12/2024
5.0.169 1,318 2/21/2024
5.0.168 829 2/14/2024
5.0.167 768 2/12/2024
5.0.166 974 2/6/2024
5.0.165 1,134 1/31/2024
5.0.164 1,775 1/10/2024
5.0.163 1,445 12/15/2023
5.0.162 1,268 12/8/2023
5.0.161 1,325 11/28/2023
5.0.160 1,120 11/28/2023
5.0.159 2,366 10/8/2023
5.0.158 1,426 9/29/2023
5.0.157 1,523 9/19/2023
5.0.156 1,070 9/18/2023
5.0.155 2,151 7/30/2023
5.0.154 1,783 7/10/2023
5.0.153 1,509 7/8/2023
5.0.152 1,577 7/5/2023
5.0.151 1,583 6/22/2023
5.0.150 1,573 6/19/2023
5.0.149 2,043 5/14/2023
5.0.148 1,675 5/8/2023
5.0.147 1,902 4/21/2023
5.0.146 2,093 4/17/2023
5.0.145 1,964 4/7/2023
5.0.144 1,903 4/3/2023
5.0.143 2,447 3/6/2023
5.0.142 2,797 2/23/2023
5.0.141 2,152 2/13/2023
5.0.140 2,954 2/9/2023
5.0.139 2,825 2/8/2023
5.0.138 2,929 2/2/2023
5.0.137 3,021 1/30/2023
5.0.136 3,959 1/3/2023
5.0.135 3,176 12/30/2022
5.0.134 3,729 12/12/2022
5.0.133 3,485 12/8/2022
5.0.132 4,171 11/11/2022
5.0.131 18,601 11/1/2022
5.0.130 20,916 10/16/2022
5.0.129 42,421 9/8/2022
5.0.128 42,289 8/29/2022
5.0.127 42,699 8/24/2022
5.0.126 43,363 7/26/2022
5.0.125 42,422 7/19/2022
5.0.124 43,971 5/13/2022
5.0.123 42,248 4/30/2022
5.0.122 7,711 3/29/2022
5.0.121 44,099 3/25/2022
5.0.120 43,030 3/17/2022
5.0.119 42,377 2/15/2022
5.0.118 44,377 2/11/2022
5.0.117 7,578 2/2/2022
5.0.116 7,542 1/28/2022
5.0.115 42,229 1/26/2022
5.0.114 41,661 1/21/2022
5.0.113 41,507 1/21/2022
5.0.112 40,081 1/13/2022
5.0.111 25,980 12/29/2021
5.0.110 25,900 12/20/2021
5.0.109 25,990 12/11/2021
5.0.108 25,799 12/6/2021
5.0.107 27,495 11/29/2021
5.0.106 25,747 11/22/2021
5.0.105 26,623 11/13/2021
5.0.104 28,449 11/8/2021
5.0.103 29,091 11/5/2021
5.0.102 29,534 10/21/2021
5.0.101 28,586 10/14/2021
5.0.100 28,658 10/14/2021
5.0.99 2,016 10/13/2021
5.0.98 4,185 10/13/2021
5.0.97 29,264 10/11/2021
5.0.96 31,374 10/8/2021
5.0.95 3,805 10/7/2021
5.0.94 29,270 10/7/2021
5.0.93 30,330 9/23/2021
5.0.92 28,843 9/7/2021
5.0.91 29,684 7/31/2021
5.0.90 28,288 7/30/2021
5.0.89 27,974 7/30/2021
5.0.88 27,896 7/19/2021
5.0.87 28,455 7/13/2021
5.0.86 28,533 7/5/2021
5.0.85 29,849 6/16/2021
5.0.84 29,096 6/4/2021
5.0.83 28,687 5/15/2021
5.0.82 28,813 4/30/2021
5.0.81 28,677 4/26/2021
5.0.80 29,053 4/19/2021
5.0.79 28,343 4/16/2021
5.0.78 28,200 4/13/2021
5.0.77 27,965 4/12/2021
5.0.76 28,828 4/8/2021
5.0.75 28,245 4/7/2021
5.0.74 28,058 4/6/2021
5.0.73 28,350 3/29/2021
5.0.72 28,498 3/28/2021
5.0.71 28,551 3/26/2021
5.0.70 28,063 3/26/2021
5.0.69 28,181 3/24/2021
5.0.68 27,649 3/23/2021
5.0.67 26,583 3/18/2021
5.0.66 26,263 3/17/2021
5.0.65 26,830 3/12/2021
5.0.64 26,614 3/4/2021
5.0.63 2,873 3/4/2021
5.0.62 26,556 2/26/2021
5.0.61 26,925 2/17/2021
5.0.60 26,335 2/15/2021
5.0.59 26,094 2/13/2021
5.0.58 26,378 2/12/2021
5.0.57 26,942 2/7/2021
5.0.56 26,387 2/2/2021
5.0.55 26,390 2/2/2021
5.0.54 26,970 1/26/2021
5.0.53 26,470 1/25/2021
5.0.52 26,146 1/25/2021
5.0.51 26,777 1/21/2021
5.0.50 26,324 1/20/2021
5.0.49 26,231 1/19/2021
5.0.48 25,306 1/16/2021
5.0.47 26,736 1/14/2021
5.0.46 27,358 12/29/2020
5.0.45 27,469 12/23/2020
5.0.44 26,820 12/18/2020
5.0.43 52,326 12/14/2020
5.0.42 29,554 12/10/2020
5.0.41 27,593 12/1/2020
5.0.41-a3 2,146 11/30/2020
5.0.41-a2 2,085 11/30/2020
5.0.40 29,763 11/29/2020
5.0.39 26,173 11/22/2020
5.0.38 26,038 11/22/2020
5.0.38-a7 19,766 11/22/2020
5.0.38-a6 20,138 11/22/2020
5.0.37 29,126 11/13/2020
5.0.36 26,962 10/11/2020
5.0.35 26,947 9/20/2020
5.0.34 25,622 9/18/2020
5.0.33 26,594 9/15/2020
5.0.32 25,716 9/9/2020
5.0.31 25,765 9/3/2020
5.0.30 26,178 8/21/2020
5.0.29 26,247 8/11/2020
5.0.28 25,935 8/10/2020
5.0.27 26,478 8/10/2020
5.0.26 25,718 7/28/2020
5.0.25 25,586 7/19/2020
5.0.24 25,454 7/9/2020
5.0.23 25,389 7/7/2020
5.0.22 26,606 6/10/2020
5.0.21 26,262 6/9/2020
5.0.20 26,345 6/9/2020
5.0.19 26,662 6/4/2020
5.0.18 26,581 6/2/2020
5.0.17 26,321 5/29/2020
5.0.16 26,375 5/25/2020
5.0.15 26,369 5/21/2020
5.0.14 26,376 5/14/2020
5.0.13 26,421 5/12/2020
5.0.12 26,683 5/11/2020
5.0.11 26,669 5/9/2020
5.0.10 26,534 5/5/2020
5.0.9 26,758 5/4/2020
5.0.8 2,756 4/24/2020
5.0.7 2,761 4/22/2020
5.0.6 27,847 4/18/2020
5.0.5 26,100 4/16/2020
5.0.4 21,976 4/15/2020
5.0.3 23,475 4/12/2020
5.0.2 23,061 4/4/2020
5.0.1 8,952 3/27/2020
5.0.0 8,866 3/26/2020