An Indicator

Discussion in 'Technical Analysis' started by UM_manager, Nov 4, 2005.

  1. Ok. SP500 CFD
     
    • spy.jpg
      File size:
      77.2 KB
      Views:
      368
    #11     Nov 4, 2005
  2. Are you Alex Frost?
    Because he wrote this code. He also mentions www.understandmarket.com
     
    #12     Nov 4, 2005
  3. I don't use Omega, but I'll have a look at it and see if I can translate it into something else.

    - Spydertrader

    Edit: I see I have to HAVE Omega to open the file. Maybe you could post the logic behind the indicator, so I could write it using another program?
     
    #13     Nov 4, 2005
  4. here is the code:

    {***************************************



    Written by: Alex Frost

    Company: UnderstandMarket.com

    Description: Smooth Zero-Based.



    ****************************************}

    Input:Length(NumericSimple),Price(NumericSeries);
    Var:j(0),hh(0),b(0),f(0);
    Array:R2[100](0),PR[100](0);

    if Length<100 AND BarNumber>Length then begin
    for j=0 to Length begin
    PR[Length-j]=Price[j];
    R2[j]=j;
    end;
    for hh=0 to Length begin
    for j=0 to Length-2 begin
    if Price[Length-R2[j]]>Price[Length-R2[j+1]] then begin
    b=R2[j];
    R2[j]=R2[j+1];
    R2[j+1]=b;
    end;
    end;
    end;
    Value33 = 0;
    for j=0 to Length begin
    Value33=Value33+Power((R2[j]-j),2);
    end;
    UMindicator = 1-(6*Value33)/(Power(Length,3)-Length);
    end;
     
    #14     Nov 4, 2005
  5. Thanks Spike500; much appreciated.

    - Spydertrader
     
    #15     Nov 4, 2005
  6. My name is Alex Frost
     
    #16     Nov 4, 2005
  7. Pabst

    Pabst

    Meaningless without a set of backtested rules.

    I suspect the results would show this system has little added value.

    Why? Because it's susceptible to the "hard right edge" that's dominant in all "sentiment" indicators. When charted they look deceiving good. However it's not an "oversold" indicator that's pulling up prices, it's in reality bouncing prices that bring the indicator out of oversold territory.

    I used to be addicted to these indicators like a junkie to crack and in turn they were as good for my financial health as crack is to physical well being.

    Look closely at 2002. For months the market appeared oversold, yet the rallies were shallow, meaning the buy signals failed to generate enough profits to compensate for the losses of buying into such substantial declines.

    Not to mention the psychological pitfalls. If one loses for example , 20pts, 20pts, 13pts, will you then "accept" a mere 10pt profit? I'd venture that a true look into your soul will be an answer of probably not. You'll think "I'm finally right, I nailed the bottom and I'm milking this one." but low and behold the market breaks yet again. At some point YOU WILL catch THE bottom. However either a.) you'll be running low on money by that time and/or b.) you'll get out too early because THIS TIME you're not going to squander away the small profit you could have previously banked had you exited on the earlier temporary lows.

    There's better ways......
     
    #17     Nov 4, 2005
  8. Oh. This is an immemorial mistake to interpret oscilators as overbought or oversold. This indicator shows strength of a trend
     
    #18     Nov 4, 2005
  9. MACD and Stochastic example
     
    • macd.jpg
      File size:
      72.9 KB
      Views:
      277
    #19     Nov 4, 2005
  10. Don't care what is "shows" for you.
    Does it make money? That's what Pabst wanted to know. From what you shew, it don't look like it could be of much help.
     
    #20     Nov 4, 2005