PureBytes Links
Trading Reference Links
|
I agree. Lots more work to be
done before even deciding if type of approach is
worth it. But who knows. I ran it with some better
stop loss points and tried a few sectors and
got consistent 3-5% gains for last year.
I will keep playing. I hadn't used exploration yet
so I appreciate the code. Marc
> Here is an exploration. I think you will find it fairly rare that
all your
> conditions occur simultaneously. You can also plot this code
>
> Filter=1;
>
> x=Cross(C,BBandTop(C,20,2));
> y=MA(OBV(),20)<0;
> Buy=BarsSince(x)==3 AND y AND C<Ref(C,-1);
>
> Plot(C,"Close",4,styleCandle);
> Plot(BBandTop(C,20,2),"",5,1);
> Plot(x,"",4,2|styleOwnScale);
>
> AddColumn(Buy,"Buy");
> AddColumn(BarsSince(x)==3,"cross");
> AddColumn(y,"Neg OBV");
> AddColumn(C<Ref(C,-1),"Price down");
>
> Jayson
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/
|