PureBytes Links
Trading Reference Links
|
I was just reading the latest issue of Active Trader when I saw the
article on candlesticks and how kickers were the most powerful trading
symbols. Anyway I tried coding a buy signal for a kicker and I got
horrible results. Can anyone look at my code and tell me how I could
improve it, or even if it is correct?
Thanks,
Jacques
Buy = Ref(Close, 1)*1.01 < Ref(Open, 1) AND Open > Ref(Open, 1) AND
Open*1.01 < Close;
Buy = ExRemSpan( Buy, 5 );
Sell = Ref( Buy, -5 );
I put in the coefficients after the first attempt. I tried using
different percent moves, so the one percent isn't fixed.
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|