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.
Install / Use
npx skills add facioquo/stock-indicators-dotnetInstalls into whichever agent you are using.
README
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:
Related Skills
node-connect
385.5kDiagnose OpenClaw Android, iOS, or macOS node pairing, QR/setup code, route, auth, and connection failures.
blender-python-addon
40.5kBlender Python add-on rules for operators, panels, properties, registration, testing, and API-safe scripting
flutter-development-guidelines-cursorrules-prompt-file
40.5kCursor rules for Flutter development with MVVM architecture, Riverpod state management, Material widgets, and Dart style guidelines.
commit-push-pr
140.6kCommit, push, and open a PR

