PureBytes Links
Trading Reference Links
|
I'm following Fred's "Watered Down Semi-Interesting System". The last
lines of the code are:
Buy = Cross(LELevelOBS, StoRSIx) OR Cross(StoRSIx, LELevelMom);
Short = Cross(StoRSIx, SELevelOBS) OR Cross(SELevelMom, StoRSIx);
Sell = NOT Short AND (Cross(StoRSIx, LXLevelOBS) OR Cross
(LXLevelMom, StoRSIx));
Cover = NOT Buy AND (Cross(SXLevelOBS, StoRSIx) OR Cross(StoRSIx,
SXLevelMom));
E = Equity(1);
Plot(Price,"Price",2,1);
Plot(RSIx,"RSIa",4,1);
Plot(E,"Equity",1,1);
When I run the backtest, I don't see the plots appear.
Why is this?
Thanks,
Steve
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 http://docs.yahoo.com/info/terms/
|