DAX 5 min automated trading by Andrea Unger

DAX 5 min automated trading by Andrea Unger

Good evening,
this is my first article in this beautiful community, so I hope you will appreciate the content and contribute by giving me suggestions for improvement in my trading!

The strategy based on the 5 min DAX is not mine but comes from a webinar of the famous Andrea Unger; It is based on the breakdown of the maximum or minimum of the first hour of trading (08: 00-09: 00 AM).

The strategy needs the “Dfactor” indicator which is attached at the end of the current post too.

 

 

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. Sofitech • 06/10/2016 #

    Hello and thanks for your article. As i have an import problem on my platform, could you copy/paste the dfactor.itf code in txt here ? So i can create the indicator.

  2. burghy17 (Andrea) • 06/10/2016 #

    Hi sofitech, thanks for your question, here is the code for the Dfactor indicator (really simple)

  3. burghy17 (Andrea) • 06/10/2016 #

    Dfact=0
    dayofw=0

    Dfact=(ABS(Dclose(1)-Dopen(1)))/(ABS(DHigh(1)-Dlow(1)))
    dayofw=Dayofweek

    Return Dfact as \"df\", dayofw as \"dayofw\"

     

  4. gianpiero • 06/10/2016 #

    great code…
    also on Cac40 it works very well during the last month…but if you increase the time horizon tends to lose efficacy.I noticed that works well in the bullish phases, so with a filter as a short moving average could improve.
    maybe during weekend I do some testing
    Ciaooo
     

    • burghy17 (Andrea) • 06/10/2016 #

      Thanks Gianpiero for your comment,
      I’ll wait for your improvement !
      Have a nice Week End
      Ciao
      Andrea

  5. makdec • 06/10/2016 #

    Grande Andrea

  6. davidp13 • 06/10/2016 #

    Hi. For some reason I do not get the same trades as you when I test this. What is your timezone set at as this would impact it dramatically? 

  7. burghy17 (Andrea) • 06/10/2016 #

    Hi davidp13,
    I don’t know for wich reason your backtest is so different from that one I posted here; the Time zone I used for this code is CET (Rome).

  8. alfredo • 06/10/2016 #

    Ciao, ma capita anche a voi che sul 5minuti si interrompe spesso e bisogna farlo ripartire?

  9. burghy17 (Andrea) • 06/10/2016 #

    Ciao Alfredo, il problema è nel codice di gestione del trailing stop , ti posto il codice che uso senza tale funzionalità (il backtest non cambia)
    DEFPARAM cumulateorders = false
    DEFPARAM Flatbefore = 090000
    DEFPARAM Flatafter = 220000

    ncontr=2 //n contratti da comprare o vendere per posizione
    x=1 //moltiplicatore della barra della prima ora
    y=0.5 //dailyfactor da utilizzare

    dailyfact, dayofw = CALL \"Dfactor\"
    //mytrailstop=Supertrend[5,20]

    //fiso valore moltiplicatore per determinare il livello di ingresso e del massimo/minimo della prima ora
    moltipl=x

    //individuo maz e minimo prima ora
    if time = 080000 then
    maxprimaora=High
    minprimaora=Low
    endif
    if time > 080000 and time <= 090000 then
    if High > maxprimaora then
    maxprimaora = High
    endif
    if Low < minprimaora then
    minprimaora = Low
    endif
    endif

    // determino i valori di ingresso Long e Short
    delta = moltipl*(maxprimaora-minprimaora)
    ingressolong=maxprimaora+delta
    ingressoshort=minprimaora-delta

    // determino i valori di STOP LOSS sia long che short
    stoplong = maxprimaora
    stopshort = minprimaora

    //verifico innanzitutto che il daily Factor sia minore di 0,75 e che non sia venerdì
    if time <= 100000 then
    if dailyfact < y and dayofw <> 5 then
    // verifico se ho rotto max o min della prima ora
    if High > ingressolong and not onmarket then
    stopl=stoplong
    buy ncontr contract at market
    SET STOP LOSS stopl
    elsif Low < ingressoshort and not onmarket then
    stopl=stopshort
    sellshort ncontr contract at market
    SET STOP LOSS stopl
    endif
    endif

    endif

    ….

  10. alfredo • 06/10/2016 #

    Grazie Andrea 

  11. alfredo • 06/10/2016 #

    Ciao Andrea, l’ho fatto partire con le modifiche che hai fatto ma mi ha aperto una posizione short oggi con uno stop loss a oltre 7000 punti di distanza, possibile?

    • burghy17 (Andrea) • 06/10/2016 #

      Ciao Alfredo, purtroppo ho notato anche io questo comportamento anomalo che in fase di backtest non mi risultava, devo verificare il motivo ….

  12. miguel33 • 06/10/2016 #

    il codice ha dato buoni risultati di guadagno  in reale sul 4 ore .

  13. burghy17 (Andrea) • 06/10/2016 #

    Ciao Miguel,
    si il codice è buono, ma soprattutto la strategia di Unger è molto robusta, purtroppo non ho molto tempo per dedicarmi alla programmazione, e ci sono ancora delle inesattezze nel posizionamento degli stop loss (i valori sono del tutto sballati) …..

  14. miguel33 • 06/10/2016 #

    Si come strategia è da approfondire per migliorarla . In reale per ora mi ha dato ottimi ritorni di gain ma può avere margini di miglioramento straordinari . Anche se mi ha fatto solo trade long . Allego risultato da quando l’ho inserita in reale. 
    Cerchiamo di migliorarla insieme. 
    Buon lavoro 
    miguel 
     
     

  15. miguel33 • 06/10/2016 #

    PS- non riesco a inserire foto . 

  16. Andrea Unger • 06/10/2016 #

    Salve a tutti, mi è stato segnalato questo post e ringrazio l’autore per il lavoro fatto sulla mia strategia. Ero già in contatto con PRT per avere una versione da far girare sulla loro piattaforma ed allego la versione da loro prodotta che corrisponde quasi in tutto ai risultati che ho con il mio codice originale (ci sono solo un paio di punti da verificare su cui i tecnici di PRT stanno lavorando). Per un utilizzo appropriato della strategia vi consiglierei di prendere visione del webinar gratuito dove viene spiegato il processo attraverso il cui è stato creato quel codice:
    versione italiana:  http://bit.ly/PRTIT-1
    Versione Inglese  http://bit.ly/PRTEN-1
     
    Grazie, ciao
    Hi all, this post was notified to me and I thank its author for the work done on my strategy. I was already in touch with PRT to get a version to use on their platform and I attach last version they produced which corresponds nearly completely with my original code (there are only some minor issues on which PRT experts are currently working). To use the strategy properly I would suggest to attend the free webinar where the process to get to that code is explained:
    Italian version http://bit.ly/PRTIT-1
    English version: http://bit.ly/PRTEN-1
     
    Thanks
    Cheers
    Andrea Unger
     
    DEFPARAM FLATAFTER=215500 // replace closetime condition

    RangeMultiplier=0.95
    BegTime=090000
    EndTime=095500

    MyContracts=1

    SkipDay=dayofweek<>5
    if intradaybarindex=0 then
    maxSetup = 0
    minSetup = 0
    dailyfactor = abs(dOpen(1)-dClose(1))<0.75*(dHigh(1)-dLow(1))
    tradethisday=0
    else
    if barindex=tradeindex then
    tradethisday=1
    endif
    endif

    If dailyfactor and Time >= BegTime and Time <= EndTime and SkipDay and tradethisday=0 then
    if maxSetup=0 then
    maxSetup = dHigh(0) + RangeMultiplier * (dHigh(0) - dLow(0))
    slLong=dHigh(0)
    endif

    if minsetup=0 then
    minSetup = dLow(0) - RangeMultiplier * (dHigh(0) - dLow(0))
    slShort = dLow(0)
    endif

    Buy mycontracts contract at maxSetup stop
    Sell at slLong stop

    SellShort mycontracts contract at minSetup stop
    ExitShort at slShort stop
    endif

    If LongOnMarket then
    Sell at slLong stop
    elsif ShortOnMarket then
    ExitShort at slShort stop
    endif

    set stop loss 1000

     
     

    • burghy17 (Andrea) • 06/10/2016 #

      Grazie Ing. Unger per il suo commento e per il suo post, il codice che ho caricato, un po’ più “elaborato” del suo :-)), in effetti nasce dalla visualizzazione del webinar free relativo alla sua strategia; purtroppo non sono un programmatore professionista pertanto ho qualche difficoltà a tradurre fedelmente le indicazioni da lei fornite in righe di codice per Pro Real Time …. il backtest mi da però dei buoni dati in termini di prestazioni; la sto infatti testando in demo …..
      Buona serata
      Andrea B.

  17. miguel33 • 06/10/2016 #

    Non mi sembra migliore il codice , anzi in backtest dal giugno 2012 mentre il precedente ha un guadagno del 122 % questa ha una perdita del 58% . Cosa mi sfugge se leggo che sono simili ?
    Ho tentato ieri di collegarmi al webinar dell’ ing Unger ma non è stato possibile.
    Grazie e buona giornata .
    miguel
     

  18. Andrea Unger • 06/10/2016 #

    Su quale strumento testi il tutto? A me sul future dicembre (ovviamente non dal 2012) da trade corrispondenti al modello originale

  19. miguel33 • 06/10/2016 #

    Ho fatto il backtest sul DAX cash mini  
    purtroppo con l’ipad non mi da la possibilità di inserire le foto dei test
     

  20. miguel33 • 06/10/2016 #

    dott. Unger e’ possibile avere il codice per la MT4 ?
    Grazie .

  21. volpiemanuele • 06/10/2016 #

    Dott. Unger, ma la versione pubblicata della strategia è quella corretta o i tecnici in seguito alle verifiche hanno apportato delle modifiche?
    Grazie

  22. Francesco78 • 06/10/2016 #

    Ciao a tutti, qualcuno sta ancora usando questa strategia? la ho appena testata e mi pare che da Agosto 2016 non stia performando…

    • Gianluca • 06/10/2016 #

      Pare anche a me che non vada un granchè

  23. Francesco78 • 06/10/2016 #

    gira sull 1hr non sul 5 minuti

  24. calefrago • 06/10/2016 #

    Salve,
    ho scaricato la strategia e ho provato a fare un test ma come risultato da 0, devo cambiare qualche impostazione?

  25. pippo999 • 06/10/2016 #

    Someone still using this strategy? Are there any results available?

  26. Valer Rob • 06/10/2016 #

    Andrea, are you still using expert advisor?

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar

