OoplesFinance.StockIndicators 1.0.53

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package OoplesFinance.StockIndicators --version 1.0.53
NuGet\Install-Package OoplesFinance.StockIndicators -Version 1.0.53
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OoplesFinance.StockIndicators" Version="1.0.53" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OoplesFinance.StockIndicators --version 1.0.53
#r "nuget: OoplesFinance.StockIndicators, 1.0.53"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OoplesFinance.StockIndicators as a Cake Addin
#addin nuget:?package=OoplesFinance.StockIndicators&version=1.0.53

// Install OoplesFinance.StockIndicators as a Cake Tool
#tool nuget:?package=OoplesFinance.StockIndicators&version=1.0.53

Nuget Nuget (with prereleases) GitHub

.Net Stock Indicator Library

This is a stock indicator library that is completely open source (Apache 2.0 license) and very easy to use. Current version contains 763 stock indicators and I will add more as I get requests for them!

How to use this library

Here is an example to show how easy it is to create indicators using other indicators

var stockData = new StockData(openPrices, highPrices, lowPrices, closePrices, volumes);
var results = stockData.CalculateRelativeStrengthIndex().CalculateMovingAverageConvergenceDivergence();

Here is a simple example calculating default bollinger bands to get you started using the Alpaca C# Api

using Alpaca.Markets;
using OoplesFinance.StockIndicators.Models;
using static OoplesFinance.StockIndicators.Calculations;

const string paperApiKey = "REPLACEME";
const string paperApiSecret = "REPLACEME";
const string symbol = "AAPL";
var startDate = new DateTime(2021, 01, 01);
var endDate = new DateTime(2021, 12, 31);

var client = Environments.Paper.GetAlpacaDataClient(new SecretKey(paperApiKey, paperApiSecret));
var bars = (await client.ListHistoricalBarsAsync(new HistoricalBarsRequest(symbol, startDate, endDate, BarTimeFrame.Day)).ConfigureAwait(false)).Items;
var stockData = new StockData(bars.Select(x => x.Open), bars.Select(x => x.High), bars.Select(x => x.Low), bars.Select(x => x.Close), bars.Select(x => x.Volume), bars.Select(x => x.TimeUtc));

var results = stockData.CalculateBollingerBands();
var upperBandList = results.OutputValues["UpperBand"];
var middleBandList = results.OutputValues["MiddleBand"];
var lowerBandList = results.OutputValues["LowerBand"];

Here is a more advanced example showing how to calculate bollinger bands with full customization and using a custom input of high rather than the default close

var stockData = new StockData(bars.Select(x => x.Open), bars.Select(x => x.High), bars.Select(x => x.Low), 
bars.Select(x => x.Close), bars.Select(x => x.Volume), bars.Select(x => x.TimeUtc), InputName.High);

var results = stockData.CalculateBollingerBands(MovingAvgType.EhlersMesaAdaptiveMovingAverage, 15, 2.5m);
var upperBandList = results.OutputValues["UpperBand"];
var middleBandList = results.OutputValues["MiddleBand"];
var lowerBandList = results.OutputValues["LowerBand"];

It is extremely important to remember that if you use the same data source to calculate different indicators without using the chaining method then you need to clear the data in between each call. We have a great example for this below:

var stockData = new StockData(bars.Select(x => x.Open), bars.Select(x => x.High), bars.Select(x => x.Low), 
bars.Select(x => x.Close), bars.Select(x => x.Volume), bars.Select(x => x.TimeUtc), InputName.High);

var sma = stockData.CalculateSimpleMovingAverage(14);

// if you don't perform this clear method in between then your ema result will be calculated using the sma results
stockData.Clear();

var ema = stockData.CalculateExponentialMovingAverage(14);

For more detailed Alpaca examples then check out my more advanced Alpaca example code

Support This Project

BTC: 36DRmZefJNW82q9pHY1kWYSZhLUWQkpgGq

ETH: 0x7D6e58754476189ffF736B63b6159D2647f74f34

USDC: 0x587Ae0709f45b970992bdD772bF693141D95CAED

DOGE: DF1nsK1nLASzmwHNAfNengBGS4w7bNyJ1e

SHIB: 0xCDe2355212764218355c9393FbE121Ae49B43382

Paypal: https://www.paypal.me/cheatcountry

Patreon: https://patreon.com/cheatcountry

Support or Contact

Email me at cheatcountry@gmail.com for any help or support or to let me know of ways to further improve this library.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on OoplesFinance.StockIndicators:

Repository Stars
alpacahq/alpaca-trade-api-csharp
C# SDK for Alpaca Trade API https://docs.alpaca.markets/
ooples/OoplesFinance.StockIndicators
Largest C# stock indicator library with over 750 to choose from and easiest to use with abilities such as making an indicator out of any other indicator or using any moving average with any indicator.
Version Downloads Last updated
1.0.53 1,217 8/8/2023
1.0.52 141 8/8/2023
1.0.51 236 8/2/2023
1.0.50 1,143 1/2/2023
1.0.49 308 12/19/2022
1.0.48 334 12/7/2022
1.0.47 526 10/10/2022
1.0.46 634 7/26/2022
1.0.45 465 7/19/2022
1.0.44 948 4/21/2022
1.0.43 520 4/3/2022
1.0.42 512 3/17/2022
1.0.41 404 3/17/2022
1.0.40 551 3/3/2022
1.0.39 421 2/26/2022
1.0.38 414 2/23/2022
1.0.37 403 2/23/2022
1.0.36 467 2/19/2022
1.0.35 406 2/19/2022
1.0.34 426 2/12/2022
1.0.33 414 2/11/2022
1.0.32 400 2/10/2022
1.0.31 396 2/10/2022
1.0.30 403 2/10/2022
1.0.29 418 2/8/2022
1.0.28 419 2/7/2022
1.0.27 427 2/5/2022
1.0.26 426 2/4/2022
1.0.25 396 2/2/2022
1.0.24 443 1/31/2022
1.0.23 448 1/29/2022
1.0.22 444 1/27/2022
1.0.21 429 1/26/2022
1.0.20 437 1/25/2022
1.0.19 427 1/21/2022
1.0.18 430 1/20/2022
0.0.17 447 1/18/2022
0.0.16 426 1/17/2022
0.0.15 260 1/16/2022
0.0.14 244 1/15/2022
0.0.13 426 1/14/2022
0.0.12 425 1/13/2022
0.0.11 431 1/12/2022
0.0.10 428 1/11/2022
0.0.9 245 1/10/2022
0.0.8 256 1/9/2022
0.0.7 271 1/9/2022
0.0.6 253 1/8/2022
0.0.5 243 1/7/2022
0.0.4 261 1/6/2022
0.0.3 262 1/6/2022
0.0.2 271 1/5/2022
0.0.1 262 1/3/2022
0.0.1-alpha3 168 12/28/2021
0.0.1-alpha2 150 12/28/2021
0.0.1-alpha1 191 12/21/2021