[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] FIELDS for fundamental data



PureBytes Links

Trading Reference Links

Tomasz,

It is nice to be able to import foriegn data into tickers for use as 
foriegn reference from various securities.
I use this to import Historical Market Data, Historical Dividend Data 
and UpComming Dividend Data.

Problem is, I am unable to easily view (In indicator) UpComming Dividend 
Data - Because (obviously)
said security does not have future quotes.

Using the "Ref" function would solve this, But AB does not reference the 
"Foriegn" data's future quotes when
using it.

Is there some way to Link the use of Foriegn to use quotes if they are 
shifted with Ref function?

    ATB
       Michael.


Tomasz Janeczko wrote:

> Hello,
>
> These fields store one value (not array).
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "duke.jones" <Duke.Jones@xxxxxxxxxxxxxxxxxxxxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Saturday, April 16, 2005 7:07 PM
> Subject: Re: [amibroker] FIELDS for fundamental data
>
>
> >
> > Tomasz,
> >
> > Please excuse my ignorance in advance but can these fields store 
> arrays?  For example can I store a series of values tied to a
> > specific symbol like a quantitative score that I import into AB?  I 
> produce a fundamental and quantitative score for the stocks of
> > the major indices and it would be great if I could plot them along 
> with the symbol. For example I would like to plot my values
> > just like you can plot the QRS or EPS Rank values from Quotes Plus 
> per symbol that can be done now.
> >
> > Thanks,
> >
> > Duke Jones, CMT
> >
> > -------Original Message-------
> >> From: "Tomasz Janeczko" <amibroker@xxxxxx>
> >> Subject: Re: [amibroker] FIELDS for fundamental data
> >> Sent: 16 Apr 2005 09:57:19
> >>
> >>  Hello,
> >>
> >>  You can import those fields from CSV files using script 
> (JScript/VBScript)
> >>
> >>  As a starting point you can get the script presented here
> >>  http://www.amibroker.com/newsletter/04-2000.html
> >>
> >>  and just instead of assigning industryid, you can assign value to 
> other stock object properties.
> >>
> >>  Best regards,
> >>  Tomasz Janeczko
> >>  amibroker.com
> >>  ----- Original Message -----
> >>  From: "Graham"
> >>  To:
> >>  Sent: Saturday, April 16, 2005 11:39 AM
> >>  Subject: Re: [amibroker] FIELDS for fundamental data
> >>
> >>  >
> >>  > Sorry if this has been discussed but I have not kept up with 
> this objexts stuff.
> >>  > Can I use it to read data (eg earnings, shares on issue etc) 
> from CSV files.
> >>  > Are there any simple examples me to follow
> >>  >
> >>  > On 4/16/05, Tomasz Janeczko  wrote:
> >>  >>
> >>  >> Hello,
> >>  >>
> >>  >> You should not do this because you will get incorrect 
> backtesting results if you abuse margindeposit / roundlotsize/ ticksize
> >>  >> fields.
> >>  >>
> >>  >> Instead use OLE interface to store values in fields 
> specifically designed for that:
> >>  >>
> >>  >> http://www.amibroker.com/guide/objects.html
> >>  >>
> >>  >> See properties of "stock" object.
> >>  >>
> >>  >> AB = CreateObject("Broker.Application");
> >>  >>
> >>  >> Stock = AB.Stocks( Name() );
> >>  >>
> >>  >> Stock.BookValue = 100; //...your value here...
> >>  >> Stock.NominalValue = 2; // ...your value...
> >>  >> Stock.Alias = "Your Alias"; // ...
> >>  >>
> >>  >> ..plenty of other fields are available...
> >>  >>
> >>  >> Best regards,
> >>  >> Tomasz Janeczko
> >>  >> amibroker.com
> >>  >> ----- Original Message -----
> >>  >> From: "mrmurty"
> >>  >> To:
> >>  >> Sent: Saturday, April 16, 2005 4:07 AM
> >>  >> Subject: [amibroker] FIELDS for fundamental data
> >>  >>
> >>  >> >
> >>  >> >
> >>  >> > May be this can help some, who want to store fundamental data 
> in AB
> >>  >> >
> >>  >> > As there are not enough fields (atleast I donot know), I am using
> >>  >> > unused fields, in my case, for data which I frequently refer.
> >>  >> >
> >>  >> > Moreover I am comfortable with AB Explore for various queries.
> >>  >> > Some of the fields, are as follows: they are self explanatory.
> >>  >> >
> >>  >> > FULLNAME: strtonum(SALES)
> >>  >> > ROUNDLOTSIZE: EQUITY
> >>  >> > MARGINDEPOSIT: NET PROFIT
> >>  >> > TICKSIZE  : BOOK VALUE
> >>  >> > MARKETID(): FACEVALUE (We have a max. of 5,6 denominations)
> >>  >> >
> >>  >> > And with these base data, many derived figures like marketcap,
> >>  >> > PE,EPS  etc  can be had. Literally  these can give some basic
> >>  >> > features.
> >>  >> >
> >>  >> > Afterall we have to survive. AB contains only QP support.
> >>  >> >
> >>  >> > if Any one has any idea of using "POINTVALUE", CODE, WEBID  
> etc..pl
> >>  >> > let me know. Or anyone can have improved and innovative method of
> >>  >> > accomplishing the same.
> >>  >> >
> >>  >> >
> >>  >> > rgds
> >>  >> > Murty
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> > 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
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >> >
> >>  >>
> >>  >>
> >>  >> 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
> >>  >>
> >>  >>
> >>  >>
> >>  >>
> >>  >>
> >>  >
> >>  >
> >>  > --
> >>  > Cheers
> >>  > Graham
> >>  > http://e-wire.net.au/~eb_kavan/ <http://e-wire.net.au/%7Eeb_kavan/>
> >>  >
> >>  >
> >>  >
> >>  > 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
> >>  >
> >>  >
> >>  >
> >>  >
> >>  >
> >>  >
> >>  >
> >>  >
> >>
> >>  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/
> >>  To unsubscribe from this group, send an email to:
> >>  amibroker-unsubscribe@xxxxxxxxxxxxxxx
> >>  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
> > -------Original Message-------
> >
> >
> >
> > 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
> >
> >
> >
> >
> >
> >
> >
> >
>
>
>
> 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/
>        
>     * To unsubscribe from this group, send an email to:
>       amibroker-unsubscribe@xxxxxxxxxxxxxxx
>       <mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>        
>     * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>       Service <http://docs.yahoo.com/info/terms/>.
>
>



------------------------ Yahoo! Groups Sponsor --------------------~--> 
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~-> 

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/

<*> 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/