Many must be aware that Amibroker Supports sound alerts i.e it can play audio wave formats when you need an alert in your trading system especially during Buy/Sell Trading conditions. But most of us miss the point that it supports female voice alerts too. Amibroker’s internal engine supports text to speech functionality using say() function in AFL. Here is a sample code which produces text to speech based Buy or Sell Alerts.
[wp_ad_camp_5]
In the following sample AFL code, Alert is produced when there is a MACD crossover with the signal line. Try it out!
Example for Voice Alerts in Amibroker
Buy = Cross( MACD(), Signal() );
Sell = Cross( Signal(), MACD() );
Short = Sell;
Cover = Buy;
if (SelectedValue(Buy)==1) Say(“Buy Signal at”+C);
if (SelectedValue(Sell)==1) Say(“Sell Signal at”+C);
Thanks 🙂
Sir u r giving v nice afl but if u hv developed like giving sounds and alerts it would be v nice pls do for all Amibroker Lovers and if possible suggest which time frame is best to use Super Trend
9949082820
Sir good work.. i want code for this thing, ..i am just trying to find out the output for that so please please help me sir to resolve this…please can u mail me code for the following task to my email id ([email protected])
This is my requirement
strategy:
1.buy signal when MACD crosses signal line upword.
2.sell signal when MACD crosses sinal line downword.
filters:
1.ignore first intraday bar or any buy/sell signal, as well as for any calculation it is,
(H-L)>=X%
2.when buy trade is triggered and sell signal has not appeared, square off buy trade when price crosses Y% below current days ‘L’ and vice versa..
Price rule:
Buy above X% of ‘H’ of buy signal and
sell above X% of ‘L’ of sell signal…
Rajan Sir
I want an AFL code to give me an alert when I define the price crossing any levels for a basket of scrips .
Only price crossing alerts.
Such alerts are in built in Amibroker.
these are built in for live data, but how can we do it for EOD?
how to programme amibroker to identify buy or sell signal for any script which r in buy or sell in number of script
I want this voice alert once after the candle is over. How can we do that?
Buy= C>((DayC)+((.236)*(ADM)));
Sell= C<((DayC)-((.236)*(ADM)));
sir in this formula how to add say ?????
if (Buy[BarCount-2]==True)Say(“Buy signal “);
if (Buy[BarCount-1]==True)Say(“Buy signal “);
if (sell[BarCount-2]==True)Say(“sell signal “);
if (sell[BarCount-1]==True)Say(“sell signal “);
I want to set up a scanner which give me buy & sell signal automatically with “voice alert by mentioning the script name”& “text-window pop up with script name & price”…….for example :text-window=> “BUY INFY @965” or “SELL INFY@970” and voice alert will be exact match of “TEXT-WINDOW” pop up………anyone can help me out regarding this……….I will be thankful to him/her……