Hallo Support,
as i am new to Java (MATLAB user), is there a way to extract from a list of Historic bar, all the opens/high/low/close into an array?
// Re-Assign BAR information
double[] bOpen = (double[]) inputBars[0].getOpen();
inputBars is coming into the calculate method of a custom indicator. Any hint/help would be greatly appreciated!
If i cannot "cast" then i'll have to "loop-it-out" into an array, which looks unpleasent, but it might be fast as well...
Pietro