Well, let me step back a bit:

First, i use Amiquote (http://www.amibroker.com/devlog/index.php?
s=fundamental) to retrieve daily price/vol information for a bunch 
of publicly traded tickers.

Second, i use Amiquote to retrieve fundamental and extended 
fundamental information (shows up in the "symbol information" tab 
(alt, view, symbol information).

Third, the "plan" i outlined below, is to take that information 
from "symbol information" using GetFnData 
(http://www.amibroker.com/devlog/2006/06/08/amibroker-4810-beta-
released/) and then re-write that information to a new symbol.  (it 
overwrites all prior dates with that information, however, and thats 
the thing i'm hoping others can help with)

Fourth, i use Automatic Analysis "explore" to show that information 
tabularly (or i could show it in an indicator/chart).

I hope that helps.


--- In amibroker@yahoogroups.com, malc fiveeightninenine 
<[EMAIL PROTECTED]> wrote:
>
> How did you get fundamental data from yahoo into an amibroker 
database in the first place?
> 
> cdepuy <[EMAIL PROTECTED]> wrote: I am trying to save fundamental 
information to non-traded tickers to 
> create a database for later analysis.  The approach I have 
outlined 
> below is to use AddToComposite to "store" various fundamentals 
each 
> day.  This code, instead of storing today's data for today's date 
> only, is storing today's fundy data for all prior dates.  This of 
> course wipes our prior fundamental data so that trends cannot be 
> interpreted.
> 
> My quesiton is:  does anyone know how to make ATC only store the 
> retrieved info today from Yahoo into only today's date using ATC?
> 
> Here is the code the I run in AA/Scan:
> 
> AddToComposite(GetFnData("SharesShort"            ),"S_"+Name
(),"O");
> AddToComposite(GetFnData("SharesShortPrevMonth"   ),"S_"+Name
(),"C");
> Buy=0;
> Sell=0;
> 
> Then to display, here is what i run in AA/Explore:
> 
> 
> Filter=1;
> AddColumn(O,"SharesShort",1.2);
> AddColumn(C,"SharesShortPrevMonth",1.2);
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 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 other support material please check also:
> http://www.amibroker.com/support.html
> 
>  
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>               
> ---------------------------------
> Get your email and more, right on the  new Yahoo.com
>







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 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:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to