Stochastic Cross

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #158430 quote
    Majellan
    Participant
    Average

    Could I get assistance with  this screen please?

    Screen for stocks where:

    Stocks are priced between $100 and $200.
    EMA(20) > EMA(40) and EMA(40) > EMA(60) on Daily Timeframe
    EMA(20) > EMA(40) and EMA(40) > EMA(60) on H4 Timeframe
    Stochastic K Crossed above Stochastic D, 1 bar ago. (H4)
    Stochastic K is below 30. (H4)

    Thank you.

    #158441 quote
    robertogozzi
    Moderator
    Master

    There you go;

    Timeframe(Daily)
    D1 = close >= 100
    D2 = close <= 200
    Ema20d = average[20,1](close)
    Ema40d = average[40,1](close)
    Ema60d = average[60,1](close)
    D3 = Ema20d > Ema40d
    D4 = Ema40d > Ema60d
    //
    Timeframe(4 hours)
    Ema20h = average[20,1](close)
    Ema40h = average[40,1](close)
    Ema60h = average[60,1](close)
    H1 = Ema20h > Ema40h
    H2 = Ema40h > Ema60h
    K  = stochastic[8,3]
    D  = average[3](K)
    H3 = K crosses over D
    H4 = K < 30
    //
    Timeframe(default)
    CondD = D1 and D2 and D3 and D4
    CondH = H1 and H2 and H3[1] and H4
    Cond  = CondD and CondH
    Screener[Cond]
    #162302 quote
    Majellan
    Participant
    Average

    Thank you

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Stochastic Cross


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Majellan @pbateson9 Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by Majellan
5 years ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 01/19/2021
Status: Active
Attachments: No files
Logo Logo
Loading...