SimpleScript
New member
The idea is to drawing the box around the overnight session, and another box to highlight the Europe or London session, to allow easy visual identification/exchange attribution for any identified support/resistance areas. Want this to work on any Intraday aggregation.
did a bunch of poking around tonite, and what Im thinking might work is to
1) input the start and stop times for the sessions (these below are just examples)
input EUOpen = 0100;
input RTHOpen = 0900;
input RTHClose = 1600;
input AsiaOpen = 1800;
2) use conditional logic to then allow addcloud to paint the boxes to the high and lo of those periods
am I on the right track here?
is there a better way to get RTH/ETH/exchange market hours?
do I need to use secondstilltime? to set the desired range?
what's the best way to capture the max hi and low for that specified time period? use High or HighestAll functions?
TIA
did a bunch of poking around tonite, and what Im thinking might work is to
1) input the start and stop times for the sessions (these below are just examples)
input EUOpen = 0100;
input RTHOpen = 0900;
input RTHClose = 1600;
input AsiaOpen = 1800;
2) use conditional logic to then allow addcloud to paint the boxes to the high and lo of those periods
am I on the right track here?
is there a better way to get RTH/ETH/exchange market hours?
do I need to use secondstilltime? to set the desired range?
what's the best way to capture the max hi and low for that specified time period? use High or HighestAll functions?
TIA