I have been working with a new strategy and I have noted that the index numbers for a list in chronological order (ie. oldest bars to newest bars -- index of zero is oldest bar).
Example:
barList = history.getBars(tInstrument, tPeriod, OfferSide.ASK, Filter.ALL_FLATS, from, to);
For indicators that produce arrays, is it correct that the output is in reverse-chronological order (ie: index of zero is most recent bar).
Example:
fractal = indicators.fractal(tInstrument, tPeriod, OfferSide.ASK, barsOnSides, Filter.ALL_FLATS, from, to);
If this is the case, is it correct to assume that lists are in chronological order whereas arrays are in reverse-chronological order?