SabrTrader.Sdk 0.1.0

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

SabrTrader SDK

The single package to install when building plugins for SabrTrader — custom indicators, strategies, bar types, and data providers.

Installing SabrTrader.Sdk brings in the full contract surface you compile against:

Package For building
SabrTrader.Pipeline.Contracts Indicators, bar types, and data providers
SabrTrader.Pipeline.Trading.Contracts Anything working with accounts, orders, and positions
SabrTrader.Pipeline.Strategies.Contracts Custom trading strategies

These are pure contract surfaces — no engine runtime code. The host application provides the implementations when it loads your plugin.

Install

<ItemGroup>
  <PackageReference Include="SabrTrader.Sdk" Version="0.1.0" />
</ItemGroup>
using SabrTrader.Pipeline.Indicators;

public sealed class MyIndicator : IndicatorBase
{
    protected override void OnBarUpdate() { /* your logic */ }
}

The package also ships MSBuild targets that can automatically deploy your built plugin into the host's plugins folder on each build (opt-in per project).

More about SabrTrader: https://www.sabrtrader.com/

License

The SDK contracts are licensed under the MIT License — use them freely, including in commercial plugins. The SabrTrader host application itself is proprietary and not covered by this license.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 98 7/15/2026