PureBytes Links
Trading Reference Links
|
File is
http://groups.yahoo.com/group/amibroker/files/rmaAFLObj.zip
I have reattached an AFL Commentary file to test the installed data. I
tested it by unzipping, running setup and placing the file in the
../AmiBroker/Plugins directory - the button to run the setup is the big
icon/picture thingy at the left of the setup screen - I generally can't
locate it. The attached Commentary should return the estimated earnings
date:
//--------------------------------------------------------------------------
----------------------
// Created Richard Alford
// April 24th, 2002 - requires rmaAFLObjects.dll in .../AmiBroker/Plugins
directory
// Queries Yahoo for earnings date, parses html and reports the date.
rmaObj = CreateObject("rmaAFLObjects.EstEarnDate");
Name() + " Estimated Earnings Date: " + rmaObj.EarningsDate(Name());
//--------------------------------------------------------------------------
----------------------
Best wishes,
Richard
// Created Richard Alford ralford@xxxx
// April 24th, 2002 - requires rmaAFLObjects.dll in .../AmiBroker/Plugins directory
// Queries Yahoo for earnings date, parses html and reports the date.
rmaObj = CreateObject("rmaAFLObjects.EstEarnDate");
Name() + " Estimated Earnings Date: " + rmaObj.EarningsDate(Name());
|