exist a close indicator for the last bar???
tnx
tnx
function preMain() {
setPriceStudy(true);
setStudyTitle("LastTrade");
setShowCursorLabel(false);
}
function main() {
var Price = formatPriceNumber(getMostRecentTrade());
drawTextRelative(2,getMostRecentTrade(),"t",Color.blue,null,Text.VCENTER,"Wingdings 3",8,1);
drawTextRelative(4,getMostRecentTrade(), Price, Color.blue,null,Text.VCENTER,"Arial",10,2);
return;
}
Comment