OoplesFinance.StockIndicators
1.0.51
Prefix Reserved
See the version list below for details.
dotnet add package OoplesFinance.StockIndicators --version 1.0.51
NuGet\Install-Package OoplesFinance.StockIndicators -Version 1.0.51
<PackageReference Include="OoplesFinance.StockIndicators" Version="1.0.51" />
paket add OoplesFinance.StockIndicators --version 1.0.51
#r "nuget: OoplesFinance.StockIndicators, 1.0.51"
// Install OoplesFinance.StockIndicators as a Cake Addin #addin nuget:?package=OoplesFinance.StockIndicators&version=1.0.51 // Install OoplesFinance.StockIndicators as a Cake Tool #tool nuget:?package=OoplesFinance.StockIndicators&version=1.0.51
.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 | Versions 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. |
-
.NETCoreApp 3.1
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.6.1
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.6.2
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.7
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.7.1
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.7.2
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.8
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.1
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
net5.0
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
net6.0
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
-
net7.0
- LinqOptimizer.CSharp (>= 0.7.0)
- MathNet.Numerics (>= 5.0.0)
- System.Net.Http (>= 4.3.4)
- System.ValueTuple (>= 4.5.0)
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 | 2,634 | 8/8/2023 |
1.0.52 | 156 | 8/8/2023 |
1.0.51 | 261 | 8/2/2023 |
1.0.50 | 1,223 | 1/2/2023 |
1.0.49 | 346 | 12/19/2022 |
1.0.48 | 371 | 12/7/2022 |
1.0.47 | 573 | 10/10/2022 |
1.0.46 | 653 | 7/26/2022 |
1.0.45 | 492 | 7/19/2022 |
1.0.44 | 985 | 4/21/2022 |
1.0.43 | 550 | 4/3/2022 |
1.0.42 | 554 | 3/17/2022 |
1.0.41 | 432 | 3/17/2022 |
1.0.40 | 564 | 3/3/2022 |
1.0.39 | 438 | 2/26/2022 |
1.0.38 | 440 | 2/23/2022 |
1.0.37 | 435 | 2/23/2022 |
1.0.36 | 502 | 2/19/2022 |
1.0.35 | 431 | 2/19/2022 |
1.0.34 | 456 | 2/12/2022 |
1.0.33 | 439 | 2/11/2022 |
1.0.32 | 427 | 2/10/2022 |
1.0.31 | 408 | 2/10/2022 |
1.0.30 | 429 | 2/10/2022 |
1.0.29 | 429 | 2/8/2022 |
1.0.28 | 453 | 2/7/2022 |
1.0.27 | 445 | 2/5/2022 |
1.0.26 | 451 | 2/4/2022 |
1.0.25 | 430 | 2/2/2022 |
1.0.24 | 479 | 1/31/2022 |
1.0.23 | 460 | 1/29/2022 |
1.0.22 | 469 | 1/27/2022 |
1.0.21 | 443 | 1/26/2022 |
1.0.20 | 467 | 1/25/2022 |
1.0.19 | 437 | 1/21/2022 |
1.0.18 | 461 | 1/20/2022 |
0.0.17 | 479 | 1/18/2022 |
0.0.16 | 436 | 1/17/2022 |
0.0.15 | 270 | 1/16/2022 |
0.0.14 | 267 | 1/15/2022 |
0.0.13 | 436 | 1/14/2022 |
0.0.12 | 451 | 1/13/2022 |
0.0.11 | 455 | 1/12/2022 |
0.0.10 | 456 | 1/11/2022 |
0.0.9 | 274 | 1/10/2022 |
0.0.8 | 288 | 1/9/2022 |
0.0.7 | 298 | 1/9/2022 |
0.0.6 | 280 | 1/8/2022 |
0.0.5 | 258 | 1/7/2022 |
0.0.4 | 270 | 1/6/2022 |
0.0.3 | 272 | 1/6/2022 |
0.0.2 | 299 | 1/5/2022 |
0.0.1 | 283 | 1/3/2022 |
0.0.1-alpha3 | 184 | 12/28/2021 |
0.0.1-alpha2 | 177 | 12/28/2021 |
0.0.1-alpha1 | 212 | 12/21/2021 |