Search

You searched for the word(s):
< 1 second(s)
  • Re: rahul's rmo

    Vinny: &nbsp; Here is some code from a system&nbsp;test that you can use to assemble your own explorations for various RMO conditions: &nbsp; {An RMO buy signal is generated on the first bar when all three conditions are met:} {RMO oscillator is positive indicating bullish conditions}Long1:=IF(Fml(''Rahul Mohindar Osc ...
    Posted to Tips & Tricks (Forum) by SirShaveKWSN on August 29, 2007
  • Re: Named List File is Full

    Thanks very much ! :) Deleting OR renaming the file COMMLIST did the trick.&nbsp; MS&nbsp;created a new copy of the file to work with, and everything seemed fine after that. Deleting or renaming the file EQ_SLIST did NOT solve the problem in my case.
    Posted to Error Messages (Forum) by SirShaveKWSN on August 29, 2007
  • Re: Trailing stop in expert advisor

    Maybe this will help.&nbsp; The following code would set&nbsp;a stoploss of $0.10 below the low of the most recent day on which the BuySignal was generated.&nbsp; How you define whether BuySignal is true or not is up to you. StopLoss:=ValueWhen(1,BuySignal,Low-0.10);
    Posted to MetaStock (Forum) by SirShaveKWSN on August 29, 2007
  • Re: Indicator slope

    The following, I believe, would give you the linear regression slope of the last five days of the 50-day simple moving average of the close.&nbsp; Substitute the indicator of your choice ... ;) Slope50:=LinRegSlope(Mov(Close,50,S),5);
    Posted to MetaStock (Forum) by SirShaveKWSN on August 29, 2007
  • Re: Named List File is Full

    Bump. The problem still persists, but I can actually save the list in spite of&nbsp;the error message ... ???
    Posted to Error Messages (Forum) by SirShaveKWSN on August 29, 2007
  • Re: IMPULSE SYSTEM CODING

    Amita: For what it's worth, here's some extremely&nbsp;simplistic coding I did some time ago for Elder's ''Impulse System'' ..... &nbsp; Entry Signal: AVG:=Mov(Close,13,e);Hist:=Fml(''MACD Histogram''); Avg&gt;Ref(AVG,-1) ANDHist&gt;Ref(Hist,-1) &nbsp; Exit Signal: AVG:=Mov(Close,13,e);Hist:=Fml(''MACD Histogram''); Avg&lt;Ref(AVG,-1) ...
    Posted to Basic Coding Techniques (Forum) by SirShaveKWSN on June 12, 2007
  • Named List File is Full

    My MSv10 will no longer let me save the results of explorations into new ''Favorites'' folders.&nbsp; It keeps flashing an error message ''Unable to add name to list file. Named list file is full.'' I deleted the old ''favorites.dta'' file, but this did not solve the problem.&nbsp; Is there another file I need to examine ?
    Posted to Error Messages (Forum) by SirShaveKWSN on February 24, 2007
  • Re: Stock Screening

    Jason: What you refer to sounds like the ''PowerScreener'' functionality which is in the new MS v. 10.&nbsp; I believe that you must pay for this service after the first 30 days.
    Posted to Product Wish List (Forum) by SirShaveKWSN on January 18, 2007
  • Any MS Users in Maine ?

    Thought it was worth a try to ask ...
    Posted to User Groups (Forum) by SirShaveKWSN on January 18, 2007
  • Re: Uptrending Stocks

    You could try something like this : Test1:=Low&lt;Mov(C,21,S); Test2:=BarsSince(Test1)&gt;=30; And only proceed if Test2 is true ...
    Posted to MetaStock (Forum) by SirShaveKWSN on January 11, 2007
  • Re: TRADE FOREX! BE FREE! With my Profitable Trade System !

    Still Can't find my vapours ... sure I left them lying around somewhere ... Hey ... Do you think I could still be free if I don't trade the FOREX ?
    Posted to General Chat (Forum) by SirShaveKWSN on January 9, 2007
  • Re: TRADE FOREX! BE FREE! With my Profitable Trade System !

    ... Durn !&nbsp; I seem to be out of vapour ... Guess I'm gonna miss this one.
    Posted to General Chat (Forum) by SirShaveKWSN on January 4, 2007
  • Re: Coding for stop loss or profit

    John: An interesting problem.&nbsp; Here is one way&nbsp;I have found of setting the initial stop loss, illustrated by some code taken from another post (# 22224)&nbsp;discussing the RMO system: {variable a7 is the initial stop loss set at ''a couple of ticks'' below the low of the bar preceding the entry signal}&nbsp; a5:=(Fml(''Rahul ...
    Posted to MetaStock (Forum) by SirShaveKWSN on December 28, 2006
  • Re: Who can solve this???

    Please try double clicking on the date bar at the bottom of the chart.&nbsp; This should bring up a window which allows you to specifiy how many bars of data are loaded, and how many are actually displayed. You can also get to this window by selecting ''Format'' and ''x-axis'' from the tool bar at the top of your Metastock window. Hope that ...
    Posted to MetaStock (Forum) by SirShaveKWSN on December 27, 2006
  • Re: Need to find "Using Stops for Dummies"

    Blue Eyes: Here's a bit of code for a trailing stop that I have found useful: F1:=0.80*Close; If(F1&gt;=PREV AND LOW&gt;PREV,&nbsp;&nbsp; F1,&nbsp;&nbsp; If(Ref(LOW,-1)&lt;Ref(PREV,-1),&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ref(F1,-1),&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PREV)) &nbsp; F1 is the&nbsp;function for the trailing stop ... in this case a 20% ...
    Posted to MetaStock (Forum) by SirShaveKWSN on December 24, 2006
  • Re: rahul's rmo, v10 comparison

    Yes.&nbsp; Thanks for the code.&nbsp; I put it into my explorer, and into my system tester to set up a quick performance&nbsp;test to see if I was interested in pursuing further study of the RMO method. For the last 1000 daily bars of the NASDAQ 100 (Longs only; excluding data from IOMEGA, which generated error messages), RMO generated about a 36%
    Posted to Tips & Tricks (Forum) by SirShaveKWSN on October 23, 2006