pine-parser 0.2.1

Parser for Pine Script.
Documentation
1
2
3
4
5
6
7
8
9
type InfoLabel
    int x
    int y

method set(InfoLabel this, int x = na, int y = na) =>
    if not na(x)
        this.x := x
    if not na(y)
        this.y := y