Action watch for AB

#1
Hi friends,

With my limited usage with AB, I have not figured out any Action Watch in Amibroker, which can give me list of stocks which are, say, testing day's high or day's low or where volumes is abnormally high. If somebody has used falcon or IRIS, they provide this kind of action watch window.

Would be great help if seniors can suggest how to get the same in AmiBroker.

Thanks.
 
#2
see if this helps-

Vol_para=(100+Param("VP",20,10,300,5))/100;
C1=C>=.99*H;
c2=C<=.99*L ;p=Param("ema period",20,10,500,5);
C3= V>vol_para*EMA(V,p);
Filter=C1 OR C2 OR C3;
AddColumn(C,"close",1.2);
AddColumn(H,"high value",1.2,
IIf(C1,colorOrange,colorDarkGrey));
AddColumn(L,"Low Value",1.2,IIf(C2,colorOrange,colorDarkGrey));
AddColumn(V,"volume",1.2,IIf(C3,colorOrange,colorDarkGrey));
AddColumn(EMA(V,p)," average volume",1.20);

notes: (1)adjust parameter as per the need
(2) in AA window: range-> n last days-> n=1
 
#4
Hello avdhoot

can u pls help me how to do it???


is this a afl or parameter setting ???

can post the screenshot how to do it ??

Thanks is advance

hemal Sutaria
 
#8
see if this helps-

Vol_para=(100+Param("VP",20,10,300,5))/100;
C1=C>=.99*H;
c2=C<=.99*L ;p=Param("ema period",20,10,500,5);
C3= V>vol_para*EMA(V,p);
Filter=C1 OR C2 OR C3;
AddColumn(C,"close",1.2);
AddColumn(H,"high value",1.2,
IIf(C1,colorOrange,colorDarkGrey));
AddColumn(L,"Low Value",1.2,IIf(C2,colorOrange,colorDarkGrey));
AddColumn(V,"volume",1.2,IIf(C3,colorOrange,colorDarkGrey));
AddColumn(EMA(V,p)," average volume",1.20);

notes: (1)adjust parameter as per the need
(2) in AA window: range-> n last days-> n=1
sir,
pl make afl for following condition.
time frame 1 min intraday.
high and low of standard time every halfan hour is to be calculated.
high and low of 9.30-10.00 then 10.01 to 10.30 till mkt ends.
2. buy AERROW when current price cross previous STANDARD HALF AN HOUR HIGH.
3.SELL AERROW WHEN current price cross previous standard half an hour low.
4. bip sound allert with exrem signals removals.
 
#10
sir,
pl make afl for following condition.
time frame 1 min intraday.
high and low of standard time every halfan hour is to be calculated.
high and low of 9.30-10.00 then 10.01 to 10.30 till mkt ends.
2. buy AERROW when current price cross previous STANDARD HALF AN HOUR HIGH.
3.SELL AERROW WHEN current price cross previous standard half an hour low.
4. bip sound allert with exrem signals removals.
dear sramrutia, if you want quick response to your query please open a new thread
 

Similar threads