PureBytes Links
Trading Reference Links
|
This is not what I had in mind. It is my understanding that you want to buy on the trigger signal and then later add to the position if "X" condition is met. This is not what your formula is doing.
First, edit your system and select multiple portfolio bias and position size 2.
Then enter your two conditions in the following format:
MyLong
OR
MyLongAdd
You are trying to tell the system to enter on the first condition or the second condition. The second condition should contain a reference back to the first condition to make sure it was true first.
I see you are trying to buy on an ADX cross of 20 and then again at 30. I'm not sure I see what your other rules are with regards to the crossing of 20 and 40 to the downside.
With regard to your second question, just use your normal exit signal. MS will exit both positions.
Good trading,
Joe J.
-----Original Message-----
From: emarco [mailto:emarco@xxxxxxxxxxxxxxx]
Sent: Wednesday, March 12, 2003 10:23 AM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: Re: [EquisMetaStock Group] adding psoition in system
thanks Joe!
I use these to binary latches to count for size position
System ADX2
{****binary latch1ADX>20*******}
sig:=Cross(ADX(12),20);
rst:=Cross(20,ADX(12)) OR Cross(40,ADX(12));
i:=Cum(sig+rst>-1)=1;
rmb:=BarsSince(sig OR i)<BarsSince(rst OR i);
{*****binary latch2 ADX>30*******}
sig2:=Cross(ADX(12),30);
rst2:=Cross(20,ADX(12)) OR Cross(40,ADX(12));
i2:=Cum(sig2+rst2>-1)=1;
rmb2:=BarsSince(sig2 OR i2)<BarsSince(rst2 OR i2);
{SUM OF POSITIONS}
quant:=rmb+rmb2;
quant;
Then i place quant variable in entry size function (BUY ORDER).
hgr:=FmlVar("System ADX2","quant");
hgr;
Is not working, the system ignores this rule.....
and how do i sell the whole position?(ie. size=2)
Thanks a lot
Juan
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|