2022-03-28 18:01:03 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
rsi implements Relative Strength Index (RSI)
|
|
|
|
|
|
|
|
https://www.investopedia.com/terms/r/rsi.asp
|
|
|
|
*/
|
|
|
|
//go:generate callbackgen -type RSI
|
|
|
|
type RSI struct {
|
|
|
|
types.IntervalWindow
|
|
|
|
Values types.Float64Slice
|
|
|
|
Prices types.Float64Slice
|
|
|
|
PreviousAvgLoss float64
|
|
|
|
PreviousAvgGain float64
|
|
|
|
|
|
|
|
EndTime time.Time
|
|
|
|
UpdateCallbacks []func(value float64)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *RSI) Update(kline types.KLine, priceF KLinePriceMapper) {
|
|
|
|
price := priceF(kline)
|
|
|
|
inc.Prices.Push(price)
|
|
|
|
|
|
|
|
if len(inc.Prices) < inc.Window+1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var avgGain float64
|
|
|
|
var avgLoss float64
|
|
|
|
if len(inc.Prices) == inc.Window+1 {
|
2022-03-28 18:39:35 +00:00
|
|
|
priceDifferences := inc.Prices.Diff()
|
2022-03-28 18:01:03 +00:00
|
|
|
|
2022-04-09 14:46:17 +00:00
|
|
|
avgGain = priceDifferences.PositiveValuesOrZero().Abs().Sum() / float64(inc.Window)
|
|
|
|
avgLoss = priceDifferences.NegativeValuesOrZero().Abs().Sum() / float64(inc.Window)
|
2022-03-28 18:01:03 +00:00
|
|
|
} else {
|
2022-03-28 18:39:35 +00:00
|
|
|
difference := price - inc.Prices[len(inc.Prices)-2]
|
|
|
|
currentGain := math.Max(difference, 0)
|
|
|
|
currentLoss := -math.Min(difference, 0)
|
2022-03-28 18:01:03 +00:00
|
|
|
|
|
|
|
avgGain = (inc.PreviousAvgGain*13 + currentGain) / float64(inc.Window)
|
|
|
|
avgLoss = (inc.PreviousAvgLoss*13 + currentLoss) / float64(inc.Window)
|
|
|
|
}
|
|
|
|
|
|
|
|
rs := avgGain / avgLoss
|
|
|
|
rsi := 100 - (100 / (1 + rs))
|
|
|
|
inc.Values.Push(rsi)
|
|
|
|
|
|
|
|
inc.PreviousAvgGain = avgGain
|
|
|
|
inc.PreviousAvgLoss = avgLoss
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *RSI) Last() float64 {
|
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
return inc.Values[len(inc.Values)-1]
|
|
|
|
}
|
|
|
|
|
2022-04-04 04:14:17 +00:00
|
|
|
func (inc *RSI) Index(i int) float64 {
|
|
|
|
length := len(inc.Values)
|
2022-04-04 09:19:17 +00:00
|
|
|
if length <= 0 || length-i-1 < 0 {
|
2022-04-04 04:14:17 +00:00
|
|
|
return 0.0
|
|
|
|
}
|
2022-04-04 09:19:17 +00:00
|
|
|
return inc.Values[length-i-1]
|
2022-04-04 04:14:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *RSI) Length() int {
|
|
|
|
return len(inc.Values)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ types.Series = &RSI{}
|
|
|
|
|
2022-03-28 18:01:03 +00:00
|
|
|
func (inc *RSI) calculateAndUpdate(kLines []types.KLine) {
|
|
|
|
var priceF = KLineClosePriceMapper
|
|
|
|
|
|
|
|
for _, k := range kLines {
|
2022-04-14 21:43:04 +00:00
|
|
|
if inc.EndTime != zeroTime && !k.EndTime.After(inc.EndTime) {
|
2022-03-28 18:01:03 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
inc.Update(k, priceF)
|
|
|
|
}
|
|
|
|
|
|
|
|
inc.EmitUpdate(inc.Last())
|
|
|
|
inc.EndTime = kLines[len(kLines)-1].EndTime.Time()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *RSI) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
|
|
|
|
if inc.Interval != interval {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
inc.calculateAndUpdate(window)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *RSI) Bind(updater KLineWindowUpdater) {
|
|
|
|
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
|
|
|
|
}
|