logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
IMPERATOR  
#1 Posted : Thursday, October 11, 2007 5:36:39 AM(UTC)
IMPERATOR

Rank: Newbie

Groups: Registered, Registered Users
Joined: 2/19/2007(UTC)
Posts: 1

Rahul recommended using the Exit Swing Signal as a possible trailing stop for aggressive / real time trades.

Rather than trying to look at 4 separate windows using the RMO System, is it possible to convert the Exit Swing Signal into something like a Moving Average that trails the price. Any penetration of this would signal an exit?

Does anyone know how to create?

Thanks

hayseed  
#2 Posted : Monday, October 15, 2007 9:31:10 PM(UTC)
hayseed

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 3/7/2005(UTC)
Posts: 1,346

hey imperator..... i'm not sure just what raul is implying with his trailing stop statement...... for a true trailing stop there must be some sort of method to raise the stop as the price moves up..... there is no mention of how to accomplish this..... about all he says is to set the trailing stop at the low of the bar where the exit swing signal falls under 75..... which would in a sense just be a standard non adjusting stoploss.....

that could of course be coded using 'valuewhen' , ref 1 and ref2 of the exit swing...... but you would have to add additional coding to trail.....

you could overlay the exit swing onto the price bars but it's less than ideal...... are you familiar with richards trailing stops..... they seem to be reguarded highly by quite few .......h

dawsmit  
#3 Posted : Friday, February 15, 2008 5:28:07 PM(UTC)
dawsmit

Rank: Member

Groups: Registered, Registered Users
Joined: 5/31/2007(UTC)
Posts: 15

Hey - just catching up on some of the conversation re: RMO

Did you get an answer to your question re: the Exit Swing Signal? Somewhere within this forum I saw the mention of the the Exit Swing being a variant of the RSI indicator...I made note of the code, see below -

x:=RSI(9);
prd:=7;
smooth:=3;

num:=x-LLV(x,prd);
den:=Max(HHV(x,prd)-LLV(x,prd),0.00001);
ind:=Mov(100*num/den,smooth,S);

{plot/return}
25;75;ind;

it does indeed replicate the Exit Swing Signal, not identical to the 4th decimal place but close enough to trade.

If you can code and transform RSI-type parameters over to an MA-type indicator...pls let me know as I agree that the RMO template does get busy, the more in one window the better!

Good luck[:)]

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.