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

Notification

Icon
Error

Options
Go to last post Go to first unread
simos  
#1 Posted : Monday, January 11, 2010 12:36:30 PM(UTC)
simos

Rank: Member

Groups: Registered, Registered Users
Joined: 1/7/2010(UTC)
Posts: 11
Location: Greece

Hi all,

I' m a newbie in metastock and i' m starting to use the RMO + SwingTrd + Market Trend as an expert advisory.
Has anyone found a way to avoid the false - delayed signals? -And they are many :(
If so would you be so kind to share your expertise with us ?
If this is already posted in the forum please excuse this unnecessary post.
I will really appreciate your reply.
Justin  
#2 Posted : Tuesday, January 12, 2010 2:27:21 PM(UTC)
Justin

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 9/13/2004(UTC)
Posts: 673
Location: Salt Lake City, UT

I'd first recommend watching the online training if you have not yet done so:

https://www.metastock.com/customer/training/rmo/

https://www.metastock.com/customer/training/tradingrmo/

You should not be simply looking at the Buy/Sell arrows but looking at all the RMO indicators before considering a buy or sell.
simos  
#3 Posted : Thursday, January 21, 2010 4:12:00 AM(UTC)
simos

Rank: Member

Groups: Registered, Registered Users
Joined: 1/7/2010(UTC)
Posts: 11
Location: Greece

Many thanks for your superfast reply.

I had already followed these tutorials, but it was a good chance to give them a 2nd quick look.
I was satisfied with the result of the RMO but I'm always looking for anything better.
I must say that the faulty signals (even though I'm following the rules of Mr. Mohindar and taking only the proper signals) are more than enough.
It seems that i must try the new packet that Mr. Mohindar released and hopefully this will provide me better tips for buy and sell decisions.
FormulaPrimer  
#4 Posted : Monday, January 25, 2010 4:17:10 PM(UTC)
FormulaPrimer

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 8/12/2005(UTC)
Posts: 73

Rainbow oscillator reworked...... You should use rainbow template along with the RMO aka exponetial moving average of the rainbow oscillator.
fxtraderchat  
#5 Posted : Tuesday, August 31, 2010 5:44:58 AM(UTC)
fxtraderchat

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 8/31/2010(UTC)
Posts: 2

Are you looking for the code that aligns the buy and sell signals with the corresponding colored bars? If so, try this:

For Buy Signals....

lp:=(Fml("SwingTrd 2")>Fml("SwingTrd 3")) AND
(Fml("SwingTrd 2")) > 0;
Cross(lp,0.5)

For Sell Signals....

sp:=(Fml("SwingTrd 3")>Fml("SwingTrd 2")) AND
(Fml("SwingTrd 2")) < 0;
Cross(sp,0.5)

You can use these to create audible alerts for the RMO as well, which annoyingly does not come as a standard feature in Metastock.

The above code for signals do not take into account the actual RMO indicator to further confirm the long or short signals. It can be added in though if you want to. Here's how...

For Buy Signals with RMO full alignment...

lp:=(Fml("SwingTrd 2")>Fml("SwingTrd 3")) AND
Fml("Rahul Mohindar Osc (RMO)") > 0 AND
(Fml("SwingTrd 2")) > 0;
Cross(lp,0.5)

For Sell Signals with RMO full alignment...

sp:=(Fml("SwingTrd 3")>Fml("SwingTrd 2")) AND
Fml("Rahul Mohindar Osc (RMO)") < 0 AND
(Fml("SwingTrd 2")) < 0;
Cross(sp,0.5)

I personally like the RMO Swing Signals, but not the actual RMO so much. I use Pivot lines for confirmation of the Swing Signals instead, and I find that that works much better.

Hope this helps you.

ccvirginia  
#6 Posted : Thursday, October 7, 2010 11:45:57 PM(UTC)
ccvirginia

Rank: Newbie

Groups: Registered, Registered Users
Joined: 9/29/2010(UTC)
Posts: 3

Is there a way to backtest "RMO + SwingTrd + Market Trend" or combine it with other signals? Thanks in advance!
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.