Can one code in an efs to change the size of a shape. Or are the shapes set to a fixed size?
Fibbgann
Fibbgann
function preMain() {
setPriceStudy(true);
setStudyTitle("");
setShowCursorLabel(false);
}
function main() {
drawTextRelative(1,getMostRecentTrade(),"ç",Color.blue,null,Text.VCENTER|Text.BOLD,"Wingdings",12,1);
drawTextRelative(0,high(),"l",Color.lime,null,Text.CENTER|Text.BOTTOM|Text.BOLD,"Wingdings",10,2);
drawTextRelative(0,low(),"Ú",Color.red,null,Text.CENTER|Text.TOP|Text.BOLD,"Wingdings",18,3);
return;
}
Comment