Skip to content

Stock indicator technical analysis library package for .NET. Send in price quote history and get back the desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning,…

License

Notifications You must be signed in to change notification settings

xiangsxuan/Stock.Indicators

 
 

Repository files navigation

Stock Indicators

NuGet package Nuget build status code coverage CodeQL

Skender.Stock.Indicators is a .NET library that produces stock indicators. Send in historical price quotes and get back desired technical indicators (such as moving average, relative strength, stochastic oscillator, parabolic SAR, etc). Nothing more.

It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this community library.

Explore more information:

Samples

image

Example usage

using Skender.Stock.Indicators;

[..]  // prerequisite: get quote history from your own source

// example: get 20-period simple moving average
IEnumerable<SmaResult> results = Indicator.GetSma(history,20);

See the guide and the full list of indicators and overlays for more information.

Frameworks targeted

  • .NET 5.0
  • .NET Core 3.1
  • .NET Standard 2.0, 2.1
  • .NET Framework 4.6.1

Contributing

This NuGet package is an open-source community project. If you want to report bugs or contribute fixes, new indicators, or new features, please review our contributing guidelines and the backlog.

License

This repository uses the standard Apache 2.0 open-source license. Please review the license before using or contributing to the software.

Contact us

Start a new feature discussion, ask a question, or submit an issue if it is publicly relevant. You can also direct message @daveskender.

About

Stock indicator technical analysis library package for .NET. Send in price quote history and get back the desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning,…

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.9%
  • HTML 0.1%