Rank: Newbie
Groups: Registered Users, Subscribers, Unverified Users Joined: 1/15/2015(UTC) Posts: 5
Was thanked: 1 time(s) in 1 post(s)
|
Hi fellas!!!
there is this topic below about the subject but i could not reply it. so i have opened this new topic.
http://forum.metastock.com/Discussions/g/posts/t/152481/How-to-Backtest-the-RMO-system#post152481
here's the formula for the rmo backtest.
Indicator Builder using RMO two
formulas
1.
Formula "RMO BUY(2)
Fml(
"Rahul Mohindar Osc (RMO)") > 0
AND
Fml( "SwingTrd 2") > Fml( "SwingTrd 3")
2. Formula RMO SELL(2)
Fml(
"Rahul Mohindar Osc (RMO)") < 0
AND
Fml( "SwingTrd 2") < Fml( "SwingTrd 3")
System Tester only.
Any Name you choose
Buy rule: Fml( "RMO BUY(2)")
Sell rule: Fml( "RMO SELL(2)")
I think by those rules it completes only 2 out of the 3 basics backgrouds of the RMO system. It should have another rule as follow:
1.
Formula "RMO BUY(2)
Fml("Rahul Mohindar Osc (RMO)") > 0
AND
Fml( "SwingTrd 2") > Fml( "SwingTrd 3")
AND
(Fml( "SwingTrd 2") > 0 OR Fml( "SwingTrd 3") > 0)
2. Formula RMO SELL(2)
Fml("Rahul Mohindar Osc (RMO)") < 0
AND
Fml( "SwingTrd 2") < Fml( "SwingTrd 3")
AND
(Fml( "SwingTrd 2") < 0 OR Fml( "SwingTrd 3") < 0)
_______________
what do think guys? let's opinion on that.
thanks!!!!!
|
1 user thanked wladirlima for this useful post.
|
|
|
Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
There is also the Buy above the High and Sell below the Low aspect of the signals to consider.
|
|
|
|
Rank: Newbie
Groups: Registered Users, Subscribers, Unverified Users Joined: 1/15/2015(UTC) Posts: 5
Was thanked: 1 time(s) in 1 post(s)
|
Originally Posted by: MS Support There is also the Buy above the High and Sell below the Low aspect of the signals to consider.
sure, you've gotta a point. how do i write that formula?
thanks!!
|
|
|
|
Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
I did not write these, but you could try:
Buy Order:
Signal:=Fml("Rahul Mohindar Osc (RMO)") > 0 AND
Fml("SwingTrd 2") > 0 AND
Fml("SwingTrd 2") > Fml("SwingTrd 3");
Ref(Signal,-1) AND H > Ref(H,-1)
Order Type: Limit
Ref(H,-1) + 0.01
Sell Order:
Fml("Rahul Mohindar Osc (RMO)") < 0 OR
Fml("SwingTrd 2") < 0 OR
Fml("SwingTrd 2") < Fml("SwingTrd 3")
Sell Short Order:
Signal:=Fml("Rahul Mohindar Osc (RMO)") < 0 AND
Fml("SwingTrd 2") < 0 AND
Fml("SwingTrd 2") < Fml("SwingTrd 3");
Ref(Signal,-1) AND L < Ref(L,-1)
Order Type: Limit
Ref(L,-1) - 0.01
Buy to Cover Order:
Fml("Rahul Mohindar Osc (RMO)") > 0 OR
Fml("SwingTrd 2") > 0 OR
Fml("SwingTrd 2") > Fml("SwingTrd 3")
|
1 user thanked MS Support for this useful post.
|
|
|
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.