gpt4 book ai didi

pine-script - 如何在 TradingView 中实现移动平均线?

转载 作者:行者123 更新时间:2023-12-03 23:37:50 24 4
gpt4 key购买 nike

我想实现移动平均线 (MA) TradingView。

已经有一些用于移动平均线的内置函数(如 sma()ema()wma() )。现在我想构建自己的 MA 函数。

你能帮助我吗?
谢谢。

最佳答案

根据manual , sma 标准MA .

The sma function returns the moving average, that is the sum of last y values of x, divided by y. sma(source, length) → series



但是,如果您仍然坚持,他们还会在 pine-script 中向您展示如何操作。 , 像这样:

// same in pine, but much less efficient
pine_sma(x, y) =>
sum = 0.0
for i = 0 to y - 1
sum := sum + x[i] / y
sum
plot(pine_sma(close, 15))

关于pine-script - 如何在 TradingView 中实现移动平均线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46999318/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com