Traderji.com - Discussion forum for Stocks Commodities & Forex

RMO code for Amibroker 4.9

Discuss RMO code for Amibroker 4.9 at the AmiBroker within the Traderji.com - Discussion forum for Stocks Commodities & Forex; Originally Posted by jchshee Hi sudhir, Thank you for your input on the bloated RMO... ...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > TOOLS & RESOURCES > Software > AmiBroker

Notices


Advertise Here

Reply
 
Thread Tools
Sponsored Links
  #21  
Old 8th June 2007, 12:32 PM
Member
 
Join Date: Sep 2006
Posts: 78
Thanks: 0
Thanked 0 Times in 0 Posts
sudhir gupta is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Quote:
Originally Posted by jchshee View Post
Hi sudhir,

Thank you for your input on the bloated RMO... yeah, it has too much marketing publicity to its usefulness for trading... Could you elaborate on why you said that Amibroker is kidstuff when compared to Tradestation, Neoticker??? Is it because of specific indicators, systems, etc?? TQ for your reply!
A whole world of diifference. Spend 16 hrs daily for few weekends to find yourself. You won't regret it.
Reply With Quote
  #22  
Old 8th June 2007, 04:02 PM
Member
 
Join Date: Feb 2005
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
bbgen is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Hi Mr Sudhir Gupta,

I could now clearly see now what you meant. Today is my first day using AB as my sidekick. Simply a nitemare trying to make the explorations keep in tune. I have to force feed nearly 100 symbols. In the morning, the 15 min and 5 min exploration work.

By noon they were out of action. Only the 30 min and above work, pretty weird though because I could clearly open up the 15 n 5 min charts and there were clearly sufficient bars, but the RMO indicator and exploration would just not function on the 5 and 15 min charts.

More updates later when I am done with my work.
Reply With Quote
  #23  
Old 8th June 2007, 04:42 PM
Member
 
Join Date: Dec 2006
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
jchshee is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Hi Sudhir,

TQ very much for your advise!! Will do more studying on tradestation to familiarise myself with it... cheers!!
Reply With Quote
  #24  
Old 11th July 2007, 01:03 PM
Member
 
Join Date: Oct 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
nanima is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Dear Sudhir
when i am ploting swingTrade 2 and 3 the value shown on chart is either "EMPTY" or "-1.#INF". I am using 5 min chart.
please comment
Reply With Quote
  #25  
Old 6th August 2007, 03:46 PM
Member
 
Join Date: May 2006
Location: Kolkata
Posts: 1,098
Thanks: 1
Thanked 0 Times in 0 Posts
swagat86 is on a distinguished road
Reputation: 24
Default Re: RMO code for Amibroker 4.9

Hi Suhir,

Nice system, but the video mentions abt RMO oscilator . Do u have the afl for it?
Reply With Quote
  #26  
Old 6th August 2007, 07:47 PM
Member
 
Join Date: May 2007
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
didi is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Quote:
Originally Posted by bbgen View Post
Hi Mr Sudhir Gupta,

I could now clearly see now what you meant. Today is my first day using AB as my sidekick. Simply a nitemare trying ...., but the RMO indicator and exploration would just not function on the 5 and 15 min charts.
Hi,

I think that's not AB problem.
Each time frame gave different action and for some stocks swing trade#2,#3 not show up. You will learn these same stocks also will not work on Metastock. It gave you error message.

Cheers,
Reply With Quote
  #27  
Old 6th August 2007, 10:25 PM
Member
 
Join Date: Jan 2007
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
ak437 is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Quote:
Originally Posted by sudhir gupta View Post
pl. specify the error.
ERROR IS:

Error in AFL formula:

//AlertIf( Sell, "SOUND C:\\Windows\\Media\\ding.wav", "Audio alert", 2, 1+8 );
_SECTION_END();

---
--^

Error 31.
Syntax error, expecting IDENTIFIER
Reply With Quote
  #28  
Old 12th September 2007, 05:02 PM
Member
 
Join Date: Feb 2007
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
ggshah is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Quote:
Originally Posted by sudhir gupta View Post
Pl. copy and paste :

_SECTION_BEGIN("RMO");
SwingTrd1 = 100 * (Close - ((MA(C,2)+
MA(MA(C,2),2)+
MA(MA(MA(C,2),2),2) +
MA(MA(MA(MA(C,2),2),2),2) +
MA(MA(MA(MA(MA(C,2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2), 2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2), 2),2),2),2))
/10))/(HHV(C,10)-LLV(C,10));
SwingTrd2=
EMA(SwingTrd1,30);
SwingTrd3=
EMA(SwingTrd2,30);
RMO= EMA(SwingTrd1,81);
Buy=Cross(SwingTrd2,SwingTrd3);
Sell=Cross(SwingTrd3,SwingTrd2);
Bull_Trend=EMA(SwingTrd1,81)>0;
Bear_Trend=EMA(SwingTrd1,81)<0;
Ribbon_kol=IIf(Bull_Trend,colorGreen, IIf(Bear_Trend,colorRed, colorBlack));
Plot(4, "ribbon", Ribbon_kol, styleOwnScale|styleArea|styleNoLabel, -0.5,100);
Impulse_UP= EMA(SwingTrd1,30) > 0;
Impulse_Down= EMA(SwingTrd1,81) < 0;
bar_kol=IIf(impulse_UP, colorBlue, IIf(impulse_Down, colorRed,IIf(Bull_Trend, colorRed, colorBlue)));
Plot(Close,"Close",bar_kol,styleBar | styleThick );
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorBlue, colorRed ),0, IIf( Buy, Low, High ) );
_SECTION_END();
Wow..........your RMO indicator is simply superb Mr Sudhir Gupta. Can you please write "Kwikpop" for Amibroker along with trading rules ???
Waiting for the master to respond.
Regards
Reply With Quote
  #29  
Old 13th September 2007, 11:45 AM
Member
 
Join Date: Jun 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
johnnypareek is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

i have tried both code of RMO but not geting buy sell for intraday. there was 10 days data. though it work with daily data. help
Reply With Quote
  #30  
Old 16th October 2007, 09:07 AM
Member
 
Join Date: Oct 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Apotheosis is on a distinguished road
Reputation: 20
Default Re: RMO code for Amibroker 4.9

Hello I am having a problem with RMO EXPLORATIONS - INTRADAY. I can get the first formula to work, but not this one. I do not get an error -- when I select it, it just shows up as blank. I am using QT as a data feed. Does anyone know how to fix this?
Reply With Quote
Sponsored Links

Reply

Bookmarks


Advertise Here


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads for: RMO code for Amibroker 4.9
Thread Thread Starter Forum Replies Last Post
Sharing one of my own code uasish MetaStock 5 30th March 2008 02:36 PM
Metastock code ume68 MetaStock 5 1st March 2007 07:52 AM
What is the colour code? munchikana Your Feedback & Suggestions 7 3rd June 2006 01:21 AM
Code conversion (Need Help) dalalji Software 3 23rd December 2005 06:29 PM
need help for explorer code cmlee MetaStock 1 7th March 2005 08:04 AM


All times are GMT +5.5. The time now is 12:51 PM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.MasterOfTrading.com