SNAPSHOT
Jason, here's the opening price line which starts at 6:29:50.
Jason, here's the opening price line which starts at 6:29:50.
var vPrice = null;
function main(vTime,vSource,vColor,vThick,vValue1){ //here add vValue2, vValue3, etc in the parenth
if (getDay(0) != getDay(-1)) vPrice = null; // reset at each new day
if(vPrice == null && getHour() * 100 + getMinute() >= 630){
vPrice = eval(vSource);
clearLineTool(LineTool.RAY);
addLineTool(LineTool.RAY,getCurrentBarIndex(),vPrice,getCurrentBarIndex()+1,vPrice,vThick,vColor,"Line1");
}
return;
}
Comment