Skip to content

Stock indicator technical analysis library package for .NET. Send in historical price quotes and get back 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

marcosrioj/Stock.Indicators

 
 

Stock Indicators

NuGet package Nuget build status code coverage CodeQL

Stock.Indicators is a .NET library that produces technical indicators. Send in historical price quotes and get back desired indicators such as moving averages, Relative Strength Index, 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

The compiled library package is Common Language Specification (CLS) compliant and can be used in other programming languages, including Python and everything in the .NET universe.

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

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 historical price quotes and get back 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

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.5%
  • Other 0.5%