Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

pine script - Pinescript: Function inside a function

I am trying create three functions inside a main function but am getting syntax error in input in the lines where I am defining these functions.

customFunc() => 
////////
data(x, id) => security(id, mtf_val!="" ? mtf_val : timeframe.period, x)
    getLow(x, y, z, a, id) => 
       ll = y
       v = data(x, id)
       m = v==ll or data(z, id) - v > a*syminfo.mintick
       if v!=ll
           ll := v
       if m
           v := 0.0
       [v,ll]
    getHigh(x, y, z, a, id) => 
       lh = y
       v = data(x, id)
       m = v==lh or v - data(z, id) > a*syminfo.mintick
       if v!=lh
          lh := v
       if m
          v := 0.0
       [v,lh]

Getting syntax error in the 3rd, 4th and 13th line. Where am I going wrong?

question from:https://stackoverflow.com/questions/65898345/pinescript-function-inside-a-function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Pine does not support sub-functions being defined within other functions.
All functions must be defined separately in the global scope.
See Declaring Functions in the user manual.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...