PureBytes Links
Trading Reference Links
|
Edward
I also do screening of stocks based on the trending of QRS and EPSRank
supplied by QP2, FYI.
Here is an example of my doing this inside backtest/exploration
investigation:
BuyPrice=Max(L,Fractalup+0.065);
SellPrice=Min(H,AlligatorGreen);
Buy=Cross(H,fractalUp)
AND
LinRegSlope(GetExtraData("QRS"),21)>0 AND
LinRegSlope(GetExtraData("EPSRank"),21)>0 AND
GetExtraData("QRS")>60 AND
GetExtraData("EPSRank")>60;
Sell=Cross(fractalDown,H);
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
At 10:33 AM 8/16/2003 +0000, you wrote:
hi,
I just got the QP2 trial and I remember there was a message a while
ago that we would be able to use the fundamental data inside AB
shortly.
Am I right? When will this be? Will we be able to use the same
formulas as defined in QP2 inside AB?
thanks,
Yahoo! Groups Sponsor
ADVERTISEMENT
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
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|