I dont know much about efs so this is probably dumb question.
All I'd like to do is plot a simple histogram showing the value for (close -open) for each bar. The code I have is below but nothing plots:
var thisbar = (close-open);
function preMain(){
setStudyTitle("thisbar");
setPlotType(PLOTTYPE_HISTOGRAM);
}
function main(){
return thisbar;
}
What am I doing wrong/ not doing?
All I'd like to do is plot a simple histogram showing the value for (close -open) for each bar. The code I have is below but nothing plots:
var thisbar = (close-open);
function preMain(){
setStudyTitle("thisbar");
setPlotType(PLOTTYPE_HISTOGRAM);
}
function main(){
return thisbar;
}
What am I doing wrong/ not doing?
Comment