Rank: Member
Groups: Registered, Registered Users Joined: 4/27/2005(UTC) Posts: 17
|
Hello friends,
I need some help with the following :
i want to see on the chart :
1) Initial Stoploss Long = 0.995 * Last Significant Down Day.
(the Last Significant down day is the Day with the lowest low before the Entry)
Then the Trailing stops :
After the Entry the first trialing stop is 0.995 * LOW of the Entry day.
If a new significant day is made ( a day with a higher high then
the high of the entry day) the stop is moved to 0.995* Low of new significant day.
If a daymove is > 4% the Trailing stop is placed 0.995 * 50% * range
of the 4% day.
Thanks a lot in advance.
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users Joined: 3/19/2005(UTC) Posts: 2,995
Was thanked: 14 time(s) in 10 post(s)
|
Hey Dorusone-
Make sure to check out the Formula Primer... lots of good examples!
I just want to try this, but I am not in front of MS to work it out exactly. Hopefully it can get you started. :D
LongStop:=
mul(0.995,Ref(LLV(L,22),-1)); {change the 22 to whatever time periods}
TrailStop:=
if(C>mul(ref(C,-1),1.04),
{then} mul(0.4975,(H-L)),
{else} mul(0.995,LLV(L,1)));
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users Joined: 1/19/2005(UTC) Posts: 1,065 Location: Koh Pha-Ngan, Earth
Was thanked: 2 time(s) in 2 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
|
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.