Balsam.AdvancedCharting
1.1.2
dotnet add package Balsam.AdvancedCharting --version 1.1.2
NuGet\Install-Package Balsam.AdvancedCharting -Version 1.1.2
<PackageReference Include="Balsam.AdvancedCharting" Version="1.1.2" />
<PackageVersion Include="Balsam.AdvancedCharting" Version="1.1.2" />
<PackageReference Include="Balsam.AdvancedCharting" />
paket add Balsam.AdvancedCharting --version 1.1.2
#r "nuget: Balsam.AdvancedCharting, 1.1.2"
#:package Balsam.AdvancedCharting@1.1.2
#addin nuget:?package=Balsam.AdvancedCharting&version=1.1.2
#tool nuget:?package=Balsam.AdvancedCharting&version=1.1.2
Balsam Advanced Charting
The Balsam.AdvancedCharting
library works in conjunction with the Balsam.Backtester
to provide data visualization capabilities particularly suited for intraday work. Leveraging the power of SciChart, it is capable of displaying millions of bars with responsive zoom and scrolling.
Usage
var data = BarSeries.Load(@"c:\data\intraday\continuous\@ES.csv");
data.Chart2(); //the Chart2 extension method plots any series
var strat = new SmaCrossover();
strat.RunSimulation(data);
strat.Chart2(); //chart strategies with entry and exit signals
var daily = data.ToDaily(new TimeSpan(17, 0, 0));
//or build a chart with multiple panes from scratch
var cvm = new ChartViewModel();
cvm.Plot(new PlotInstruction { Series = data },
new PlotInstruction { Series = daily.Close.Sma(200), Color = Color.Red },
new PlotInstruction { Series = daily.Close.Rsi(21), Color = Color.Blue, Pane = 1, PaneSize = 33f });
new ChartWindow(cvm).ShowDialog();
This chart displays over six million 1-minute bars alongside a daily moving average and RSI indicator in the bottom pane.
Advanced Charting requires user code to be run without the debugger attached (Ctrl+F5 in Visual Studio). In addition, a dedicated graphics card is recommended for best performance.
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 | Versions 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. |
-
.NETFramework 4.6.2
- Balsam.Backtester (>= 1.1.2)
- SciChart (>= 8.9.0.28766)
- System.Resources.Extensions (>= 9.0.8)
-
net8.0-windows7.0
- Balsam.Backtester (>= 1.1.2)
- SciChart (>= 8.9.0.28766)
- System.Resources.Extensions (>= 9.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.