need your help pleas

#1
hi every one
i have amibroker formula but i need to add alert or scan to this formula so it will scan all stock automatically to advise me to sell or buy.
this formula work when i move it manually in (active window)to all stock but i need it as alert or
i set it to scan every certain time ...thanks
attached the formula........
 
Last edited:
#2
#4
thank you kgsirasangi
but still not help
i thank i need to add some formula to be scan
thankxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
For alerts you have to make a seperate afl and put it for automatic analyses and tick-scan every 5 minutes--and then press scan button. Also you should configure scrips tobe scanned etc . Also you should open alert output window under 'view'. Then you will get output.

Presently you have put it in as indicator. This will not do.
Regards.
 
#5
Thank you my friend kgsirasangi
If you don't mined would you do this separate afl for me I have no idea how to do it the formula I posted I just copy it from my friend and I want to improve it.
Once aging thank you for give me time to read my post.
 
#6
Copy the following text as say-- ema 8 30 cross alert.afl --and put file in
amibroker custom directory.


a=EMA(C,8) ;
b=EMA(C,30) ;

Buy = Cross( a,b );
Sell = Cross( b,a );
//Short = Sell;
//Cover = Buy;

AlertIf( Buy, "", "MA cross BUY", 1,1+2 );

AlertIf( Sell, "", "MA cross SELL", 2 ,1+2);

Then open view- alret output.
Then open analyses-automatic analyses window. import above file.---by using 'pick'.
then tick all symbols
fillup from and to dates and tick it
tick --scan every[min]
check--settings to suit your requirements
tick scan
Now you will get outputs.

Regards
 
Last edited:
#7
Hi
Let me repeat what u say
1- i save the formula you write(only) in custom directory.
2- Check alert output
3- i open automatic analyses select the file i save before which has the formula you write -tick all symbols box-fill up from and to dates
5------scan-----------------------
****** it works but give me no result or any symbols to buy or sell******
 
#8
Are you getting results on the same page of automatic analyses?
To check above formula I did as follows
I opened analyses-formula editor --copied above text in it and saved file as ma 8 30 cross alert
it was saved in custom directory as ma 8 30 cross alert.afl
I imported above file in automatic analyses window and after adjusting settings, I pressed scan. Results come on the same automatic analyses screen as buy sell etc.
Results will come in alert output window only in case of fresh data coming in as streaming data as in case of intraday data coming during day time.
Pl check
Regards
 

casoni

Well-Known Member
#9
hi ,
just copy the afl posted & apply in auto analysis...this will scan -explore your database ..posting exploration result also .....
ok..have a nice time
 
Last edited:
#10
casoni,
Thanks for joining in and guiding.

fly2waleed,
Please also click on 'settings' and check and adjust 'periodicity', as per your requirements.
In case, chart is intraday and periodicity is daily, output does not come.

Regards.
 
Last edited:

Similar threads