Help needed..9.15 to 10.00 a.m high low exploration afl

#1
Hi all,

I need 9.15 to 10.00 a.m high low exploration afl for amibroker kindly help with code...only high and low values of 45 mins from market open in exploration needed..

thanks in advance...
 
#2
Use this code

tn = TimeNum();
btime = Param ( "Time", 100000, 090000, 240000, 500 );

breakout = Cross(tn,btime); //timenum()
NewDay = Day()!= Ref(Day(), -1);
HDay = HighestSince(newday,H,1);
Lday =LowestSince(newday,L,1);

Plot(HDay,"H",colorred,styeline+stylenorescale);
Plot(LDay,"L",colorgreen,styeline+stylenorescale);
 
#3
hi,

thanks for the code..but i m not getting the 9.15 to 10.00 am high and low values in exploration instead getting daily high low...pls check thanks
 

PUCHU_2500

Well-Known Member
#4
/////////////////////////////////////......................//////////////////
 
Last edited:
#5
Hi,

thanks for your reply. I need highest high and lowest low values from market open 9.15 to 10.00 a.m in ami exploration ..all the code which i tried showing only days high or days low or just that 10.00 a.m crossing high low..but i need only the highest high and lowest low in 45 mins from market open to 10.00 a.m in exploration..pls help
 

Similar threads