PureBytes Links
Trading Reference Links
|
Thanks Jayson for helping me out here !
I know the functions I´m talking about are into QP (I use them into
Excel) The functions used in Excel are;
QP_QuarterEps(TICKER;0) This can go back about 20 QTRS
QP_QuarterRev(TICKER;0) This can go back about 20 QTRS
Thing is that QP functions and AB functions do not correctly line up,
an example is historical EPSrank (=qp_HistEpsRank($B$3;A70) in
Excel) and in AB it is GetExtraData("EPSRank")
I know it is been a while this has been worked. But maybe Tomasz
still remembers something about it.
Thanks
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> Mickey,
> I think you will find that many people here use the plug in which
Tomasz has
> created and updated.... The first thing for you to check is if QP
offers the
> function that you are looking for. If they have the data available
it is
> most likely offered via the plug in.....
>
> Regards,
> Jayson
> -----Original Message-----
> From: mickeyamelinckx [mailto:mickeyA@x...]
> Sent: Tuesday, March 23, 2004 4:41 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: some thing about QP plugin
>
>
> Gee I guess very few here use the QuotesPlus plugin, this is a real
> pitty because I would like to exctend a few things of it. Especially
> the REV and EPS going back (read org mail below). I know I read
> something about REV data but can´t seem to find and back anymore. I
> found some things in the board archieves but this is most about
> problems which happened in the past. Maybe I can try a last action
to
> contact the creator of this plugin. Anyone knows who created the QP
> plugin and know if there going to be updated available ?
>
> >The EPS tracks exactly with AB, but the QRS is close but never
> >exactly the same??? Any ideas?
> I´m not sure what you mean, because I checked a couple of stocks
with
> QP and did not see any differences ! It is so that because the
peaks
> swings sometimes in QRS with quick moving stock I added a 10d Avg
>
> > Plot(MA( GetExtraData("QRS"), 10 ),
> > "MA QRS",colorTeal,styleLine);
>
> So the RED line is the actual QRS !
>
> >Many thanks for sharing your good work.
>
> --- In amibroker@xxxxxxxxxxxxxxx, "mickeyamelinckx" <mickeyA@xxxx>
> wrote:
> > I have a question about the QP plugin for AB. Now I know we can
get
> > QP´s QRS and EPS ranking with historical data into AB (historical
> EPS
> > rank can not be charted in QP itself). With also a possibility to
> > view most fundamental data into the Interpretation window.
> > Here is the code I use in AB;
> > ---------------------------------------------------
> >
> > //QP QRS & EPS rank charting
> > Plot(GetExtraData("QRS"),"QRS",colorRed,styleLine);
> > Plot(MA( GetExtraData("QRS"), 10 ),
> > "MA QRS",colorTeal,styleLine);
> > Plot(GetExtraData
> > ("EPSRank"), "EPSRank",colorLightBlue,styleHistogram);
> >
> > PlotGrid( 80, colorRed );
> > PlotGrid( 20, colorRed );
> >
> > //QP fundamental data call plotted into the Interpretation window
> > #include "C:\\adjust to your
> > dir\amibroker\afl\include\writeuponstock.afl";
> > -----------------------------------------------------
> > But what about other data which is still not included into
> > Interpretation window ? And is it possible to scan on the
criteria
> > which is displayed in the interpretation window ? (I assume by
> > reading writeuponstocks.afl I could scan all criteria in this file
> > just by using "GetExtraData("SharesFloat")")
> > I read a post somewhere of someone using REV data, looking in
> Excel
> > REV and EPS data has historical data going back per qtr and -20 I
> > believe.
> >
> > Or is it possible to add data by adding them in
writeuponstocks.afl
> > by adding lines like these;
> >
> > WriteIf(Buy=1 OR Buy= 0,GetExtraData("briefing"),"");//1
> >
> > WriteIf(Buy=1 OR Buy= 0,"\n"+"QP2 Relative Strength ="+
> > WriteVal(GetExtraData("QRS")),"");//2
> >
> > WriteIf(Buy=1 OR Buy= 0,"Shares Float = "+
> > WriteVal(GetExtraData("SharesFloat")),"");//3
> >
> > But them with data not already availabe ? The two main things I
> > would like to add is EPS data per QTR both back and predictions
and
> > REV data.
> >
> > Many thanks in advance for your help !
> > M.
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
>
> --------------------------------------------------------------------
--------
> ----
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|