Blue Monday DAX

Blue Monday DAX

Hi guys,

here is another DAX trading idea. It is very simple and generates only few trades but it seems very profitable if it happens.
Have fun
Reiner

 

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. Doctrading • 05/22/2016 #

    I only have 1 trade for this backtest… where is the bug ?
    Anyway, thanks for sharing.

  2. Doctrading • 05/22/2016 #

     
    Oh, sorry, it works fine !
    Few signals, but very performing since 2015.
    For end 2013 and 2014, no gain.
    It’s an interesting concept.

  3. Andres • 05/22/2016 #

    Very, very interesting and simple strategy. Many times it’s only neccesary see what happened day by day on the markets instead search and search complicated indicators.
    Thanks for share.
    Andrés.

  4. CKW • 05/22/2016 #

    Hi Reiner,
    Thanks for sharing! I have seen this trend quite often on blue Monday as your strategy, and also the next day (Tuesday) on same time very often goes opposite!!!
    So, I did some modification based on your code:

    Decrease CloseDiff to increase entry %
    Shorten the exit time
    Add in similar strategy on Tuesday but Sellshort

    Results is not bad too
    // MonTue DAX 5m

    // Code-Parameter
    DEFPARAM FlatAfter = 095500

    // trading window
    ONCE BuyTime = 085500
    ONCE SellTime = 093500

    ONCE UCloseDiff = 30
    ONCE DCloseDiff = 0

    ONCE PositionSize = 5
    ONCE sl = 50

    // Long all in, if it\'s Monday and the market is 30 points higher
    IF Not LongOnMarket AND Time = BuyTime AND (CurrentDayOfWeek = 1) THEN
    Diff = close - DClose(1)
    IF Diff > UCloseDiff THEN
    Buy PositionSize CONTRACT AT MARKET
    ENDIF
    ENDIF

    // Short all in, if it\'s Tuesday and the market is 30 points lower
    IF Not ShortOnMarket AND Time = BuyTime AND (CurrentDayOfWeek = 2) THEN
    Diff = close - DClose(1)
    IF Diff < DCloseDiff THEN
    Sellshort PositionSize CONTRACT AT MARKET
    ENDIF
    ENDIF

    // exit position
    IF LongOnMarket AND Time = SellTime THEN
    SELL AT MARKET
    ENDIF

    IF ShortOnMarket AND Time = SellTime THEN
    exitshort AT MARKET
    ENDIF

    // stop
    SET STOP pLOSS sl

     
     
     
     

    • Reiner • 05/22/2016 #

      Hi CKW,
      Thanks for your feedback. I have observed this behavior as well. The best rules are so simple.
      regards
      Reiner

  5. Bandido • 05/22/2016 #

    It seems very good also with cac40, and quite good with ftse100.
    Thank you!

  6. Kenneth Kvistad • 05/22/2016 #

    Any new updates or news about this strategy?

    • Reiner • 05/22/2016 #

      Hi Kenneth,
      Sorry for the late answer.
      I have tested this little strategy with 200.000 candles and updated the parameters. I know some crazy guys trading this little beauty and make a lot money last week. Please find the code below:
      // Blue Monday DAX

      // Code-Parameter
      DEFPARAM FlatAfter = 093500

      // trading window
      ONCE BuyTime = 85500
      ONCE SellTime = 93500

      ONCE CloseDiff = 50

      ONCE PositionSize = 25
      ONCE sl = 50

      // Long all in, if it\'s Monday and the market is 50 points higher
      IF Not LongOnMarket AND Time = BuyTime AND (CurrentDayOfWeek = 1) THEN
      Diff = close - DClose(1) // with Sunday quotes
      IF Diff > CloseDiff THEN
      BUY PositionSize CONTRACT AT MARKET
      ENDIF
      ENDIF

      // exit position
      IF LongOnMarket AND Time = SellTime THEN
      SELL AT MARKET
      ENDIF

      // stop
      SET STOP pLOSS sl

      best, Reiner

  7. mamio • 05/22/2016 #

    Hi,
    I only have one trade:
    25 contracts @10505,3 on 5th december 2016.
    What I am doing wrong?
    Regards!
     

    • Reiner • 05/22/2016 #

      Hi mamio,
      Sorry for the late answer.
      This strategy provides only few but very profitable trades. To see all trades you have to extend the number of 5M candles to the maximum possible value 100.000 or 200.000 for PRT premium.
      Best, Reiner

  8. morgan89 • 05/22/2016 #

    Bonjour Reiner,
    Merci pour la stratégie. Les résultats sont vraiment bons.Pour un compte de 10 000€, la taille de position est de 25. J’imagine que c’est un mini lot donc 25€/pips. Ce n’est pas trop ?Bonne journée

    • Reiner • 05/22/2016 #

      Bonjour morgan89,
      You can trade this idea with every size that fit to your account size. This signal isn’t very frequent but when it happens the probability to make money with it is very high. I agree 10k is to small for a full contract.
      Best, Reiner

  9. morgan89 • 05/22/2016 #

    Bonjour,
    Je voudrai savoir comment réinvestir les gains avec cette stratégie svp ?
    J’ai essayé  ONCE PositionSize = 25 + strategyprofit
    Mais ca ne fonctionne pas 🙂
    Merci de votre aide

    • Reiner • 05/22/2016 #

      // smart position sizing
      Capital = 10000
      Risk = 0.1
      StopCoefficient = 75
      equity = Capital + StrategyProfit
      maxrisk = round(equity * Risk)
      PositionSize = MAX(10, abs(round((maxrisk / StopCoefficient) / PointValue)))

       

  10. morgan89 • 05/22/2016 #

    Merci Reiner,Ca fonctionne parfaitement.Je ne comprends pas à quoi correspond StopCoefficient
    De même,  MAX(10,........
    Cela multiplie par 10 la valeur de abs()  ?

    • Reiner • 05/22/2016 #

      you’ll find more details here:
      https://www.prorealcode.com/blog/learning/money-management-prorealtime-code/
      With the MAX-statement you can determine a minimum position size in that example the size is always 10 as long the money management algo delivers a higher value then 10
       

  11. morgan89 • 05/22/2016 #

    La formule est légèrement différente.
    C’est normal ?
    StopLoss = 10 // Could be our variable X
    PositionSize = abs(round((maxrisk/StopLoss)/PointValue)*pipsize)

  12. danver34 • 05/22/2016 #

    is the Monday strategy based on some kind of trade gap strategy ?
     

  13. ALZ • 05/22/2016 #

    Hi Everybody
    Sure.. this strategy works too with CAC40 for example,
    Just necessary to adapt time, diff, & days which are specifics for each market..

    About this strategy, i’m puzzled because i think there is maybe another possibility to the code concerning the exit position.. i’m currently checking ..

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
emism12 Looks great, personally I don't use automated trading for single stocks, but is definitely o...
adconsulting Ciao, I look that the strategy (backtest 50 k), works very good wiht US 500 CASH 1 EURO in...
Kev Monaghan The equity curve looks to follow the stock price almost perfectly, Have you tested on stock ...
cdc.andersson Hello, I´m trying to paste the code and start testing but can´t get it to work in PRT. Shoul...
Lupo32 Thank You Aaron
superfalcio I'm having no more issue on the new Prorealtime release 11.1
Jigsaw20000 Bonjour, Je voudrais mettre le liens du code en format .itf mais je n'y arrive pas , quelqu'...
Corto78 Il faut aller dans la liste des ProBacktest & Trading Automatique (là ou tu as créer ton...
Malloc Bonjour, Votre système a l'air intéressant et prometteur mais en l'état il est inutilisable...
juanj
3 years ago
herke036 For the question how to fill the variables a,b,c,d,e,f,g, x and y? a,b,c,d,e,f,g is selecti...
herke036 In your code I see If onmarket = 0 and Type22 = 1 and hora1 and hora2 Then If InsideBar[1]...
UkDownUnder How do we apply this to a strategy we have made, Thanks
superfalcio Hello, on the 2h timeframe I got a better performance in terms of win% and profit factor. I ...
Jiankyr82 Juan thanks for sharing, I had played with it few days, as also try to catch up on my pro-re...
Lespa212 Hi Samsampop, are you using this strategy? did you add a SL and an exit in case of a trend ...
imonix Have been trying this on demo since Monday before deciding whether to go live with it. Using...
Roberto Blázquez I'm sorry, I've tried it since November 2012 and it's bad results.
Doctrading
4 years ago
Stanko Ciao doctrading, grazie per il tuo contributo. Volevo chiederti se hai tenuto in osservazion...
Stanko Buongiorno doctradinge buongiorno a tutti. Vorrei riportare all'attenzione questo sistema p...
Meta Signals Pro Hi, Yes I am monitoring all the strategies posted on this site and I confirm that the strat...
Pierreco1991 Hello Can you confirm this configuration for FRANCE ? //Time in UTC+8 Rest0Minutes =...
Godo Bonjour Souhait Sam, Après de nombreux essais pour le mettre en format afin d'utiliser ce c...
Nicolas Il faut supprimer celles qui existent dans la fenêtre d'optimisation et les créer en dur dan...
crusoe76 hi there, anyone can help making this strategy work, i have a message saying replace variabl...
frenqle Hi There.. It seems the TSL stop loss is not working.. it does not respond is that correct?
Ciccarelli Franco Per lasciare che la strategia venga eseguita (dopo aver importato il file): Basta eliminare...
JADINVEST Hello Jan, hello everyone, Thanks Jan for this strategy! Since 2020, have any of you found a...
FXmike hey my friends, thank you for this great code. my problem is he make no trade open. backtest...
FXmike Can i put a Action that my start contract is smaller than 1 ? 0.3 or 0.5 ? In wich Position...
phoentzs I wrote the code for M15 back then and also variants in H1 and M1. Everything works so far....
Jan Wind Thanks for sharing ! The Gain/Loss ratio is a bit low, 1,16, hardly offset the risks take...
drive whats the period ?
Lucas0000 Hola. estoy buscando un programador en proorder, para hacer un programa basado en el Q-trend...
Ludwig Bonjour Merci pour le code, je souhaite intégrer un break even et mette en place un réinves...
superfalcio hello, this strategy is pretty interesting, anyway on index after diferent suggestion and im...
Fralex Hello everyone I optimized the original “LongOnly-DAX-4H-TMA-Channel” algorithm over a pe...
YvesRobert @robertogozzi. It's done. Thank you
YvesRobert Hello Roberto, some questions about your strategy. 1 - Do the 2 lines SET TARGET pPROFIT T...
robertogozzi 1. The 2 lines SET TARGET pPROFIT TP and SET STOP pLOSS SL are always executed, each bar. Bu...
avatar
Anonymous Hi robertogozzi - thank you very much for sharing this strategy. I have performed various ...
robertogozzi Thank you samsampop.
Dotan Hello guys I really appreciate this coding effort but can I use this code for Mt5 Forex Trad...
Gubben So far so good. After a long drawdown it was winning four times in five weeks. Since 24 jul...
pat95162 Salut Pourquoi je n'ai pas les même résultats que vous
UkCoopDownUnder Any hints for us, on which variables we should be optimising ? As of November 2020, the cu...
murre87 No Stoploss?
bousalahane Hi Rajesh Deshpande, Thank you for this code, I see that the code is perfect, but the posit...
Bibi83 Bonsoir à tous Je viens de backtest la stategie sur EUR/USD en graphique 1H sur 1 mois et ...
Peter I recognized a possible problem with the timeframe / Defparam variables. As far as I know, t...
superfalcio Hello Peter, it is long time i have been watching this strategy, very good and interesting ...
Peter I indeed do have different modified strategies in the market. In the past my variants perfor...
JJ Tec Hola. Me gustaría contactar contigo para ver la estrategia..
nilsla1981 Has someone already tested in real ?
Lucas0000 Hola. estoy buscando un programador en proorder, para hacer un programa basado en el Q-trend...
Alberto Aguilera Hi! Thanks for your strategy Anyone can check it with 200 bars?
TempusFugit Hi, this simple system for DOW and only shorts has worked quite well, maybe because of its q...
phoentzs Unfortunately, I never pursued this strategy further. Maybe I should take a look with what ...

Top