How many lines can you put in to the cursor window below the standard items
Looks like 15
Is this correct
Looks like 15
Is this correct
function preMain(){
setPriceStudy(true)
}
var myArray = new Array();
function main(){
if(getBarState()==BARSTATE_ALLBARS){
var numberItems = 30;//modify this to set the number of items returned
for (i=1;i<=numberItems;i++){
myArray.unshift(i)
}
}
return myArray;
}
Comment