StockSharp.Messages 5.0.246

Prefix Reserved
dotnet add package StockSharp.Messages --version 5.0.246
                    
NuGet\Install-Package StockSharp.Messages -Version 5.0.246
                    
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.Messages" Version="5.0.246" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.Messages" Version="5.0.246" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.Messages" />
                    
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.Messages --version 5.0.246
                    
#r "nuget: StockSharp.Messages, 5.0.246"
                    
#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.Messages@5.0.246
                    
#: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.Messages&version=5.0.246
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.Messages&version=5.0.246
                    
Install as a Cake Tool

StockSharp Messages Library

The Messages project contains the essential message definitions shared across the StockSharp (S#) trading framework. Messages are the contracts used by connectors, adapters and other services for all interactions such as connecting to brokers, requesting market data or placing orders.

Overview

Core Messages

The library defines messages for all major trading activities:

The project targets .NET Standard 2.0 and .NET 6.0 for cross-platform compatibility.

Usage Example

Below is a minimal example of creating a market data subscription message:

using StockSharp.Messages;

var mdMessage = new MarketDataMessage
{
    DataType2 = DataType.Ticks,
    IsSubscribe = true,
    TransactionId = 1,
    SecurityId = new SecurityId
    {
        SecurityCode = "AAPL",
        BoardCode = "NASDAQ"
    }
};

Such messages are passed to an adapter, which forwards them to the broker or data provider.

Documentation

Further details on messages and architecture can be found in the StockSharp documentation.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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 (91)

Showing the top 5 NuGet packages that depend on StockSharp.Messages:

Package Downloads
StockSharp.BusinessEntities

Trading entities (security, trade etc.). More info on web site https://stocksharp.com/store/

StockSharp.Configuration

Configuration components. More info on web site https://stocksharp.com/store/

StockSharp.Fix

FIX/FAST

StockSharp.Fix.Core

Fix core. More info on web site https://stocksharp.com/store/

StockSharp.FinViz

Trading and algorithmic trading platform (stock markets, forex, bitcoins and options). .NET API for InteractiveBrokers, GainCapital, OANDA, FIX/FAST, Binance etc. More info on web site https://stocksharp.com/store/api/

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.246 0 8/26/2026
5.0.245 68 8/26/2026
5.0.244 1,146 8/20/2026
5.0.243 514 8/18/2026
5.0.242 398 8/15/2026
5.0.241 360 8/11/2026
5.0.240 192 8/5/2026
5.0.239 381 7/30/2026
5.0.238 312 7/28/2026
5.0.237 137 7/17/2026
5.0.236 135 7/9/2026
5.0.235 160 6/21/2026
5.0.234 222 6/17/2026
5.0.233 133 6/14/2026
5.0.232 188 6/8/2026
5.0.231 149 6/3/2026
5.0.230 139 5/31/2026
5.0.229 226 5/4/2026
5.0.228 503 3/17/2026
5.0.227 254 3/6/2026
Loading failed

Add the OPRA board code
Deliver data to a subscription an adapter tagged by original transaction id