weekend charting 14th-16th may, page-90

  1. 18,874 Posts.
    lightbulb Created with Sketch. 93
    Glovski,
    This is what I use for scans by Dema and RSI you can alter the RSI settings for you own set up...
    In the Filter box cut and paste this in then alter what you want..

    Fml( "close - ref close")> ATR(13) AND C>Ref(C,-1) AND Fml( "range34") < 440 AND V>500000
    AND Fml( "risk indicator")<0.15 AND Dema(RSI(14),3) > Dema(RSI(55),7)
    AND Dema(RSI(55),7)>56 AND Dema(RSI(14),3) > Dema(RSI(50),7)
    AND Dema(RSI(55),7)<61

    Then in the A box put in this

    Fml( "Dema filter")

    Then in the B box put in this

    Fml( "sharpe150_c")

    Then in the D box put in this

    C

    Then in the E box put in this

    ROC(C,30,%)

    Then in the F box put in this

    ATR(100)/Mov(C,100,E)

    That should do the trick..

    MACD I use Mad Max's Zero Lag Macd he's posted it on HC before so I'm sure he wont mind..

    Macd Zero Lag:

    EMA1:= Mov(CLOSE,13,E);
    EMA2:= Mov(EMA1,13,E);
    Difference:= EMA1 - EMA2;
    ZeroLagEMA13:= EMA1 + Difference;
    EMA1:= Mov(CLOSE,21,E);
    EMA2:= Mov(EMA1,21,E);
    Difference:= EMA1 - EMA2;
    ZeroLagEMA21:= EMA1 + Difference;
    ZeroLagMACD:=ZeroLagEMA13 - ZeroLagEMA21;
    ZeroLagMACD

    Macd Zero Lag Trigger

    EMA1:= Mov(CLOSE,13,E);
    EMA2:= Mov(EMA1,13,E);
    Difference:= EMA1 - EMA2;
    ZeroLagEMA13:= EMA1 + Difference;
    EMA1:= Mov(CLOSE,21,E);
    EMA2:= Mov(EMA1,21,E);
    Difference:= EMA1 - EMA2;
    ZeroLagEMA21:= EMA1 + Difference;
    ZeroLagMACD:=ZeroLagEMA13 - ZeroLagEMA21;
    EMA1:= Mov(ZeroLagMACD,8,E);
    EMA2:= Mov(EMA1,8,E);
    Difference:= EMA1 - EMA2;
    ZeroLagTRIG:= EMA1 + Difference;
    ZeroLagTRIG

    Cheers Pete
 
arrow-down-2 Created with Sketch. arrow-down-2 Created with Sketch.