DaveSkender / Stock.Indicators

Stock Indicators for .NET is a C# NuGet package that transforms raw equity, commodity, forex, or cryptocurrency financial market price quotes into technical indicators and trading insights. You'll need this essential data in the investment tools that you're building for algorithmic trading, technical analysis, machine learning, or visual charting.

Home Page:https://dotnet.StockIndicators.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

results math utilities

DaveSkender opened this issue · comments

Having the ability to do basic array math (+ - *) between two indicator results, fixed offset values, or % offset values would make some custom indicators simpler to create. Some consideration is needed for windowed or full history date matching to trap any matching problems. See original idea #977 from @jimtollan

  • Add - add two series, fixed amount, or percent offset
  • Subtract
  • Multiply
  • Divide
  • Max / Min (both between indicators and for single series high/low over a lookback)
  • Median

See #1102 for related .Shift() utility, which may also include some sort of universal Ehlers zero-lag option