Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and 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 Reply

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...