Kalman Filter

Discussion in 'Forex' started by oldjack, Jan 11, 2011.

  1. 377OHMS

    377OHMS

    Excellent.

    The state vectors would have to contain high order derivatives which are noisy. That is exactly correct. Kalman filters are good for physical dynamics because those can generally be covered by position and its first and sometimes second derivatives velocity and acceleration. Market data contains instantaneous displacements that would require third and fourth derivatives jerk and yank. Those are incredibly noisy and basically unusable.
     
    #11     Jan 12, 2011
  2. panzerman

    panzerman

    DECO & 377OHMS,

    Do you guys have an opinion on using the MESA (All Poles) method to find and trade the dominate cycle? Thanks.
     
    #12     Jan 12, 2011
  3. 377OHMS

    377OHMS

    I'm not familiar with that.
     
    #13     Jan 12, 2011
  4. Now look what you've done!
     
    #14     Jan 12, 2011
  5. See Jackoff? Jerk and yank. 377, I would address you by your resistor color code, but I have forgotten how. Let's see... "Black boys rape our young girls, but Violet gives willingly, get some now!" It's been so long since I designed anything physical that I couldn't design a voltage divider. Algorithms and software are so much better behaved. Your explanation was very eloquent, and what I meant to say. I would only add that there is no system noise and no measurement noise, so a linear Kalman would devolve to however many derivatives you needed to approximate price action.
     
    #15     Jan 12, 2011
  6. All price cycle theory, of whatever stripe, is bullshit. Price action is all about generating volume for accumulation or distribution by the big dogs, and support and resistance along the way.
     
    #16     Jan 12, 2011
  7. Oooops! Fortunately the tools to do it are painful to even think about, much less implement.
     
    #17     Jan 12, 2011
  8. pspr

    pspr

    This is the metastock code for an indicator named the Kalman filter. I'm sure Art will rip the code as not even close. Anyway, the resulting indicator does not appear to have any usefulness.

    {Kalman Filter}
    {Advantage Systems: www.advantage.online.pl}
    PRICEE:=C;
    Smooth:=.13785*(2*PriceE - Ref(PriceE,-1)) +
    .0007*(2*Ref(PriceE,-1) - Ref(PriceE,-2)) +
    .13785*(2*Ref(PriceE,-2) -Ref(PriceE,-3)) +
    1.2103*PREV - .4867*Ref(PREV,-1);
    SMOOTH;
     
    #18     Jan 12, 2011
  9. An odd looking beast. All odball filters are a solution to some problem, you just don't know what that problem is.
     
    #19     Jan 12, 2011
  10. panzerman

    panzerman

    Here is a good reference article. As has been mentioned, there is nothing particularly magical about Kalman filters or any other filter in and of themselves.

     
    #20     Jan 12, 2011