Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...