Rank: Newbie
Groups: Registered, Registered Users Joined: 2/17/2005(UTC) Posts: 3
|
Hi,
I am writing a system test. I have my long entry working but I am having trouble coming up with a way code my exit.
I normally set my loss stop to be a multiple of the Average True Range on the day I enter (actually it is ATR(x)).
So I would need to store off that value upon entry, so that I can determine if the price has dropped below my ATR multiple (or be able to re-calculate it at any given point).
Any pointers would be appreciated!
BT
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 9/8/2004(UTC) Posts: 2,266
Was thanked: 1 time(s) in 1 post(s)
|
I would do something like :
BuyCondition:={your buy condition};
StopAtr:=Valuewhen(1,BuyCondition,ATR(X))*{Your Multiplier};
EntryPrice:=Valuewhen(1,BuyCondition,C);
Cross((EntryPrice-StopAtr),C)
Hope this helps.
|
|
|
|
Rank: Newbie
Groups: Registered, Registered Users Joined: 3/9/2005(UTC) Posts: 5
|
unfortunately if the buy condition happens after you are in the trade then patrick's code will not give you the same atr stop.
have a look at the plugin http://www.tradernexus.com/ which gets around this problem.
i use it all the time and its great - you can define your own atr multiples and it plots the stop on the chart really well
jer
|
|
|
|
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.