PureBytes Links
Trading Reference Links
|
Hi All,
Made a simple system which measures ICT verses General Index, as you
should have Technology when there is a Technology-rallye, and
General when these stocks increase fastest.
To measure the speed, I compare relative strength of COMPX with DJ.
(RS=COMPX/DJ), (in reality I take INGIT/AEX).
When RS is at a minimum, increasing and there is an ict-buy-signal,
I buy ICT stocks.
When RS is at a maximum, and I have a sell-signal, all ict-stocks
are sold.
I tried to put this in formula, but this gives many false signals.
Can anyone improve Or has a different better system?
Rs:=security("compx", c)/security( "dj",c);
L1:=llv(rs,65);
H1:=hhv(rs,65);
BS:=barssince(cross(rsi(14),30))<5;
SS:=cross(70,rsi(14));
Y:=if(L1 and BS,1,if(H1 and SS,-1,0));
y;
best regards,
Henk
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|