Why we need it?
A lot of us migrate to Ducascopy from Metatrader. We studied mql well, but have around zero exp in java

mql converter works, but it's ugly and noway to get converted code

Custom indicator subforum closed, but there no way to get help in JStore. Its store and no more.
VisualJforex has no ability to develope indicators

WiKi pages is helpless

BUT we NEED to build new custom indicators.
I propose to ask here question about custom indicators build only.
Some questions
In API some indicators use
private double[][] inputs = new double[1][];
new InputParameterInfo("Price", InputParameterInfo.Type.DOUBLE)
another one
private double[][][] inputs = new double[1][][];
new InputParameterInfo("Price", InputParameterInfo.Type.PRICE)
What is better and why?
also the same situation with main cycle
int i, k;
for (i = 1, k = dtenkanMaxResult.getNumberOfElements(); i < k; i++) {
and
int i, j;
for (i = startIndex, j = 0; i <= endIndex; i++, j++) {
Which way is better?