I need indicator to scan new high and new low

hmsanil

Active Member
#1
I need indicator to scan new high and new low for intraday trading

Hi all,

Can anybody share the indicator which scan new highs and new lows for intraday trading

Thanks

Anil
 
Last edited:

Rajvir

Active Member
#3
TimeFrameSet(inDaily);
H1 = HHV(H, 1) ;

H2= (H1-C)< .001*C;

L1 = LLV(L,1) ;


L2 = (C-L1) < .001*C ;

TimeFrameRestore() ;

SetOption("NoDefaultColumns", True);

AddTextColumn(Name(), "Symbol");
AddColumn(DateTime(), "Date", formatDateTime);
AddColumn(C, "CMP", 1.2);


Filter = H2 OR L2 ;


scans stocks which are trading very very close to days Hihg or Days Low. You will get them in advance before they make new high or low
 

hmsanil

Active Member
#9
Hi,

Thanks a lot i got it.

But still can it show individually stocks scanning high and stocks scanning low.

Or can i get indicators separately for

scanning new high

Scanning new low


Thanks

Anil
 
Last edited:

Similar threads