[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] simple system coding help....



PureBytes Links

Trading Reference Links

b = ref(stochk(3,2),-1) < 50; //and stochk(3,2) > 50;

Sent: Friday, February 27, 2009 5:21 PM
Subject: [amibroker] simple system coding help....

Could anyone help.

I'm playing with the following idea. The system should buy if the cci
is above zero, the stochk has risen since yesterday and was below 50
yesterday, and the close should be above the open.

My code is as follows;

a=CCI(40)>0;
b=50>Ref(StochK(3,2),-1);
d=StochK(3,2)>Ref(StochK(3,2),-1);
e=C>O;

Buy=a AND b AND d AND e;
BuyPrice=C;
Sell=BarsSince(Buy)==1;

Short = 0;

Cover = 0;

Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

The problem is that when backtested, trades are clearly taken when
the stoch if falling and was above 50 yesterday (breaking the rules).
The only rules being observed are that the cci is positive and the
close is higher than the open (a and e).

Can anyone suggest what basic mistakes I'm making?

All contributions welcome.

Cheers,
Rich



__._,_.___


**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___