cinar / indicator

Indicator is a Golang module providing various stock technical analysis indicators for trading.
GNU Affero General Public License v3.0
477 stars 96 forks source link

Helper function to synchronize multiple indicators #211

Closed cinar closed 3 weeks ago

cinar commented 3 weeks ago

Currently, indicators only provide values after they've collected a full period of data. This makes it difficult to develop strategies based on them because we have to manually synchronize them. We need a helper function to use idle periods for the indicators and synchronize them automatically.

Based on discussion #159 .