pine-parser 0.2.1

Parser for Pine Script.
Documentation
1
2
3
4
5
6
7
8
//@version=6

// A wrapped expression enclosed in parentheses (not a call) may also use
// 4-space indentation. The parentheses, not the indentation, group the
// expression across lines.
percentChange = (
    (closeDiff)
    / close[1] * 100  )