var study = new ParabolicStudy(0.02, 0.02, 0.2);
function preMain() {
setPriceStudy(true);
setPlotType(PLOTTYPE_SQUAREWAVE,0);
setDefaultBarThickness(1, 0);
setStudyTitle("sar0");
}
function main() {
sar0=study.getValue(ParabolicStudy.STOP);
return sar0;
}
Does the above plot ok on any one elses machine, doesnt seem to want to show up here.
function preMain() {
setPriceStudy(true);
setPlotType(PLOTTYPE_SQUAREWAVE,0);
setDefaultBarThickness(1, 0);
setStudyTitle("sar0");
}
function main() {
sar0=study.getValue(ParabolicStudy.STOP);
return sar0;
}
Does the above plot ok on any one elses machine, doesnt seem to want to show up here.
Comment