PureBytes Links
Trading Reference Links
|
Thanks Joe, that works very nicely. Now I guess this is reading from
Yahoo Finance database I downloaded using Amiquote, How often does
one have to update Yahoo finance data via Amiquote though?
Thanks
--- In amibroker@xxxxxxxxxxxxxxx, "Joe Landry" <jelandry@xxx> wrote:
>
> These functions will get you fundamental data.
>
> GetFnData("field")
>
> Some of the fields
>
> "OneYearTargetPrice"
> a.. "ReturnOnAssets"
> a.. "ReturnOnEquity"
> a.. "QtrlyRevenueGrowth"
> a.. "GrossProfitPerShare"
> a.. "SalesPerShare"
> a.. "EBITDAPerShare"
> a.. "QtrlyEarningsGrowth"
> a.. "InsiderHoldPercent"
> a.. "InstitutionHoldPercent"
> a.. "SharesShort"
>
> Run this clip in the Automatic Analyzer choosing the watchlist or
filter.
> // Start of Explore Example
> ROE = GetFnData("ReturnOnEquity");
> filter = ROE > 15;
> addcolumn(ROE,"Return on Equity");
>
> HTH
> Joe
>
> ----- Original Message -----
> From: ftstrades
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Monday, February 19, 2007 10:25 PM
> Subject: [amibroker] Exploring fundamental data in AB 4.90
>
>
> I see that I can download fundamental data from Yahoo finance via
> AmiQuote. I dowloaded all the data took a few hours.
> Is there a way to explore stocks say for example stocks with
Return on
> Equity higher than 15 using the explorer? If so how?
> Thanks
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|