Hi,
I’m having difficulty formulating a New High New Low Index for US equities using the Market Breadth Module. I’ve formulated the following:
1 day New High New Low Index using the following script
H1 = HIGH() > HIGHESTHIGH(BACKTYPE=DAYS, BARS=1);
L1 = LOW() < LOWESTLOW(BACKTYPE=DAYS, BARS=1);
H1-L1
and
5 day New High New Low Index using the following script
H1=HIGH() > HIGHESTHIGH(BACKTYPE=DAYS, BARS=5);
L1=LOW() < LOWESTLOW(BACKTYPE=DAYS, BARS=5);
H1-L1
However, I’m getting exactly the same index when I formulate them. In addition, it doesn’t look right, too quick to revert to above and below zero.
Other settings I’m using: Date range - last year; Data Timeframe - 1 day; Breadth action - Sum.
Could you please advise where I am going wrong.
Regards,
Damian