pine-parser 0.1.0

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

// Nested calls wrapped across lines: closing the inner parenthesis does not end
// the outer call's line. The whole expression is one logical line regardless of
// the varied indentation at each level.
x = f(
    g(
        1
    ),
    2
)