Hi I went through the webpage you suggested a while ago. And I couldn't find what I was looking for. I understand that page just contains examples and there's no way that you can cover all indicators out there.
I tested the ichimoku methods and dump out the data in arrays as as history tester is running. I tried to match the values in array to what I see on the graphical representation of ichimoku. they did not match.
here's my simple code to dump of the result
public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {
if (instrument == Instrument.EURUSD && period == Period.THIRTY_MINS){
double [] result = new double [7];
result = indicators.ichimoku(instrument, period, OfferSide.ASK, 9, 26, 52, 0);
for (int i=0; i < 7; i++)
console.getOut().println("element " + i + " is [" + result[i] + "]");
}
}