weekend charting beginning 01apr, page-130

  1. 846 Posts.
    G'day Nambo,

    Here's one of my stock screener formula's for PRT,

    indicator1 = close
    c1 = (indicator1 <= 100.0)

    indicator2 = close
    c2 = (indicator2 <= DClose(1))

    indicator3 = Stochastic[14,3](close)
    c3 = (indicator3 <= 20.0)

    indicator4 = Volume
    indicator5 = Volume
    c4 = (indicator4 <= indicator5[1])

    indicator6 = Volume
    c5 = (indicator6 >= 2000000.0)

    indicator7 = close
    indicator8 = Average[41](close)
    c6 = (indicator7 >= indicator8)


    SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6] ((close/DClose(1)-1)*100 AS "% Chg yesterday")



    Here's another one,

    indicator1 = close
    c1 = (indicator1 <= 1.00)

    indicator2 = Stochastic[14,3](close)
    c2 = (indicator2 <= 40.0)

    indicator3 = Volume
    c3 = (indicator3 >= 5000000.0)


    SCREENER[c1 AND c2 AND c3] ((close/DClose(1)-1)*100 AS "% Chg yesterday")




    And another,


    indicator1 = close
    c1 = (indicator1 <= 100.0)

    indicator2 = close
    c2 = (indicator2 >= DHigh(1))

    indicator3 = Stochastic[14,3](close)
    c3 = (indicator3 <= 20.0)

    indicator4 = Volume
    c4 = (indicator4 >= 5000000)

    c5 = (DClose(0) >= DClose(1))


    SCREENER[c1 AND c2 AND c3 AND c4 AND c5] ((close/DClose(1)-1)*100 AS "% Chg yesterday")




    Here's another one,

    indicator1 = close
    indicator2 = BollingerUp[20](close)
    c1 = (indicator1>= indicator2)


    SCREENER[c1] ((close/DClose(1)-1)*100 AS "% Chg yesterday")

    ...............

    See if any of those suit your tastes,

    If anybody has any others you'd like to share, that'd be great.

    Regards
    DmansDad

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