To get IEOD Data into Amibroker visit the link below:
http://tinyurl.com/ctzqcsy
It is possible to get email alerts from Amibroker using some simple settings. All you need to know is the port number for the specific email provider you use. Once they are properly configured then it can send mail alerts to the email you mentioned in the settings based on your requirements.
Steps to configure email alerts in Amibroker:-
1. Download SSLAddon for Amibroker and install it.
2. Now open Amibroker. Navigate Tools–>Preferences
3. Select “Alerts” tab in the Preferences window
4. Ensure the following settings for sending alerts to your gmail account:
5. Now finally click the TEST button to get test mail alert to your email. Here is the sample screenshot of the test email alert to my gmail account:
Author of AnalystCalls. Have you checked my most viewed articles on how to download and configure Free EOD, IEOD & Real-time data of NSE, MCX into Amibroker? Here are the details [LINK] .
Join Readers of AnalystCalls by subscribing through email (free) to get the quality articles right into your Inbox [LINK]
p
| You are reading this article on analystcalls.in, Stay tuned for career, Education news, Jobs, Exam Results, Answer keys, Interviews & Job discussions, Stock Market Technical and Trading Analysis and Calls, Latest Trendy News! For regular updates like us on Facebook and Subscribe by Email to get immediate updates. |





Hi Priya,
I was trying to get an email alert through amibroker for a buy signal.I want to get the RSI , close price of a stock delivered through the email.How should i write this line of code ?I tried as follows
AlertIf( Buy, “EMAIL”, “buy “+FullName()+ ” close “+ Close+ ” RSI=”+RSI(),1);
The afl passed without any error and on exploration, it is showing results( ie selecting the stocks that pass the filter criteria). However i am not receiving any email. When i replace the above line with the following code which is the sample code given in the help section of amibroker , i am able to receive the email.
AlertIf( Buy, “EMAIL”, “A sample alert on “+FullName(), 1 );
So i think the settings are correct and something is wrong with my code.
Could you please figure out what is wrong ?
Thanks in advance
Deepak
Hi Deepak, the one line code you gave looks correct.
as you mentioned it is also able to filter. let me check your full code.
Thanks for the prompt reply. I am afraid my code is not much of a code. I know a little bit of programming and just trying out some ideas.Here goes the code
Cond1=RSI(14)<22;
Buy=cond1;
Filter=Cond1;
AlertIf( Buy, "EMAIL", "buy "+FullName()+ " close "+ Close+ " RSI="+RSI(14),1);
AddColumn(C,"price");
AddColumn(RSI(5),"RSI");
Hope you can help.
Deepak
Hi Priya,
I got it ! Only that it took so long for the email to come. Thank you very much. Since it is taking some time for the email to reach , is there a function which retrieves the time at which the condition is fullfilled ? If there is , i can add that too to the email message.
Deepak
At the first glance of your code itself I can understand that there is nothing wrong with that..but as u mentioned that it has not reached your inbox….so i asked full code whether it might have messed up. anyways..finally you got it. great.
well, i didnt ever tried other parameters in that Alertif.. if I come across one such parameter to reduce alert time..I will let you know.
Thanks Priya. I was looking for a function to get the time at which the alert is generated… like the function Fullname() which retrieves the name of the stock in focus. Suppose the alert was generated at ,say, 10.00AM, if i can add this time into the alert email, I will know when the alert was created, even if I receive the email at some time later (like 11AM).
Regards
Deepak