[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Natural hour Bars



PureBytes Links

Trading Reference Links

Help!!!!

I cannot find the documentation mentioning this, but does anyone know why
plotting "natural hour bars on a 60min bar chart using BMI SP8H plots only the
day session and includes no globex data even though it the symbol includes
globex?

Compare above chart with DSP8H , with natural hours bars selected, and the
bars are identical except for the first bar of the day is different between
the two even though both bars are 10 o'clock AM beginnings and only day
session data is displayed in SP8H?

Also if all natural bars start on the hour why is there a 415pm bar?, with
O,H,L,C all within that 1 minute interval?
 
Setting a filter to exclude this non tradable bar that begins and ends within
a 1 minute interval where entry and or exit would be difficult, with  trade
time to between 930am and 4pm does not seem to stop a trade signal from being
activated on the 415pm bar when the system is supposed to stop any trades
after 4pm

{
inputs:BEGINT(0930),ENDT(1600);
IF TIME >= BEGINT And TIME <= ENDT THEN BEGIN
	Trade logic
end;
}

PS thanks to all who pointed out the need for AND instead of OR in the above
code

LM