PureBytes Links
Trading Reference Links
|
Hi,
Still, you can access these fields using OLE automation.
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: "Peter Gialames" <investor@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, July 30, 2001 6:02 AM
Subject: RE: [amibroker] Re: QP2 Fundamental Data
> Nick,
>
> AFIK AmiBroker does not have any import fields for Fundamentals, so Import
> wouldn't work.
>
> Peter Gialames
>
> -----Original Message-----
> From: NIck Iacovelli [mailto:nickhere@x...]
> Sent: Sunday, July 29, 2001 6:53 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] Re: QP2 Fundamental Data
>
>
> I am not sure on what you are doing to get the data imported into ami
> have you check out the import feature
> maybe you can create a import format that will read the FA.
> that what AMI enhancer uses and it faster than putting it in thru afl.
> Nick
>
>
> At 05:33 PM 7/29/2001 -0400, you wrote:
> >Hello Tomasz,
> >
> >I don't know why there is a performance penalty with AmiBroker. I know
> that
> >I can access this data in milliseconds through Excel VBA (and VB - I bought
> >6.0). I can send you this code (Excel Spreadsheet) if you like.
> >
> >I am trying to see the performance problem you are talking about but I
> >cannot get the script you posted to work, I keep getting errors (see
> >attached & I sent you a bug report). The errors are in the following
> lines:
> >
> >column0 = Float;
> >column1 = EPS;
> >column2 = ROE;
> >column3 = Dividend;
> >
> >Like I said in a prior email, I work primarily with the DLL, but that is
> not
> >accessible in scripting languages. I am very familiar with the COM add-in
> >though (I did testing between the two). One item that might cause the
> >problem is the COM add-in loads 'all data available' for each symbol. This
> >is one of the reasons I stuck with the DLL - you can specify the amount of
> >data to load (number of days to load).
> >
> >Gary Lyben (Quotes Plus Owner) said that he is going to add the ability to
> >limit the amount of data loaded in the next update to the COM add-in ...
> but
> >there was no date specified.
> >
> >You can drop Gary an email if you wish (gary@xxxx), although he
> >has not answered any of my private emails lately (not very typical of their
> >tech support). I will help as much as I can.
> >
> >Peter Gialames
> >
> >-----Original Message-----
> >From: Tomasz Janeczko [mailto:amibroker@x...]
> >Sent: Sunday, July 29, 2001 4:41 PM
> >To: amibroker@xxxxxxxxxxxxxxx
> >Subject: Re: [amibroker] Re: QP2 Fundamental Data
> >
> >
> >Peter,
> >
> >I guess you talked a lot with QP2 people, do they have any hint
> >about improving the speed of accessing fundamental data?
> >
> >The problem might be with that, that I create the instance
> >of the QP2 object for every stock in the script, but it really
> >should not have THIS performance penalty.
> >
> >Best regards,
> >Tomasz Janeczko
> >===============
> >AmiBroker - the comprehensive share manager.
> ><http://www.amibroker.com>http://www.amibroker.com
> >
> >
> >----- Original Message -----
> >From: "Tomasz Janeczko" <amibroker@xxxx>
> >To: <amibroker@xxxxxxxxxxxxxxx>
> >Sent: Sunday, July 29, 2001 10:24 PM
> >Subject: Re: [amibroker] Re: QP2 Fundamental Data
> >
> >
> > > Hello,
> > >
> > > Here comes a working example (exploration mode only) in AFL/ JScript:
> > >
> > > EnableScript("jscript");
> > >
> > > filter = cum( 1 ) == lastvalue( cum( 1 ) );
> > > // this is to show only one entry per stock
> > >
> > > ticker = name();
> > > numcolumns = 4;
> > >
> > > <%
> > > CInfo = new ActiveXObject("QuotesPlus.CompanyInfo");
> > > CInfo.Symbol = AFL("ticker");
> > >
> > > AFL("Float") = Number( CInfo.Float() );
> > > AFL("EPS") = Number( CInfo.TTMEPS() );
> > > AFL("ROE") = Number( CInfo.ROE() );
> > > AFL("Dividend") = Number( CInfo.AnnualDividend() );
> > > %>
> > >
> > > column0 = Float;
> > > column0name = "Float";
> > > column1 = EPS;
> > > column1name = "TTM EPS";
> > > column2 = ROE;
> > > column2name = "ROE";
> > > column3 = Dividend;
> > > column3name = "Dividend";
> > >
> > > ------------
> > > Note it seems that QP2 object is very slow in accessing company info
> data.
> > >
> > > Best regards,
> > > Tomasz Janeczko
> > > ===============
> > > AmiBroker - the comprehensive share manager.
> > > <http://www.amibroker.com>http://www.amibroker.com
> > >
> > > ----- Original Message -----
> > > From: "Peter Gialames" <investor@xxxx>
> > > To: <amibroker@xxxxxxxxxxxxxxx>
> > > Sent: Sunday, July 29, 2001 9:26 PM
> > > Subject: [amibroker] Re: QP2 Fundamental Data
> > >
> > >
> > > > Steve,
> > > >
> > > > I am not that good with VBScript (yet?) and most of my work is with
> > > > the QP DLL (you can't use DLL's with VBScript ... I think), but you
> > > > should can use the COM add-in supplied by Quotes Plus to get what you
> > > > want(you use CreateObject("Projectname.Classname")).
> > > >
> > > > Once I find out how to 'hack' this I will let the list know ...
> > > > although Tomasz might be able to help faster.
> > > >
> > > > Peter Gialames
> > > >
> > > > --- In amibroker@xxxx, Steve Wiser <slwiserr@xxxx> wrote:
> > > > > Tomasz or anyone:
> > > > >
> > > > > How would I go about coding an indicator that used some fundamental
> > > > data
> > > > > from the QP2 database that is something other that C, O, H, L and
> > > > V? I
> > > > > would like to do some testing using EPS data and such inside
> > > > > Amibroker. Using VB or Java scripting this seems like it should be
> > > > > doable. And if so would be a great feature for Amibroker to brag
> > > > about.
> > > > >
> > > > > Thanks
> > > > >
> > > > > Steve
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Your use of Yahoo! Groups is subject to
> ><http://docs.yahoo.com/info/terms/>http://docs.yahoo.com/info/terms/
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to
> > <http://docs.yahoo.com/info/terms/>http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
> >
> >
> >
> >
> >
> >Your use of Yahoo! Groups is subject to
> ><http://docs.yahoo.com/info/terms/>http://docs.yahoo.com/info/terms/
> >
> >
> >
> >Yahoo! Groups Sponsor
> >ADVERTISEMENT
> ><http://rd.yahoo.com/M=210574.1511967.3081913.1261774/D=egroupweb/S=1705007
> 389:HM/A=725671/R=0/*http://ads.track-star.com/adspace.ts?ts=1;2;217;107_129
> _105_304>18c1f18.jpg
> >18c1f57.jpg
> >
> >Your use of Yahoo! Groups is subject to the
> ><http://docs.yahoo.com/info/terms/>Yahoo! Terms of Service.
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|