2 Star 7 Fork 11

王布衣/engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
movingaverage.go 830 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-12-14 13:17 . 增加增量计算均线的函数
package realtime
import (
"gitee.com/quant1x/gox/num"
"gitee.com/quant1x/pandas/formula"
"gitee.com/quant1x/pandas/stat"
)
// MovingAverage 计算均线范围
func MovingAverage(CLOSE, HIGH, LOW stat.Series, PN int) (ma, half, maMax, maMin stat.Series) {
half = formula.MA(CLOSE, PN-1)
r1Half := formula.REF(half, 1)
maMax = r1Half.Mul(PN - 1).Add(HIGH).Div(PN)
maMin = r1Half.Mul(PN - 1).Add(LOW).Div(PN)
ma = r1Half.Mul(PN - 1).Add(CLOSE).Div(PN)
return ma, half, maMax, maMin
}
// IncrementalMovingAverage 增量计算移动平均线
//
// period 周期数
// previousHalfValue 前period-1的平均值
// price 现价
func IncrementalMovingAverage(previousHalfValue float64, period int, price float64) float64 {
n := float64(period)
sum := previousHalfValue*(n-1) + price
ma := num.Decimal(sum / n)
return ma
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v0.9.1

搜索帮助