I would like to display 2 boxes on one bar.
What have i missed or got wrong.
thanks
Sam
What have i missed or got wrong.
thanks
Sam
function preMain() {
setPriceStudy(true);
}
function main(){
drawTextRelative( 0, AboveBar1, "EE", Color.white, Color.red,
Text.PRESET | Text.BOLD | Text.CENTER , null , 10,"boxA"+rawtime(0) );
drawTextRelative( 0, AboveBar3, "FF", Color.white, Color.green,
Text.PRESET | Text.BOLD | Text.CENTER , null ,10,"boxB"+rawtime(0) );
}
Comment