StockSharp.BusinessEntities 5.0.216

Prefix Reserved
dotnet add package StockSharp.BusinessEntities --version 5.0.216
                    
NuGet\Install-Package StockSharp.BusinessEntities -Version 5.0.216
                    
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.216" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.BusinessEntities" Version="5.0.216" />
                    
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.216
                    
#r "nuget: StockSharp.BusinessEntities, 5.0.216"
                    
#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.216
                    
#: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.216
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.BusinessEntities&version=5.0.216
                    
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.216 2,222 9/11/2025
5.0.215 600 9/1/2025
5.0.214 566 8/30/2025
5.0.213 761 8/10/2025
5.0.212 1,104 7/23/2025
5.0.211 884 7/20/2025
5.0.210 619 7/14/2025
5.0.209 526 7/8/2025
5.0.208 497 7/4/2025
5.0.207 529 6/30/2025
5.0.206 1,001 6/20/2025
5.0.205 511 6/18/2025
5.0.204 629 6/2/2025
5.0.203 757 5/14/2025
5.0.202 1,386 3/29/2025
5.0.201 479 3/27/2025
5.0.200 1,195 2/26/2025
5.0.199 1,030 2/15/2025
5.0.198 585 2/14/2025
5.0.197 1,090 1/7/2025
5.0.196 771 12/30/2024
5.0.195 1,310 11/18/2024
5.0.194 565 11/16/2024
5.0.193 1,044 10/14/2024
5.0.192 573 10/9/2024
5.0.191 554 10/7/2024
5.0.190 546 10/3/2024
5.0.189 683 9/23/2024
5.0.188 583 9/18/2024
5.0.187 584 9/16/2024
5.0.186 737 9/8/2024
5.0.185 1,035 8/24/2024
5.0.184 820 8/9/2024
5.0.183 902 8/1/2024
5.0.182 495 7/28/2024
5.0.181 824 7/4/2024
5.0.180 771 6/23/2024
5.0.179 691 6/13/2024
5.0.178 782 5/30/2024
5.0.177 529 5/22/2024
5.0.176 718 5/13/2024
5.0.175 829 5/5/2024
5.0.174 638 4/26/2024
5.0.173 640 4/25/2024
5.0.172 683 4/12/2024
5.0.171 787 4/4/2024
5.0.170 999 3/12/2024
5.0.169 1,671 2/21/2024
5.0.168 1,023 2/14/2024
5.0.167 941 2/12/2024
5.0.166 1,189 2/6/2024
5.0.165 1,321 1/31/2024
5.0.164 2,110 1/10/2024
5.0.163 1,608 12/15/2023
5.0.162 1,464 12/8/2023
5.0.161 1,578 11/28/2023
5.0.160 1,310 11/28/2023
5.0.159 2,571 10/8/2023
5.0.158 1,606 9/29/2023
5.0.157 1,703 9/19/2023
5.0.156 1,190 9/18/2023
5.0.155 2,339 7/30/2023
5.0.154 1,956 7/10/2023
5.0.153 1,714 7/8/2023
5.0.152 1,777 7/5/2023
5.0.151 1,749 6/22/2023
5.0.150 1,783 6/19/2023
5.0.149 2,247 5/14/2023
5.0.148 1,865 5/8/2023
5.0.147 2,111 4/21/2023
5.0.146 2,300 4/17/2023
5.0.145 2,143 4/7/2023
5.0.144 2,113 4/3/2023
5.0.143 2,645 3/6/2023
5.0.142 2,992 2/23/2023
5.0.141 2,349 2/13/2023
5.0.140 3,173 2/9/2023
5.0.139 3,043 2/8/2023
5.0.138 3,142 2/2/2023
5.0.137 3,247 1/30/2023
5.0.136 4,217 1/3/2023
5.0.135 3,395 12/30/2022
5.0.134 3,989 12/12/2022
5.0.133 3,732 12/8/2022
5.0.132 4,418 11/11/2022
5.0.131 19,173 11/1/2022
5.0.130 21,459 10/16/2022
5.0.129 43,184 9/8/2022
5.0.128 43,037 8/29/2022
5.0.127 43,445 8/24/2022
5.0.126 44,102 7/26/2022
5.0.125 43,136 7/19/2022
5.0.124 44,704 5/13/2022
5.0.123 42,993 4/30/2022
5.0.122 8,026 3/29/2022
5.0.121 44,800 3/25/2022
5.0.120 43,774 3/17/2022
5.0.119 43,010 2/15/2022
5.0.118 45,522 2/11/2022
5.0.117 7,868 2/2/2022
5.0.116 7,837 1/28/2022
5.0.115 42,912 1/26/2022
5.0.114 42,299 1/21/2022
5.0.113 42,200 1/21/2022
5.0.112 40,822 1/13/2022
5.0.111 26,680 12/29/2021
5.0.110 26,597 12/20/2021
5.0.109 26,674 12/11/2021
5.0.108 26,509 12/6/2021
5.0.107 28,304 11/29/2021
5.0.106 26,430 11/22/2021
5.0.105 27,342 11/13/2021
5.0.104 29,094 11/8/2021
5.0.103 29,876 11/5/2021
5.0.102 30,166 10/21/2021
5.0.101 29,261 10/14/2021
5.0.100 29,273 10/14/2021
5.0.99 2,141 10/13/2021
5.0.98 4,428 10/13/2021
5.0.97 29,956 10/11/2021
5.0.96 32,031 10/8/2021
5.0.95 4,053 10/7/2021
5.0.94 29,907 10/7/2021
5.0.93 31,086 9/23/2021
5.0.92 29,464 9/7/2021
5.0.91 30,350 7/31/2021
5.0.90 28,891 7/30/2021
5.0.89 28,567 7/30/2021
5.0.88 28,532 7/19/2021
5.0.87 29,063 7/13/2021
5.0.86 29,098 7/5/2021
5.0.85 30,418 6/16/2021
5.0.84 29,785 6/4/2021
5.0.83 29,250 5/15/2021
5.0.82 29,459 4/30/2021
5.0.81 29,310 4/26/2021
5.0.80 29,659 4/19/2021
5.0.79 28,959 4/16/2021
5.0.78 28,825 4/13/2021
5.0.77 28,588 4/12/2021
5.0.76 29,454 4/8/2021
5.0.75 28,876 4/7/2021
5.0.74 28,645 4/6/2021
5.0.73 28,999 3/29/2021
5.0.72 29,106 3/28/2021
5.0.71 29,154 3/26/2021
5.0.70 28,654 3/26/2021
5.0.69 28,814 3/24/2021
5.0.68 28,296 3/23/2021
5.0.67 27,209 3/18/2021
5.0.66 26,910 3/17/2021
5.0.65 27,408 3/12/2021
5.0.64 27,238 3/4/2021
5.0.63 3,039 3/4/2021
5.0.62 27,182 2/26/2021
5.0.61 27,486 2/17/2021
5.0.60 26,923 2/15/2021
5.0.59 26,691 2/13/2021
5.0.58 27,006 2/12/2021
5.0.57 27,486 2/7/2021
5.0.56 27,031 2/2/2021
5.0.55 26,981 2/2/2021
5.0.54 27,575 1/26/2021
5.0.53 27,069 1/25/2021
5.0.52 26,786 1/25/2021
5.0.51 27,391 1/21/2021
5.0.50 26,931 1/20/2021
5.0.49 26,799 1/19/2021
5.0.48 25,876 1/16/2021
5.0.47 27,394 1/14/2021
5.0.46 27,984 12/29/2020
5.0.45 28,173 12/23/2020
5.0.44 27,507 12/18/2020
5.0.43 53,763 12/14/2020
5.0.42 30,457 12/10/2020
5.0.41 28,410 12/1/2020
5.0.41-a3 2,324 11/30/2020
5.0.41-a2 2,265 11/30/2020
5.0.40 30,653 11/29/2020
5.0.39 26,771 11/22/2020
5.0.38 26,666 11/22/2020
5.0.38-a7 20,401 11/22/2020
5.0.38-a6 20,740 11/22/2020
5.0.37 30,026 11/13/2020
5.0.36 27,554 10/11/2020
5.0.35 27,506 9/20/2020
5.0.34 26,186 9/18/2020
5.0.33 27,203 9/15/2020
5.0.32 26,251 9/9/2020
5.0.31 26,332 9/3/2020
5.0.30 26,733 8/21/2020
5.0.29 26,854 8/11/2020
5.0.28 26,514 8/10/2020
5.0.27 27,073 8/10/2020
5.0.26 26,320 7/28/2020
5.0.25 26,174 7/19/2020
5.0.24 25,989 7/9/2020
5.0.23 25,946 7/7/2020
5.0.22 27,120 6/10/2020
5.0.21 26,776 6/9/2020
5.0.20 26,909 6/9/2020
5.0.19 27,207 6/4/2020
5.0.18 27,116 6/2/2020
5.0.17 26,789 5/29/2020
5.0.16 26,905 5/25/2020
5.0.15 26,897 5/21/2020
5.0.14 26,966 5/14/2020
5.0.13 27,029 5/12/2020
5.0.12 27,242 5/11/2020
5.0.11 27,247 5/9/2020
5.0.10 27,201 5/5/2020
5.0.9 27,381 5/4/2020
5.0.8 2,938 4/24/2020
5.0.7 2,930 4/22/2020
5.0.6 28,502 4/18/2020
5.0.5 26,647 4/16/2020
5.0.4 22,503 4/15/2020
5.0.3 24,028 4/12/2020
5.0.2 23,629 4/4/2020
5.0.1 9,536 3/27/2020
5.0.0 9,512 3/26/2020