Amibroker / How do i : Price Alert

#1
Hi,

Im new to Amibroker, and use it for its excellent response time to imports (FCharts gives errors if imports are made every 2-3 seconds, Amibroker has my respect).

How do i set price alerts for price going above or below a certain price.. eg

If ABAN goes above 1200 then issue an alert with a pre-defined note on that alert.

Thanks in advance.
 
#2
Hello,

You can use

Alertif Function and use with condition:


Cond=C>1200;
Alertif(Cond,"sound C:\\windows\\media\\chimes.wav","ABAN is above 1200",1);

you can also create Pop Up Alert using Popupwindow command
 
#3
Hi Guys,

Did you by chance have a Price alert AFL ..i am also looking for the same...but i also need an email message to be send when the certain price level breaks...

Appreciate your help.

Vinodh
 

Similar threads