Venture
You don't need the candlestick indicator to do what you are trying to accomplish. All you need to do is return hlc3() or close(), etc to the chart in a non price study (as shown in the basic example enclosed below).
You may also want to see the SymbolCompareAsNPS_EFS2.efs which is available here
Alex
You don't need the candlestick indicator to do what you are trying to accomplish. All you need to do is return hlc3() or close(), etc to the chart in a non price study (as shown in the basic example enclosed below).
You may also want to see the SymbolCompareAsNPS_EFS2.efs which is available here
Alex
PHP Code:
function preMain(){
setPriceStudy(false);
setCursorLabelName("HLC/3");
}
function main(){
return hlc3();
}
Comment