Balsam.Charting 1.1.2

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

alternate text is missing from this package README image Balsam Charting

Balsam.Charting works in conjuction with the Balsam.Backtester library to provide tools for data visualization including charting of data series, strategy backtests, and event studies.

Usage

Most classes implementing ISeries like BarSeries and TimeSeries can be plotted directly using the Chart() extension method:

var server = new CsiBarServer(@"c:\data\csi\current");
var data = server.LoadSymbol("CL");
data.Chart();

Strategies can be charted as well:

 var strat = new SmaCrossover();
 strat.PrimarySeries = data;
 strat.RunSimulation();
 strat.Chart();

SmaCross

Charts can also be built from scratch by creating a Balsam.Charting.Chart object and passing in one or more PlotInstruction objects.

var cht = new Chart();
cht.Plot(new PlotInstruction { Series = data},
  new PlotInstruction { Series = data.Close.Sma(200), Color = Color.Red },
  new PlotInstruction { Series = data.Close.Rsi(21), Color = Color.Blue, Pane = 1, PaneSize = 33f });
new ChartForm(cht).ShowDialog();

About

The Balsam.Backtester is a suite of tools designed for rapid prototyping and testing of systematic trading strategies. It can run simple event studies to quantify market "edges" all the way to full blown multi-currency, multi-timeframe, multi-strategy portfolio simulations. Check out the documentation here.

Balsam Research, LLC

Balsam Research is an independent consulting firm offering custom solutions for systematic investors. We have extensive experience automating investment processes and running real-time systematic investment programs including fully automated futures trading systems. Contact us to learn more.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Balsam.Charting:

Package Downloads
Balsam.Reporting

Balsam Backtester reporting library for Windows.

Balsam.Backtester.Windows

Backtesting, reporting and charting meta-package for Windows

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.2 127 8/20/2025
1.1.1 127 8/15/2025