Hi prophet,
I don't like using indices, it make code less readable.
I want code to look like EasyLangauge.
I have to possible solutions:
1. Define constants for column indices, i.e:
LOW =5
CLOSE = 6
and then use: data(bar, CLOSE)
OR
2. Use structs, i.e.
data(bar).close >...