2021-05-21 19:24:09 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2022-08-25 09:31:42 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/datatype/floats"
|
2021-05-21 19:24:09 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
const DPeriod int = 3
|
|
|
|
|
2022-12-13 05:02:38 +00:00
|
|
|
// Stochastic Oscillator
|
|
|
|
// - https://www.investopedia.com/terms/s/stochasticoscillator.asp
|
|
|
|
//
|
|
|
|
// The Stochastic Oscillator is a technical analysis indicator that is used to identify potential overbought or oversold conditions
|
|
|
|
// in a security's price. It is calculated by taking the current closing price of the security and comparing it to the high and low prices
|
|
|
|
// over a specified period of time. This comparison is then plotted as a line on the price chart, with values above 80 indicating overbought
|
|
|
|
// conditions and values below 20 indicating oversold conditions. The Stochastic Oscillator can be used by traders to identify potential
|
|
|
|
// entry and exit points for trades, or to confirm other technical analysis signals. It is typically used in conjunction with other indicators
|
|
|
|
// to provide a more comprehensive view of the security's price.
|
2021-05-21 19:24:09 +00:00
|
|
|
|
2021-05-21 21:52:10 +00:00
|
|
|
//go:generate callbackgen -type STOCH
|
|
|
|
type STOCH struct {
|
2021-05-21 19:24:09 +00:00
|
|
|
types.IntervalWindow
|
2022-08-25 09:31:42 +00:00
|
|
|
K floats.Slice
|
|
|
|
D floats.Slice
|
2021-05-21 19:24:09 +00:00
|
|
|
|
2022-08-25 09:31:42 +00:00
|
|
|
HighValues floats.Slice
|
|
|
|
LowValues floats.Slice
|
2021-05-21 19:24:09 +00:00
|
|
|
|
|
|
|
EndTime time.Time
|
|
|
|
UpdateCallbacks []func(k float64, d float64)
|
|
|
|
}
|
|
|
|
|
2022-04-18 04:08:21 +00:00
|
|
|
func (inc *STOCH) Update(high, low, cloze float64) {
|
|
|
|
inc.HighValues.Push(high)
|
|
|
|
inc.LowValues.Push(low)
|
2021-05-21 19:24:09 +00:00
|
|
|
|
2022-04-18 04:08:21 +00:00
|
|
|
lowest := inc.LowValues.Tail(inc.Window).Min()
|
|
|
|
highest := inc.HighValues.Tail(inc.Window).Max()
|
2021-05-21 19:24:09 +00:00
|
|
|
|
2022-05-13 13:58:35 +00:00
|
|
|
if highest == lowest {
|
|
|
|
inc.K.Push(50.0)
|
|
|
|
} else {
|
|
|
|
k := 100.0 * (cloze - lowest) / (highest - lowest)
|
|
|
|
inc.K.Push(k)
|
|
|
|
}
|
2021-05-21 19:24:09 +00:00
|
|
|
|
|
|
|
d := inc.K.Tail(DPeriod).Mean()
|
|
|
|
inc.D.Push(d)
|
|
|
|
}
|
|
|
|
|
2021-05-21 21:52:10 +00:00
|
|
|
func (inc *STOCH) LastK() float64 {
|
2021-05-21 19:24:09 +00:00
|
|
|
if len(inc.K) == 0 {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
return inc.K[len(inc.K)-1]
|
|
|
|
}
|
|
|
|
|
2021-05-21 21:52:10 +00:00
|
|
|
func (inc *STOCH) LastD() float64 {
|
2021-05-21 19:24:09 +00:00
|
|
|
if len(inc.K) == 0 {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
return inc.D[len(inc.D)-1]
|
|
|
|
}
|
|
|
|
|
2022-07-13 17:12:36 +00:00
|
|
|
func (inc *STOCH) PushK(k types.KLine) {
|
2022-07-20 17:34:35 +00:00
|
|
|
if inc.EndTime != zeroTime && !k.EndTime.After(inc.EndTime) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-13 17:12:36 +00:00
|
|
|
inc.Update(k.High.Float64(), k.Low.Float64(), k.Close.Float64())
|
2022-07-20 17:04:49 +00:00
|
|
|
inc.EndTime = k.EndTime.Time()
|
2022-07-20 17:35:03 +00:00
|
|
|
inc.EmitUpdate(inc.LastK(), inc.LastD())
|
2022-07-20 17:04:49 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 03:29:15 +00:00
|
|
|
func (inc *STOCH) GetD() types.Series {
|
2022-04-08 09:48:33 +00:00
|
|
|
return &inc.D
|
2022-04-04 04:14:17 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 03:29:15 +00:00
|
|
|
func (inc *STOCH) GetK() types.Series {
|
2022-04-08 09:48:33 +00:00
|
|
|
return &inc.K
|
2022-04-04 04:14:17 +00:00
|
|
|
}
|