StockSharp.BusinessEntities
5.0.215
Prefix Reserved
dotnet add package StockSharp.BusinessEntities --version 5.0.215
NuGet\Install-Package StockSharp.BusinessEntities -Version 5.0.215
<PackageReference Include="StockSharp.BusinessEntities" Version="5.0.215" />
<PackageVersion Include="StockSharp.BusinessEntities" Version="5.0.215" />
<PackageReference Include="StockSharp.BusinessEntities" />
paket add StockSharp.BusinessEntities --version 5.0.215
#r "nuget: StockSharp.BusinessEntities, 5.0.215"
#:package StockSharp.BusinessEntities@5.0.215
#addin nuget:?package=StockSharp.BusinessEntities&version=5.0.215
#tool nuget:?package=StockSharp.BusinessEntities&version=5.0.215
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 fromIMarketDataProvider
,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 | Versions 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. |
-
net6.0
- Ecng.Configuration (>= 1.0.208)
- Ecng.Drawing (>= 1.0.121)
- StockSharp.Messages (>= 5.0.221)
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.215 | 353 | 9/1/2025 |
5.0.214 | 297 | 8/30/2025 |
5.0.213 | 509 | 8/10/2025 |
5.0.212 | 781 | 7/23/2025 |
5.0.211 | 364 | 7/20/2025 |
5.0.210 | 464 | 7/14/2025 |
5.0.209 | 368 | 7/8/2025 |
5.0.208 | 302 | 7/4/2025 |
5.0.207 | 375 | 6/30/2025 |
5.0.206 | 660 | 6/20/2025 |
5.0.205 | 342 | 6/18/2025 |
5.0.204 | 476 | 6/2/2025 |
5.0.203 | 575 | 5/14/2025 |
5.0.202 | 1,072 | 3/29/2025 |
5.0.201 | 302 | 3/27/2025 |
5.0.200 | 922 | 2/26/2025 |
5.0.199 | 757 | 2/15/2025 |
5.0.198 | 412 | 2/14/2025 |
5.0.197 | 916 | 1/7/2025 |
5.0.196 | 562 | 12/30/2024 |
5.0.195 | 1,109 | 11/18/2024 |
5.0.194 | 390 | 11/16/2024 |
5.0.193 | 874 | 10/14/2024 |
5.0.192 | 402 | 10/9/2024 |
5.0.191 | 387 | 10/7/2024 |
5.0.190 | 367 | 10/3/2024 |
5.0.189 | 520 | 9/23/2024 |
5.0.188 | 415 | 9/18/2024 |
5.0.187 | 415 | 9/16/2024 |
5.0.186 | 543 | 9/8/2024 |
5.0.185 | 793 | 8/24/2024 |
5.0.184 | 636 | 8/9/2024 |
5.0.183 | 579 | 8/1/2024 |
5.0.182 | 323 | 7/28/2024 |
5.0.181 | 657 | 7/4/2024 |
5.0.180 | 582 | 6/23/2024 |
5.0.179 | 510 | 6/13/2024 |
5.0.178 | 594 | 5/30/2024 |
5.0.177 | 394 | 5/22/2024 |
5.0.176 | 532 | 5/13/2024 |
5.0.175 | 606 | 5/5/2024 |
5.0.174 | 480 | 4/26/2024 |
5.0.173 | 452 | 4/25/2024 |
5.0.172 | 500 | 4/12/2024 |
5.0.171 | 622 | 4/4/2024 |
5.0.170 | 792 | 3/12/2024 |
5.0.169 | 1,331 | 2/21/2024 |
5.0.168 | 836 | 2/14/2024 |
5.0.167 | 776 | 2/12/2024 |
5.0.166 | 997 | 2/6/2024 |
5.0.165 | 1,146 | 1/31/2024 |
5.0.164 | 1,787 | 1/10/2024 |
5.0.163 | 1,452 | 12/15/2023 |
5.0.162 | 1,275 | 12/8/2023 |
5.0.161 | 1,335 | 11/28/2023 |
5.0.160 | 1,135 | 11/28/2023 |
5.0.159 | 2,379 | 10/8/2023 |
5.0.158 | 1,435 | 9/29/2023 |
5.0.157 | 1,533 | 9/19/2023 |
5.0.156 | 1,081 | 9/18/2023 |
5.0.155 | 2,168 | 7/30/2023 |
5.0.154 | 1,801 | 7/10/2023 |
5.0.153 | 1,532 | 7/8/2023 |
5.0.152 | 1,597 | 7/5/2023 |
5.0.151 | 1,605 | 6/22/2023 |
5.0.150 | 1,590 | 6/19/2023 |
5.0.149 | 2,064 | 5/14/2023 |
5.0.148 | 1,695 | 5/8/2023 |
5.0.147 | 1,920 | 4/21/2023 |
5.0.146 | 2,116 | 4/17/2023 |
5.0.145 | 1,984 | 4/7/2023 |
5.0.144 | 1,924 | 4/3/2023 |
5.0.143 | 2,475 | 3/6/2023 |
5.0.142 | 2,821 | 2/23/2023 |
5.0.141 | 2,176 | 2/13/2023 |
5.0.140 | 2,975 | 2/9/2023 |
5.0.139 | 2,846 | 2/8/2023 |
5.0.138 | 2,949 | 2/2/2023 |
5.0.137 | 3,039 | 1/30/2023 |
5.0.136 | 3,982 | 1/3/2023 |
5.0.135 | 3,197 | 12/30/2022 |
5.0.134 | 3,761 | 12/12/2022 |
5.0.133 | 3,509 | 12/8/2022 |
5.0.132 | 4,203 | 11/11/2022 |
5.0.131 | 18,621 | 11/1/2022 |
5.0.130 | 20,942 | 10/16/2022 |
5.0.129 | 42,440 | 9/8/2022 |
5.0.128 | 42,311 | 8/29/2022 |
5.0.127 | 42,721 | 8/24/2022 |
5.0.126 | 43,383 | 7/26/2022 |
5.0.125 | 42,442 | 7/19/2022 |
5.0.124 | 43,998 | 5/13/2022 |
5.0.123 | 42,270 | 4/30/2022 |
5.0.122 | 7,735 | 3/29/2022 |
5.0.121 | 44,118 | 3/25/2022 |
5.0.120 | 43,052 | 3/17/2022 |
5.0.119 | 42,397 | 2/15/2022 |
5.0.118 | 44,610 | 2/11/2022 |
5.0.117 | 7,599 | 2/2/2022 |
5.0.116 | 7,561 | 1/28/2022 |
5.0.115 | 42,250 | 1/26/2022 |
5.0.114 | 41,681 | 1/21/2022 |
5.0.113 | 41,525 | 1/21/2022 |
5.0.112 | 40,112 | 1/13/2022 |
5.0.111 | 26,000 | 12/29/2021 |
5.0.110 | 25,924 | 12/20/2021 |
5.0.109 | 26,015 | 12/11/2021 |
5.0.108 | 25,822 | 12/6/2021 |
5.0.107 | 27,519 | 11/29/2021 |
5.0.106 | 25,771 | 11/22/2021 |
5.0.105 | 26,646 | 11/13/2021 |
5.0.104 | 28,469 | 11/8/2021 |
5.0.103 | 29,114 | 11/5/2021 |
5.0.102 | 29,560 | 10/21/2021 |
5.0.101 | 28,607 | 10/14/2021 |
5.0.100 | 28,681 | 10/14/2021 |
5.0.99 | 2,039 | 10/13/2021 |
5.0.98 | 4,204 | 10/13/2021 |
5.0.97 | 29,286 | 10/11/2021 |
5.0.96 | 31,399 | 10/8/2021 |
5.0.95 | 3,827 | 10/7/2021 |
5.0.94 | 29,293 | 10/7/2021 |
5.0.93 | 30,352 | 9/23/2021 |
5.0.92 | 28,862 | 9/7/2021 |
5.0.91 | 29,710 | 7/31/2021 |
5.0.90 | 28,309 | 7/30/2021 |
5.0.89 | 27,997 | 7/30/2021 |
5.0.88 | 27,928 | 7/19/2021 |
5.0.87 | 28,477 | 7/13/2021 |
5.0.86 | 28,556 | 7/5/2021 |
5.0.85 | 29,871 | 6/16/2021 |
5.0.84 | 29,119 | 6/4/2021 |
5.0.83 | 28,710 | 5/15/2021 |
5.0.82 | 28,845 | 4/30/2021 |
5.0.81 | 28,697 | 4/26/2021 |
5.0.80 | 29,075 | 4/19/2021 |
5.0.79 | 28,365 | 4/16/2021 |
5.0.78 | 28,218 | 4/13/2021 |
5.0.77 | 27,987 | 4/12/2021 |
5.0.76 | 28,850 | 4/8/2021 |
5.0.75 | 28,267 | 4/7/2021 |
5.0.74 | 28,084 | 4/6/2021 |
5.0.73 | 28,371 | 3/29/2021 |
5.0.72 | 28,518 | 3/28/2021 |
5.0.71 | 28,573 | 3/26/2021 |
5.0.70 | 28,084 | 3/26/2021 |
5.0.69 | 28,203 | 3/24/2021 |
5.0.68 | 27,671 | 3/23/2021 |
5.0.67 | 26,606 | 3/18/2021 |
5.0.66 | 26,283 | 3/17/2021 |
5.0.65 | 26,853 | 3/12/2021 |
5.0.64 | 26,640 | 3/4/2021 |
5.0.63 | 2,901 | 3/4/2021 |
5.0.62 | 26,580 | 2/26/2021 |
5.0.61 | 26,951 | 2/17/2021 |
5.0.60 | 26,357 | 2/15/2021 |
5.0.59 | 26,120 | 2/13/2021 |
5.0.58 | 26,404 | 2/12/2021 |
5.0.57 | 26,968 | 2/7/2021 |
5.0.56 | 26,415 | 2/2/2021 |
5.0.55 | 26,415 | 2/2/2021 |
5.0.54 | 26,996 | 1/26/2021 |
5.0.53 | 26,493 | 1/25/2021 |
5.0.52 | 26,168 | 1/25/2021 |
5.0.51 | 26,801 | 1/21/2021 |
5.0.50 | 26,346 | 1/20/2021 |
5.0.49 | 26,257 | 1/19/2021 |
5.0.48 | 25,333 | 1/16/2021 |
5.0.47 | 26,760 | 1/14/2021 |
5.0.46 | 27,384 | 12/29/2020 |
5.0.45 | 27,490 | 12/23/2020 |
5.0.44 | 26,844 | 12/18/2020 |
5.0.43 | 52,351 | 12/14/2020 |
5.0.42 | 29,578 | 12/10/2020 |
5.0.41 | 27,617 | 12/1/2020 |
5.0.41-a3 | 2,171 | 11/30/2020 |
5.0.41-a2 | 2,116 | 11/30/2020 |
5.0.40 | 29,789 | 11/29/2020 |
5.0.39 | 26,197 | 11/22/2020 |
5.0.38 | 26,066 | 11/22/2020 |
5.0.38-a7 | 19,792 | 11/22/2020 |
5.0.38-a6 | 20,162 | 11/22/2020 |
5.0.37 | 29,162 | 11/13/2020 |
5.0.36 | 26,985 | 10/11/2020 |
5.0.35 | 26,981 | 9/20/2020 |
5.0.34 | 25,648 | 9/18/2020 |
5.0.33 | 26,621 | 9/15/2020 |
5.0.32 | 25,741 | 9/9/2020 |
5.0.31 | 25,792 | 9/3/2020 |
5.0.30 | 26,201 | 8/21/2020 |
5.0.29 | 26,274 | 8/11/2020 |
5.0.28 | 25,961 | 8/10/2020 |
5.0.27 | 26,501 | 8/10/2020 |
5.0.26 | 25,743 | 7/28/2020 |
5.0.25 | 25,614 | 7/19/2020 |
5.0.24 | 25,479 | 7/9/2020 |
5.0.23 | 25,414 | 7/7/2020 |
5.0.22 | 26,630 | 6/10/2020 |
5.0.21 | 26,288 | 6/9/2020 |
5.0.20 | 26,370 | 6/9/2020 |
5.0.19 | 26,686 | 6/4/2020 |
5.0.18 | 26,604 | 6/2/2020 |
5.0.17 | 26,350 | 5/29/2020 |
5.0.16 | 26,398 | 5/25/2020 |
5.0.15 | 26,392 | 5/21/2020 |
5.0.14 | 26,401 | 5/14/2020 |
5.0.13 | 26,448 | 5/12/2020 |
5.0.12 | 26,707 | 5/11/2020 |
5.0.11 | 26,696 | 5/9/2020 |
5.0.10 | 26,570 | 5/5/2020 |
5.0.9 | 26,786 | 5/4/2020 |
5.0.8 | 2,783 | 4/24/2020 |
5.0.7 | 2,787 | 4/22/2020 |
5.0.6 | 27,871 | 4/18/2020 |
5.0.5 | 26,123 | 4/16/2020 |
5.0.4 | 22,001 | 4/15/2020 |
5.0.3 | 23,498 | 4/12/2020 |
5.0.2 | 23,085 | 4/4/2020 |
5.0.1 | 8,980 | 3/27/2020 |
5.0.0 | 8,901 | 3/26/2020 |