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
Iber0 Asi quedaria con el spread de IG [IMG]http://i65.tinypic.com/2418ism.jpg[/IMG]
avatar
bjoern Seems to work nice on BUND - M15 with SL 70 and TP 120
hvluthy@sunrise.ch I tried to backtest this code but don't get any restults. Can any body help me?
Nacho Buenos días Raul, tengo puesto este sistema desde hace unos días en una cuenta demo en la ve...
Dominik Hola Raul ... it looks wonderful :-) Why does it not work if I use less than 100,000 € capi...
Bobbi Hola y gracias por compartir! Descubrí que en 5 minutos teníamos algo muy bueno! Pero no ...
pascal3431 Salut Doc , Je ne vois pas ce qui fait office de stop dans ce code .. un retour dans le nua...
Doctrading Bonjour, Il s'agit juste d'une stratégie où on est toujours en position : soit à l'achat / ...
pascal3431 Bonjour, après quelques essais sur EUR/USD au M15 en rajoutant(car sinon on est en perte) u...
jonjon Hi Raul. Just a thought, is there a way to limit the maximum number or orders that can be ac...
Petrus Hi jonjon. If you want to exit at the 4th bar only if the trade is losing money, you have to...
emadimarco Hi, I would like to do a test by doing it by day, but I'm not able to change the start and e...
Doctrading Interesting concept, good work !  
verdi55 Thank you. This is mainly to show the concept, but I would not trade with this system as it ...
Kris75 Hi Verdi, I like very much the point and figure tool and would like to work with your tradi...
verdi55
8 years ago
Marcel Hi, I tested this strategy on Spot Gold with a brick size of 20 on the weekly timeframe with...
Nicolas Because the renko chart construction begin at the first price of the loaded history. So you ...
JOKAMAURICE I am learning to code. I try to understand these lines newbricksup = (round(((close - upbr...
danhei Hi I am tryong to figure out how trist strategy works. I am new to pro real time. Can some...
Plop61 Hello,Thank you for sharing this beautiful strategy.Is it possible to indicate the code for ...
NoName Thank you very much for this fascinating trading system. It is still proving to be extremely...
ALE
8 years ago
pollon Ciao Ale,  anche a me da questo errore  "QQE_QUDAX1HBUY"  "QQE_QUDAX1HSELL"  "UNIV_QUDAX...
reb Hi Ale do you trade these QU strategies?  Are the results same as backtests Thnaks in adv...
avatar
crazytrader Hi anyone that has run this lately?
DonDollar Ni Nicolas, thanks for the comment. I started with a 3000$ Position and 1 Pip Spread. I fo...
DonDollar Stupid me, it is indeed 1 POINT Spread....  
HarryPro Hello Clemens, I tested your Friday XAU and found it broke down when going well into the pas...
ellejoe Hi Ale, can you please share your live results and updated version with us? Was this strateg...
ALE Hello ellejoe,since 1th november 2016,I can confirm probacktest results, I cant run it in li...
David Thompson I'm new to PRT, and yet I know I need to take away the 'human emotion' from my trading - so ...
DANY I did it on demo account; it's too dangerous for mea and I can not resist psychologically  ....
demoz How can a demo account be dangerous? Did you have it run live (on a demo account for exampl...
DANY Yes, I mean that I tried on a demo account for 2 months and it had work fine, like the BackT...
Dimi.A Awesome mate.
mora87 Hi David and Nicola, I'd like to share idea with you guys which is related to David's Idea. ...
Nicolas Please ask for custom coding in forums instead.
ALE Hi Pat This code was nothing more than an experiment
pat95162 Hi Ale Do you have same results as me ? The strategy works very well in 2017 and now in 2-...
Nicolas Built on the history means that it suits the history. Always develop ideas in In-Sample peri...
ALE
9 years ago
ALE no, only with TF 15m
enzo_52 Grazie tante, Thanks so much 
JanWd Hallo Ale, First of all, thank you for this strategy. Could you explain what the BLUSTER ...
ALE
9 years ago
ALE @Nicola Nicolas thanks for your kind attention, the same indicator used with different set c...
miguel33 In piena sintonia . 
Ernesto1 Grazie Ale per aver condiviso con noi il tuo indicatore  P.A.B. aspettiamo il tuo script s...
Matriciel
9 years ago
chaostrader82 Dear Matriciel , can you add in the following ? stoploss=30pips , take profit= 4pips <===...
chaostrader82 Theres some bugs still with this program , can somebody help to improve on the following? I...
Matriciel Hi Chaostrader82,You know, I'm starting in automatic strategy coding so I'm not going to be ...
Cosmic1
9 years ago
Cosmic1 Lets discuss here: https://www.prorealcode.com/topic/cac-breakout-ported-to-other-markets/
rejo007 hello, anybody use thi strategy for a long time? thanks
abacus23 Hi, I have been trading this strategy and it seems to work quite well recently. Is there a...
Elsborgtrading No that is wrong :) 1st runs always- then only run 2nd if 1st is on market with positions(ar...
Elsborgtrading It can only be fully automated if IG change minimum SLto 7 at night on DAX multi timefra...
Elsborgtrading A small example. the strategy would have opened 3 position on Dec 4th 2016 and keept it for ...
Cosmic1
9 years ago
Cosmic1 @JadeDB What times are you putting in?
sincitytrader I tried this one out recently,  and wasn't profitable for me.
Cosmic1 Yes, not great lately. I stopped this live at the end of last year. Will wait to see when th...
Mansoor What does COI stand for?
MikeGC Hi Mansoor, COI is the abbreviation for the Coppock indicator.
nonetheless Anyone interested in this strategy please see forum topic: https://www.prorealcode.com/topic...

Top