https://github.com/facioquo/stock-indicators-dotnet
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.
https://github.com/facioquo/stock-indicators-dotnet
algorithmic-trading backtesting cryptocurrency forex historical-quotes indicator indicators nuget package quantitative-finance stock stock-analysis stock-indicators stock-market stock-trading technical-analysis technical-indicators
Last synced: 6 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/facioquo/stock-indicators-dotnet
- Owner: facioquo
- License: apache-2.0
- Created: 2019-12-29T05:18:07.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2026-06-30T09:43:02.000Z (17 days ago)
- Last Synced: 2026-06-30T11:12:20.625Z (16 days ago)
- Topics: algorithmic-trading, backtesting, cryptocurrency, forex, historical-quotes, indicator, indicators, nuget, package, quantitative-finance, stock, stock-analysis, stock-indicators, stock-market, stock-trading, technical-analysis, technical-indicators
- Language: C#
- Homepage: https://dotnet.StockIndicators.dev
- Size: 112 MB
- Stars: 1,220
- Watchers: 42
- Forks: 269
- Open Issues: 67
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
- Notice: NOTICE
- Agents: .github/AGENTS.md
Awesome Lists containing this project
README
[](https://dotnet.StockIndicators.dev)
[](https://github.com/facioquo/stock-indicators-dotnet)
[](https://www.nuget.org/packages/FacioQuo.Stock.Indicators)
# Stock Indicators for .NET
**Stock Indicators for .NET** is a C# [library package](https://www.nuget.org/packages/FacioQuo.Stock.Indicators) 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](https://dotnet.stockindicators.dev/guide/#historical-bars) 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:
```csharp
// 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 →](https://dotnet.stockindicators.dev/migration/v3)
Visit our project site for more information:
- [Overview](https://dotnet.stockindicators.dev/)
- [Indicators and overlays](https://dotnet.stockindicators.dev/indicators/)
- [Guide and Pro tips](https://dotnet.stockindicators.dev/guide/)
- [Demo site](https://charts.stockindicators.dev/) (a stock chart)
- [Release notes](https://github.com/facioquo/stock-indicators-dotnet/releases)
- [Discussions](https://github.com/facioquo/stock-indicators-dotnet/discussions)
- [Contributing](https://dotnet.stockindicators.dev/contributing/)