PureBytes Links
Trading Reference Links
|
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@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/
|