Double 7 by Larry Connors

Forums ProRealTime English forum ProScreener support Double 7 by Larry Connors

Viewing 7 posts - 1 through 7 (of 7 total)
  • #21420

    Hi all

    Is it possible to program The Double 7 Strategy by Larry Connors as a screener and indicator?

    http://systemtradersuccess.com/double-seven-strategy/

     

     

    #21550

    Yes of course. So you only want to detect signals that meet these 3 conditions? :

    1. Price must be above its 200-day moving average
    2. Buy when prices closes below 7-Day low.
    3. Sell when price closes above 7-Day high.

    These are the criterias for the long only strategy.

    #21736

    That is correct. Seems easy. Now I just have to learn how to code it. Thanks for the answer Nicolas!

    #35814

    Hi Johan, do you want to share the code?

    #35848

    Here is the screener. Dont think you need the exit conditions on the screener.

     

    #35850

    sorry made a mistake

    2
    3
    4
    5
    6
    c1 = close > average[200]
    c2 = close < DLow(7)
    filter = c1 and c2
    SCREENER[filter]
    #35984

    Thanks!

Viewing 7 posts - 1 through 7 (of 7 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login