is there an EFS that simply plots price as a study? I just wish to have a simple line chart of price as a study so I can overlay other indicators over it like stochastics and others?
Thanks
Al
Thanks
Al
function preMain() {
setPriceStudy(false);
setStudyTitle("Close");
setCursorLabelName("Close", 0);
setDefaultBarStyle(PS_SOLID, 0);
setDefaultBarFgColor(Color.black, 0);
setDefaultBarThickness(2, 0);
setPlotType(PLOTTYPE_LINE, 0);
}
function main() {
return close();
}
Comment