Late lunch trade DAX40 strategy

Late lunch trade DAX40 strategy

While searching for profitable strategies, I came across something really simple in various forums and websites.

Basically it’s a trend following system and here we are only looking at the long side.
The trend is long when the price is above a higher average.

If the trend is long we take a long position after the morning tussle in the Dax at a late lunch. We hold the position overnight until the next morning and then liquidate it.

In my systems I like to set a filter after the time. Here for seasonal reasons some months and because of the over-weekend-risk friday are excluded.

As an explanation can be considered that the Dax follows the strong development of the S&P500 and DowJones shortly before and with their opening bell.

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. reb • 02/01/2023 #

    Hallo JohnScher
    there isn’t any SL, is it a choice or you didn t find any accurate ?

    • JohnScher • 02/01/2023 #

      An SL is not needed. If necessary, you can use an optimized SL.

  2. JohnScher • 02/01/2023 #

    Short variant, see at
    https://www.prorealcode.com/topic/late-lunch-trade-dax40-strategy/

  3. DANY • 02/01/2023 #

    Hi JohnScher,
    Thanks a lot for your contribution.
    Consider this release to avoid overfit.

    Some others suggestions?
    Kind Regards.

    //——————————————————-
    // late lunch trade
    // instrument dax40
    // timezone europe, berlin
    // timeframe 30m
    // created and coded by JohnScher
    //——————————————————-

    defparam cumulateorders= false

    EntraLong=1
    EntraShort=1

    TagliaPosizione=1

    MySL=3
    MyTP=3

    time2trade = time = 133000

    TriggerL = close > exponentialaverage [6] (close)
    TriggerS = close < exponentialaverage [6] (close)

    PatternL=rsi[2](Close)>65
    PatternS=not (dlow(1)>dlow(5))

    if EntraLong AND time2trade AND TriggerL AND PatternL then
    buy TagliaPosizione contracts at market
    endif

    if EntraShort AND time2trade AND TriggerS AND PatternS then
    sellshort TagliaPosizione contracts at market
    endif

    ExitL=time=080000
    ExitS=time=213000

    If LongOnMarket AND ExitL then
    sell at market
    endif

    If ShortOnMarket AND ExitS then
    exitshort at market
    endif

    If OnMarket AND MySL>0 then
    set stop %loss MySL
    endif

    If OnMarket AND MyTP>0 then
    set target %profit MyTP
    endif

    • JohnScher • 02/01/2023 #

      Thank you so much for exploring the Late Lunch Strategy.
      For discussion and in answer to your question, see here
      https://www.prorealcode.com/topic/discuss-the-late-lunch-strade-dax40-strategy/

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
zilliq The reasons why I think it's time consuming and we loose time to try to do backests and Auto...
filiprb Hello Zilliq, You don't need a system to produce a walk forward test. You can easily create...
Philip Raphael It is incredible! Thanks for sharing, Doctrading!
Reiner
8 years ago
Nicolas You should join and read the forum thread about this strategy. There are plenty of different...
Reiner Hi djtaktik and welcome, I have answered your question in the related Pathfinder forum beca...
danver34 is this version the definitive one or from the original one have there been modifications to...
Reiner
8 years ago
Nicolas Overfit on past history obviously. But it doesn't mean that it would still underperformed in...
Francesco78 Thank you for the clarifications Nicolas, I am more aware of the meaning of the backtesting ...
CanAny1Trade Hi all, could a simple indicator be made to mark the traditional Pit based ORB? I'm tryi...
Fabio Anthony Terrenzio this strategy works only in a well defined trend
brosly Good afternoon I am trying to get the complete code of lex strategy made by adolfo since I s...
dreif123 hi Adolfo, is Alex Auto Trading Botindex working on DAX as well ? if so , can you post the...
hvluthy@sunrise.ch I'm very interested to try out your strategy, but as a bloody newbie I need some help regard...
Scalp Hola Adolfo, tengo una variante de tu estrategia, pero no se programar, me puedes ayudar al ...
ALZ Hi, I tested this strategy and that doesn't work.. strategy is losing.. Does anyone curr...
Nicolas Ahah, I'm not the author of this one :) I know you are a great coder Wilko, why don't you p...
Wilko Thanks for the flattery! I will, I promise.  /F
Nicolas Still don't have seen anything from your own :) You promised me! Ahaha 
Andres Uffff, I didn't adjust the different index spreads. With the heavy spread of Italy It's nega...
davidp13 Good day. I know this was posted such a long time ago, but I though rebuilding the system on...
davidp13 Also to note that the one position in my code does not close the other, which as far as I kn...
Dave Hi, I'm new to coding and have been trying to modify the code a little to backtest an idea I...
Nicolas Better use the forums for coding assistance please. You'll get more results there for sure.
Dave Apologies - only just learning the site layout. Maybe you could delete the post?
Nicolas FR/Bonjour Steftonio, non pas de frais overnight calculé sur la durée du backtest, c'est une...
avatar
Anonymous Any reason why in 2016 this system is doing very bad respect the previous years?
Nicolas "very bad" is relative to the account equity. I do not forward test this strategy since I po...

Top