TechnicalAnalysis.NET Save Abandoned

Simple use of technical analysis indicators for C#, based on TALib.

Project README

TechnicalAnalysis.NET

Simple use of technical analysis indicators for C#, based on TALib.

using TANet.Core;

decimal[] input = ...;
var result = Indicators.Sma(input, 20);
if (result.Success)
{
    // use result.Ma;
    // use result.IndicatorSignal;
}
else
{
    // show result.Message;
}

You can pass your custom signal logic of indicators (here is the default signal logic for moving averages):

Func<decimal[], decimal[], IndicatorSignal> customSignalLogic = (input, output) =>
     input[input.Length - 1] > output[output.Length - 1] ? IndicatorSignal.Buy :
     input[input.Length - 1] < output[output.Length - 1] ? IndicatorSignal.Sell :
     IndicatorSignal.Stay;
     
var result = Indicators.Sma(input, 20, signalLogic: customSignalLogic);

You can also use the Candle model- it's more clean in indicators that require several inputs:

var result = Indicators.Cci(high, low, close, 14);

var candles = new Candle[] 
{ 
	new Candle { Open = 95, High = 100, Low = 90, Close = 95, ...}, 
	...
}

var resultCandles = Indicators.Cci(candles, 14);

Supported Frameworks

  • netstandard2.0

Installation:

Simply via nuget package manager:

PM> Install-Package TechnicalAnalysis.Net -Version 2.0.0

Or .NET CLI:

> dotnet add package TechnicalAnalysis.Net --version 2.0.0

Implemented Indicators:

  • Aroon
  • AroonOscillator
  • Atr
  • BollingerBands
  • Cci
  • Ema
  • ExtendedMacd
  • Kama
  • Macd
  • Mfi
  • ParabolicSar
  • Rsi
  • Sma
  • Stochastic
  • Tema
  • WilliamsR
  • Wma
Open Source Agenda is not affiliated with "TechnicalAnalysis.NET" Project. README Source: AminSaqi/TechnicalAnalysis.NET

Open Source Agenda Badge

Open Source Agenda Rating