vicsharp-shibusa / kyna

Open source stock data collection and analysis.
MIT License
2 stars 1 forks source link

Moving Averages #28

Closed vicsharp-shibusa closed 6 months ago

vicsharp-shibusa commented 7 months ago

As a starting point for trend creation, we need both simple and exponential moving averages.

This should be part of chart creation - you would get to the moving average via the chart.

We need to be able to define:

  1. The period (10-day, 21-day, etc.)
  2. The type (simple or exponential)

The creation of moving averages should probably occur in the ChartFactory when the chart is created.

vicsharp-shibusa commented 6 months ago

MVP for this is complete.