May 2nd, 2007
I’m playing around with python, and in response to a question from the amibroker list, here is a sample python snippet for using Amibroker Automation Object Model. It seems to work OK for picking the correct watchlist.
AB = win32com.client.Dispatch("Broker.Application")
AA = AB.Analysis;
AA.LoadFormula("C:\\Program Files\\AmiBroker\\Formulas\\test\\rsi_screen.afl")
AA.ClearFilters()
AA.RangeMode = 0 # all quotes
AA.ApplyTo = 2 # use filter
AA.Filter(0,"watchlist", 1) # use watchlist 1
AA.Explore()
AA.Export("C:\\temp\\test_export.csv")
Posted in Uncategorized | No Comments »
April 23rd, 2007
VS2005 SP1 version of Visual C++ Redistributable Package is now available for download from microsoft so I removed it from the amibroker plugin download binary.
Info
Download
Posted in Uncategorized | No Comments »
April 7th, 2007
Here is a free plugin for Amibroker that will allow you to send email alerts directly from Amibroker using SMTP server that support SSL such as google’s gmail.
The source code is also available. This plugin was developed using Microsoft Visual C++ 2005 Express Edition SP1 and tested on windows XP SP2.
Please free to report bugs or contribute any improvements.
UPDATE 2009/03: It took two years, but amibroker now has native ability to send SSL SMTP email, so I have removed the links to the plugin application and source code. If someone is still interested, the plugin and source code are now available at a nominal cost. Email me at the address found at the About->Make a donation link for details.
Posted in amibroker | 17 Comments »