Skip to content

facioquo/stock-indicators-dotnet

image

GitHub Stars NuGet package

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.Indicators NuGet package was formerly named Skender.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];
}

Migrate to v3 →

Visit our project site for more information:

About

Stock Indicators for .NET is a C# NuGet package that transforms raw equity, commodity, forex, or cryptocurrency financial market price quotes into technical indicators and trading insights. You'll need this essential data in the investment tools that you're building for algorithmic trading, technical analysis, machine learning, or visual charting.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

1.2k stars

Watchers

42 watching

Forks

Packages

 
 
 

Contributors