+15 more likes

Related users ' posts
Anjuna Marine Thanks for sharing this. I've tested it over 13 years, and each year has been profitable. I ...
phoentzs
6 months ago
Gio56 Bonjour, merci pour ce code. j'ai juste un problème sur le code, j'ai un message “L’instru...
Nicolas Il faut supprimer cette ligne qui est utile uniquement pour visualiser des valeurs durant le...
Gio56 Super merci Nicolas cela fonctionne. Top
sfl Removing the short side will help, I would like to know from the author where are the condit...
WE ARE SOCIETY DEFPARAM cumulateOrders = False rem CAC40 (france40) en 10 secondes rem à la ligne ci-dess...
David Daget Bonjour. A noter que cette stratégie fonctionne aussi sur le ftse. Ce qui n'est pas surprena...
YvesRobert Hello daviddelaferla. Ok, but to optimize period and mode, filter1 and filter2 must be 0 or ...
davidelaferla Hello YvesRobert! To optimize period and mode, filter1 and filter2 must be 0
Germano77 hello, thx for sharing, but wich broker do you use? At IG I got the notification "automatic...
sfl what do you think using it with weekly timeframe ?
sfl CAC on Weekly timeframe, long only, short dosent work. Defparam cumulateorders = false ...
superfalcio This kind of strategies coming from Connors research usually work well on timeframes from 1D...
Stanko Ciao Crusoe, grazie per il commento: confermo che il trailing stop non funziona bene. Provo ...
taklause I was wondering, you said it works on the 1 min Chart, but you never use it in the code as t...
Stanko Ciao taklause. Utilizzando il grafico a 1 minuto e fino al grafico a 15 minuti il codice fun...
Ciccarelli Franco Hai ragione, mi dava valori alti perchè usavo questo loss "SET STP LOSS 1xAverageTrueRange{1...
YvesRobert Hello davidelaferla, how do you put a stop loss and where exactly ? the moment you enter on ...
Hypersimo Buongiorno Davide a quale distanza inserire stop loss e tp nella strategia? grazie
ProRealAlgos Hi Crusoe76. Do you mean that you would like a short version of this?
crusoe76 yes please
banjoo78 Hi, first of all thank you for your sharing. I'm new of ProRealTime and I can't replicate y...
ProRealAlgos Same here ;)
YvesRobert Hello, can someone explain this strategy because I don't understand what the program does ex...
andyfx79 l have been demoing for the past couple of weeks with great results , but during a bear mark...
ProRealAlgos.com Hi JohnScher. Yes I think you refer to the strategy called "Turnaround tuesday". This strate...
JohnScher I am not alluding to the turnaround tuesday. The general opinion is that Turnaroundtuesday ...
ProRealAlgos.com Yeah that's maybe not of importance. Anyway. Enjoy! :)
superfalcio Hello, very interesting. Do you have already some tested condiction including timeframe and ...
KumoNoJuzza Hi Guys. This looks very interesting but don't overnight fees kill the profit when trading o...
ThaNoizy Yes, you cannot use CFDs on IG for Weekly strats you need to use their Index Futures, they h...
KumoNoJuzza Thanks. I did not know IG had Futures. I am always missing an info or a detail. I used to th...
JohnScher Short variant, see at https://www.prorealcode.com/topic/late-lunch-trade-dax40-strategy/
DANY Hi JohnScher, Thanks a lot for your contribution. Consider this release to avoid overfit...
JohnScher Thank you so much for exploring the Late Lunch Strategy. For discussion and in answer to yo...
BenJuice JohnScher, merci de partager ta stratégie. Je suis nouveau dans ce domaine, sur ton code q...
JohnScher As a percentage of the price, here 2%. StopLoss as well as TargetProfit. SL and TP come ...
Wilko I absolutely love the simplicity of this mean-reversion strategy. Well done!
Patrice210 bonjour STANKO, effectivement la première ligne apparait en anomalie et je ne comprend pas v...
KumoNoJuzza Hi guys, Thanks @Stanko and everyone for your contributions. I have been playing around ...
Stanko Hi KumoNoJuzza, thanks for the post. I also tried your code with Dax and the performance is ...
snucke i dont think you understod the question. i did not ask about the band pass indicator. i as...
thomas2004ch Hi, Is this startegy suitable for daily SPY? Regards
ebous64 Je cherche à traiter des effets de bords avec un encadrement ajustable des variables. Vous a...
JohnScher Postscript: It's running in the live right now. One position after the other is opened. ...
ullle73 nice!! how's it been since your last post on going live? :)
thomas2004ch Hi, Is this strategy suitable for daily SPY? Regards
adconsulting
2 years ago
japan 225 cash 1 h
japan 225 cash 1 h
28
Strategies
superfalcio Ora è tutto ok e gira correttamente!!! Grazie, mi sembra veramente notevole a prima simulazi...
Meta Signals Pro Hi @adconsulting, Thanks a lot for these contributions. I am currently running live 2 of y...
superfalcio Ciao @adconsulting, stavo rifacendo un check dei tuoi sistemi, quello su eurusd-30 min... on...
wally Hola soy nuevo en el mudo robots. Alguien seria tan amable de poner el archivo itf.file ya q...
Darren Nash I found this works well on the DOW
thomas2004ch Hi John, Is your strategy suitable for daily SPY? Regards
KAMJKAZE thanks, really interesting!
2c95 thanks, why do U prefer average than lowest ? to close under average does'nt mean another...

Top