Conversion Issue Pine script Version 2 to Version 5

huangapple go评论75阅读模式
英文:

Conversion Issue Pine script Version 2 to Version 5

问题

我找到了这段 Pine Script 版本 2 的代码;在第 9 行中声明了变量 k,它在同一行引用了自己!不知道如何转换这段代码;我会非常感激任何帮助。谢谢。

  1. //@version=2
  2. study("Pseudo Polynomial Channel",overlay=true)
  3. length = input(14),morph = input(0.9,minval=0,maxval=1),mult = input(1.),flatten = input(1.)
  4. //----
  5. x = n
  6. y = close
  7. m(a,b) =>
  8. p = morph * a + (1-morph) * b
  9. k = nz(m(k[length],y),y) + (x-x[length])/(x[length*2]-x[length]) * (nz(m(k[length*2],y),y) -
  10. nz(m(k[length],y),y))/flatten
  11. k1 = sma(k,length)
  12. er = cum(abs(y-k1))/n * mult
  13. //----
  14. a = k1 + er
  15. b = k1 - er
  16. //----
  17. A = plot(a,color=#2196f3,linewidth=2,transp=0)
  18. plot(k1,color=#e65100,linewidth=2,transp=0)
  19. B = plot(b,color=#ff1100,linewidth=2,transp=0)
  20. fill(A,B,#2196f3,transp=95)

请注意,这段代码是 Pine Script 版本 2 的,如果需要将其转换为其他版本,可能需要进行一些适应性的修改。

英文:

I found this pine script Version 2 code; in line 9 of the code variable k is declared it references itself on same line! don't know how to convert this code; I would really appreciate any help. Thank You.

  1. //@version=2
  2. study("Pseudo Polynomial Channel",overlay=true)
  3. length = input(14),morph = input(0.9,minval=0,maxval=1),mult = input(1.),flatten = input(1.)
  4. //----
  5. x = n
  6. y = close
  7. m(a,b) =>
  8. p = morph * a + (1-morph) * b
  9. k = nz(m(k[length],y),y) + (x-x[length])/(x[length*2]-x[length]) * (nz(m(k[length*2],y),y) -
  10. nz(m(k[length],y),y))/flatten
  11. k1 = sma(k,length)
  12. er = cum(abs(y-k1))/n * mult
  13. //----
  14. a = k1 + er
  15. b = k1 - er
  16. //----
  17. A = plot(a,color=#2196f3,linewidth=2,transp=0)
  18. plot(k1,color=#e65100,linewidth=2,transp=0)
  19. B = plot(b,color=#ff1100,linewidth=2,transp=0)
  20. fill(A,B,#2196f3,transp=95)

答案1

得分: 0

只需要首先定义它,然后使用 := 运算符赋予新值。

  1. k = 0.0
  2. k := nz(m(k[length],y),y) + (x-x[length])/(x[length*2]-x[length]) * (nz(m(k[length*2],y),y) - nz(m(k[length],y),y))/flatten
英文:

You just need to define it first then assign the new value with the := operator.

  1. k = 0.0
  2. k := nz(m(k[length],y),y) + (x-x[length])/(x[length*2]-x[length]) * (nz(m(k[length*2],y),y) -
  3. nz(m(k[length],y),y))/flatten

huangapple
  • 本文由 发表于 2023年5月21日 00:47:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/76296324.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定