2022-06-16 03:56:47 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Refer: https://www.investopedia.com/terms/d/dmi.asp
|
|
|
|
// Refer: https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/trend/adx.py
|
|
|
|
//
|
|
|
|
// Directional Movement Index
|
2022-12-13 05:02:38 +00:00
|
|
|
//
|
|
|
|
// The Directional Movement Index (DMI) is a technical analysis indicator that is used to identify the direction and strength of a trend
|
|
|
|
// in a security's price. It was developed by J. Welles Wilder and is based on the concept of the +DI and -DI lines, which measure the strength
|
|
|
|
// of upward and downward price movements, respectively. The DMI is calculated by taking the difference between the +DI and -DI lines, and then
|
|
|
|
// smoothing the result using a moving average. This resulting line is called the Average Directional Index (ADX), and is used to identify whether
|
|
|
|
// a security is trending or not. If the ADX is above a certain threshold, typically 20, it indicates that the security is in a strong trend,
|
|
|
|
// and if it is below that threshold it indicates that the security is in a sideways or choppy market. The DMI can be used by traders to confirm
|
|
|
|
// the direction and strength of a trend, or to identify potential entry and exit points for trades.
|
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
//go:generate callbackgen -type DMI
|
|
|
|
type DMI struct {
|
|
|
|
types.IntervalWindow
|
2022-07-14 02:54:46 +00:00
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
ADXSmoothing int
|
|
|
|
atr *ATR
|
2022-06-29 12:49:02 +00:00
|
|
|
DMP types.UpdatableSeriesExtend
|
|
|
|
DMN types.UpdatableSeriesExtend
|
2022-06-16 03:56:47 +00:00
|
|
|
DIPlus *types.Queue
|
|
|
|
DIMinus *types.Queue
|
2022-06-29 12:49:02 +00:00
|
|
|
ADX types.UpdatableSeriesExtend
|
2022-06-16 03:56:47 +00:00
|
|
|
PrevHigh, PrevLow float64
|
2022-07-14 02:54:46 +00:00
|
|
|
|
|
|
|
updateCallbacks []func(diplus, diminus, adx float64)
|
2022-06-16 03:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *DMI) Update(high, low, cloze float64) {
|
|
|
|
if inc.DMP == nil || inc.DMN == nil {
|
2022-06-16 10:05:33 +00:00
|
|
|
inc.DMP = &RMA{IntervalWindow: inc.IntervalWindow, Adjust: true}
|
|
|
|
inc.DMN = &RMA{IntervalWindow: inc.IntervalWindow, Adjust: true}
|
|
|
|
inc.ADX = &RMA{IntervalWindow: types.IntervalWindow{Window: inc.ADXSmoothing}, Adjust: true}
|
2022-06-16 03:56:47 +00:00
|
|
|
}
|
2022-07-14 02:54:46 +00:00
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
if inc.atr == nil {
|
|
|
|
inc.atr = &ATR{IntervalWindow: inc.IntervalWindow}
|
|
|
|
inc.atr.Update(high, low, cloze)
|
|
|
|
inc.PrevHigh = high
|
|
|
|
inc.PrevLow = low
|
|
|
|
inc.DIPlus = types.NewQueue(500)
|
|
|
|
inc.DIMinus = types.NewQueue(500)
|
|
|
|
return
|
|
|
|
}
|
2022-07-14 02:54:46 +00:00
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
inc.atr.Update(high, low, cloze)
|
|
|
|
up := high - inc.PrevHigh
|
|
|
|
dn := inc.PrevLow - low
|
|
|
|
inc.PrevHigh = high
|
|
|
|
inc.PrevLow = low
|
|
|
|
pos := 0.0
|
|
|
|
if up > dn && up > 0. {
|
|
|
|
pos = up
|
|
|
|
}
|
|
|
|
|
|
|
|
neg := 0.0
|
|
|
|
if dn > up && dn > 0. {
|
|
|
|
neg = dn
|
|
|
|
}
|
|
|
|
|
|
|
|
inc.DMP.Update(pos)
|
|
|
|
inc.DMN.Update(neg)
|
2022-06-16 10:05:33 +00:00
|
|
|
if inc.atr.Length() < inc.Window {
|
|
|
|
return
|
|
|
|
}
|
2023-05-31 11:35:44 +00:00
|
|
|
k := 100. / inc.atr.Last(0)
|
|
|
|
dmp := inc.DMP.Last(0)
|
|
|
|
dmn := inc.DMN.Last(0)
|
2022-06-16 03:56:47 +00:00
|
|
|
inc.DIPlus.Update(k * dmp)
|
|
|
|
inc.DIMinus.Update(k * dmn)
|
2022-06-16 10:05:33 +00:00
|
|
|
dx := 100. * math.Abs(dmp-dmn) / (dmp + dmn)
|
2022-06-16 03:56:47 +00:00
|
|
|
inc.ADX.Update(dx)
|
2022-06-16 10:05:33 +00:00
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 12:49:02 +00:00
|
|
|
func (inc *DMI) GetDIPlus() types.SeriesExtend {
|
2022-06-16 03:56:47 +00:00
|
|
|
return inc.DIPlus
|
|
|
|
}
|
|
|
|
|
2022-06-29 12:49:02 +00:00
|
|
|
func (inc *DMI) GetDIMinus() types.SeriesExtend {
|
2022-06-16 03:56:47 +00:00
|
|
|
return inc.DIMinus
|
|
|
|
}
|
|
|
|
|
2022-06-29 12:49:02 +00:00
|
|
|
func (inc *DMI) GetADX() types.SeriesExtend {
|
2022-06-16 03:56:47 +00:00
|
|
|
return inc.ADX
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *DMI) Length() int {
|
|
|
|
return inc.ADX.Length()
|
|
|
|
}
|
|
|
|
|
2022-07-13 16:41:20 +00:00
|
|
|
func (inc *DMI) PushK(k types.KLine) {
|
|
|
|
inc.Update(k.High.Float64(), k.Low.Float64(), k.Close.Float64())
|
|
|
|
}
|
|
|
|
|
2022-07-14 02:28:53 +00:00
|
|
|
func (inc *DMI) CalculateAndUpdate(allKLines []types.KLine) {
|
2022-07-14 02:54:46 +00:00
|
|
|
last := allKLines[len(allKLines)-1]
|
|
|
|
|
2022-06-16 03:56:47 +00:00
|
|
|
if inc.ADX == nil {
|
|
|
|
for _, k := range allKLines {
|
2022-07-13 16:41:20 +00:00
|
|
|
inc.PushK(k)
|
2023-05-31 11:35:44 +00:00
|
|
|
inc.EmitUpdate(inc.DIPlus.Last(0), inc.DIMinus.Last(0), inc.ADX.Last(0))
|
2022-06-16 03:56:47 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-07-14 02:54:46 +00:00
|
|
|
inc.PushK(last)
|
2023-05-31 11:35:44 +00:00
|
|
|
inc.EmitUpdate(inc.DIPlus.Last(0), inc.DIMinus.Last(0), inc.ADX.Last(0))
|
2022-06-16 03:56:47 +00:00
|
|
|
}
|
|
|
|
}
|