How do I set the hours for the market day? I trade ES and have the following code on my 5 min chart:
dayHH = high(0, inv("D"));
dayLL = low(0, inv("D"));
addBand( dayHH, PS_DOT, 3, Color.green, -10 );
addBand( dayLL, PS_DOT, 3, Color.magenta, -11 );
to show the current day's hign and low. However, today being a Monday, it seems to only show the high and low so far since 9:30 EST, ignoring the pre market data. What do I need to do?
Thanks
dayHH = high(0, inv("D"));
dayLL = low(0, inv("D"));
addBand( dayHH, PS_DOT, 3, Color.green, -10 );
addBand( dayLL, PS_DOT, 3, Color.magenta, -11 );
to show the current day's hign and low. However, today being a Monday, it seems to only show the high and low so far since 9:30 EST, ignoring the pre market data. What do I need to do?
Thanks
Comment