pine-parser 0.2.2

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

type pivotPoint
    int x
    float y

foundPoint = pivotPoint.new(100, 50.5)
xValue = foundPoint.x
yValue = foundPoint.y