FacioQuo.Stock.Indicators
3.0.0
Prefix Reserved
dotnet add package FacioQuo.Stock.Indicators --version 3.0.0
NuGet\Install-Package FacioQuo.Stock.Indicators -Version 3.0.0
<PackageReference Include="FacioQuo.Stock.Indicators" Version="3.0.0" />
<PackageVersion Include="FacioQuo.Stock.Indicators" Version="3.0.0" />
<PackageReference Include="FacioQuo.Stock.Indicators" />
paket add FacioQuo.Stock.Indicators --version 3.0.0
#r "nuget: FacioQuo.Stock.Indicators, 3.0.0"
#:package FacioQuo.Stock.Indicators@3.0.0
#addin nuget:?package=FacioQuo.Stock.Indicators&version=3.0.0
#tool nuget:?package=FacioQuo.Stock.Indicators&version=3.0.0
Stock Indicators for .NET
Stock Indicators for .NET is a C# library package that produces financial market technical indicators. Send in historical price bars and get back desired indicators such as moving averages, Relative Strength Index, Stochastic Oscillator, Parabolic SAR, etc. Nothing more.
Build your technical analysis, trading algorithms, machine learning, charting, or other intelligent market software with this library and your own OHLCV price bars sources for equities, commodities, forex, cryptocurrencies, and others.
This
FacioQuo.Stock.IndicatorsNuGet package was formerly namedSkender.Stock.Indicators
Streaming support
v3 introduces comprehensive streaming capabilities for real-time and incremental data processing. Most indicators now support three calculation styles:
- Series - Traditional batch processing for complete historical datasets
- BufferList - Incremental calculations with simple, efficient buffer management
- StreamHub - Real-time processing with observable patterns and state management
Quick example using streaming:
// Create a hub for streaming price bars
BarHub barHub = new();
// Subscribe indicators to the hub
EmaHub emaHub = barHub.ToEma(20);
RsiHub rsiHub = barHub.ToRsi(14);
// Stream bars as they arrive
foreach (Bar bar in liveBars)
{
barHub.Add(bar);
// Access real-time results
EmaResult emaResult = emaHub.Results[^1];
RsiResult rsiResult = rsiHub.Results[^1];
}
Visit our project site for more information:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 is compatible. 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 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. |
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
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 |
|---|---|---|
| 3.0.0 | 35 | 6/23/2026 |
