PureBytes Links
Trading Reference Links
|
1. 200 symbols sounds like a lot. Spend some time on CAREFULLY
selecting a universe of NON-correlated ETFs. You can find an .afl
that produces a correlation matrix either here or at the AB website.
Only include low correlated ETFs in your list say < 0.6 and > -0.6 (or
whatever bounds you like).
This should drop your list down to several dozen.
2.(with all due credit to Howard Bandy) Think of a reversion to mean
system rather than a trend following system you have outlined below.
3.Think about the signal to noise ratio of your ranking system. ROC
only uses 2 values to compute the ROC. This produces a very noisy
signal and lots of buys / sells based solely on random noise - not
good. Think about all of those estimates of the value of the ETF in
between.
Reef Break
"Headed for Acid Drops in a few days - can hardly wait"
--- In amibroker@xxxxxxxxxxxxxxx, "upsidetarget" <digimax@xxx> wrote:
>
> I use a simple ETF RS system (on 200 symbols) which I want to put into
> Amibroker. Here is what I have so far:
>
> PosQty = 14;
> SetOption("MaxOpenPositions", PosQty );
> PositionSize = -100/PosQty;
> PositionScore = ((ROC(C,63)+ROC(C,252))/2);
> Buy=ROC(C,63)>0 AND ROC(C,252)>0 AND Percentile(ROC(C),63,69) AND
> Percentile(ROC(C),252,69);
> Sell=???;
>
> I don't think this will do it...
>
> What I want is to take a percentile ranking of ROC(C,63)
> and a percentile ranking of ROC(C,252), add them and divide by 2.
>
> Example: ROC(63) rank = 70, ROC(252) rank = 90
> ... result (70+90)/2=80 [average rank]
>
> Buy: Average Rank =>80
> Sell: Average Rank <80
>
> Problem is, I don't think I can use percentile ranking to get this
> done. Is there another way?
>
> Thank for any ideas...
>
> Michael
>
------------------------------------
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|