Larry Williams Smash Day

Forums ProRealTime English forum ProOrder support Larry Williams Smash Day

Viewing 8 posts - 1 through 8 (of 8 total)
  • #202373

    Has Larry Williams Smash Day Strategy been examined here yet? And what might the code look like? It seems quite simple to me

    To go long, yesterday’s close must have been below the previous day’s low. So although the market has shown weakness, the market then rises above yesterday’s high today and there we enter long (short everything in reverse).
    The exit takes place in profit if there has been a profitable opening price (alternatively closing price).

    cf. also
    https://www.youtube.com/watch?v=Gg72a9uLW08
    from 0:54 min

     

    #202389

    There you go:

    I did not watch the video, I coded this strategy based on your details.

     

    2 users thanked author for this post.
    #202397
    JS

    I did watch the video 😉 and it’s a very nice setup.

    Time frame: Day

    Forex: EUR / USD

    The idea of this system is to look for a false breakout.

    As the basis for the “Smash Day” system, Larry Williams uses the following setup:

    //LONG

    If Close < Low[1] then

    Buy 1 contract at High STOP

    EndIf

    //SHORT

    If Close > High[1] then

    SellShort 1 contract at Low STOP

    EndIf

    This basic system can be used in this setup and will always be in the market (Stop and Reverse), profitable but a fairly high drawdown.

    Furthermore, an optimized stop loss is used:

    Set Stop Loss SL * PipSize

    Optimization SL: 0 to 600 step 50

    An (optimized) filter is also used:

    FilterLong = High[1] < High[n]

    FilterShort = Low[1] > Low[n]

    Optimization n: 5 to 30 step 5

    A third variable that is used is the “First Profitable Close” but I have not included that here.

     

    2 users thanked author for this post.
    #202427
    JS

    With the addition of optimized “Target Profit”…

     

    2 users thanked author for this post.
    #202608

    What a name for a system ‘Larry Smash Day’ !!!! Interesting idea though……………

    I wonder if it could be used on 12hr or 6hr?

    #202613
    JS

    Try it, Larry won’t stop you… 😉

    #202646

    ……………..i think I will and see what comes up, although i like the idea of the bigger ‘Day’ time frame.

    thank you for sharing this

    #202962

    You are the best! A very big thank you to you cracks !!

    Thank you very much.

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

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