Hi everyone,
Is there a way or workaround to check the index of highestCloseValue or lowestCloseValue except iterating over the whole series again and comparing the CLOSE values? I need to know which of the values occurred first in the specific sequence.
Greetings
Is there a way or workaround to check the index of highestCloseValue or lowestCloseValue except iterating over the whole series again and comparing the CLOSE values? I need to know which of the values occurred first in the specific sequence.
Java:
double highestCloseValue = dataSeries.highest(startIndexA, periodX, Enums.BarInput.CLOSE);
double lowestCloseValue = dataSeries.lowest(startIndexA, periodX, Enums.BarInput.CLOSE);
Greetings
Last edited: