I have a very simple trading idea and would like to be able to back test it.
Where can I get some info on writing the needed formula.
Bruce
Where can I get some info on writing the needed formula.
Bruce
if (vTrend == null) {
if (study.getValue(ParabolicStudy.STOP,-1) >= high(-1)) vTrend = "Down";
if (study.getValue(ParabolicStudy.STOP,-1) <= low(-1)) vTrend = "Up";
}
Comment