PureBytes Links
Trading Reference Links
|
Doug,
If you are using TS6, I know that you can do this, simply write the code
that you have specified here in a strategy. You will also need another
strategy to do the entries. Insert both strategies into the strategy list
and away you go!
BTW, TS strategies are written this way - they often create separate entry
and exit strategies, with the idea that you decide on optimal combinations.
Personally, I've never found it useful - it's more of a pain in the neck
trying to modify two strategies than it is to modify one, so I always put
everything in one strategy.
Ken
-----Original Message-----
From: Douglas Dubell [mailto:ddubell@xxxxxxxxxxx]
Sent: Wednesday, February 26, 2003 3:59 PM
To: omega-list@xxxxxxxxxx
Subject: Strategy just for exits
Does anyone know if I can have a strategy that only stops me out of a trade
by does not take the entry. A manual entry with an automatic exit.
For example - something like (syntax may not be right)
if Marketposition = 1
and C > Avg(C,3)
then ExitLong;
Or do I need to enter the trade with a strategy to be able to close it with
one?
thanks
|