weekend charting, page-16

  1. 1,775 Posts.
    lightbulb Created with Sketch. 341
    Been following this thred over the last couple of weeks..

    Well done to those that have put in the work and are sharing their thoughts...

    My questions is on the Stochastic's..

    I am using Amibroker and cant seem to get the smooth lines Robb is getting..

    Anyone else out there using Ami and if so have they got an Stochastic.afl they would like to share with me..

    One that is close to the smoothing to what the guys here are getting?

    At the moment I am using Stochastic Momentum as per below..
    but missing the two bars and the smooth role that the guys are getting..

    _SECTION_BEGIN("Stochastic Momentum");
    LookBack = Param("Lookback", 13, 2, 100 );
    Smooth1 = Param("Smooth 1", 25, 1, 100 );
    Smooth2 = Param("Smooth 2", 2, 1, 100 );

    HH = HHV( H, LookBack );
    LL = LLV( L, LookBack );

    StoMom = 100 * EMA( EMA( C - 0.5 * ( HH + LL ), Smooth1 ), Smooth2 ) /
    ( 0.5 * EMA( EMA( HH - LL, Smooth1 ), Smooth2 ) );

    Plot(StoMom, _DEFAULT_NAME(), ParamColor("Color", ColorCycle ) );
    _SECTION_END();

    _SECTION_BEGIN("Stochastic %D");
    periods = Param( "Periods", 15, 1, 200, 1 );
    Ksmooth = Param( "%K avg", 3, 1, 200, 1 );
    Dsmooth = Param( "%D avg", 3, 1, 200, 1 );
    Plot( StochD( periods , Ksmooth, DSmooth ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
    _SECTION_END();

    if anyone using Amibroker has one that is getting close, post it here so I can copy and paste it in to the afl editor or email it to me..

    Cheers in advance..
    DG
 
arrow-down-2 Created with Sketch. arrow-down-2 Created with Sketch.