DAX 5MN SHARK AUTOTRADING BOT
Forums › ProRealTime forum Français › Support ProOrder › DAX 5MN SHARK AUTOTRADING BOT
- This topic has 7 replies, 5 voices, and was last updated 7 years ago by JC_Bywan.
-
-
04/18/2017 at 9:44 AM #32393
Voici un code basé sur le MACD tendance HEATMAP disponible en librairie.Ajouté a la martingale piquemouche.voilà ce que cela donne<
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859DEFPARAM CUMULATEORDERS = FALSEDEFPARAM FLATBEFORE = 090000DEFPARAM FLATAFTER = 171500//MACD tendance heatmapp = 12q = 26r = 9dema1=TEMA[p](close)dema2=TEMA[q](close)mymacd = dema1-dema2dema3 = DEMA[r](mymacd)signal = dema3vert = mymacd >= signalrouge = mymacd <= signalONCE Ordersize = 1n=2ONCE badtrades = 0c1 = rouge[1] and vertc2 = vert[1] and rougeIF TIME > 090000 and c1 THENIF positionperf(1)<0 thenbadtrades = badtrades+1IF badtrades<3 thenordersize = ordersize+1ELSIF badtrades MOD 3 = 0 thenoversize = oversize*2ENDIFELSIF positionperf(1) >=0 thenordersize = 1badtrades = 0endifBUY ordersize*n contracts AT (low+2) limitendifif TIME > 090000 and c2 THENIF positionperf(1)<0 thenbadtrades = badtrades+1IF badtrades<3 thenordersize = ordersize+1ELSIF badtrades MOD 3 = 0 thenoversize = oversize*2ENDIFELSIF positionperf(1) >=0 thenordersize = 1badtrades = 0endifSELLSHORT ordersize*n contracts AT (high – 2) limitENDIFSET STOP LOSS 5SET TARGET PROFIT 904/18/2017 at 11:46 AM #32435Attention je viens de tester tu as du faire un backtest “normal”, fais un backtest en mode tick par tick tu verras les résultats sont complètement différents
Bien à toi
Zilliq
Ps: Par expérience quand les résultats sont “trop beaux” il y a une erreur quelque part
04/18/2017 at 2:24 PM #3247404/20/2017 at 4:05 PM #32780sniffffff !!!!je vais quand même la tester quelque temps.
le tick by tick fonctionne t il maintenant …
04/20/2017 at 4:32 PM #32783Oui il fonctionne, c’était le trailing stop d’IG qui était mal répercuté dans les backtests. D’une façon générale, tous les backtests devraient être faits avec le mode tick par tick enclenché ! Il donnera une vision toujours plus réaliste des résultats probables obtenus dans le passé.
04/20/2017 at 6:29 PM #32796et uniquement sur 500 chandeliers ! 🙂
05/08/2017 at 10:26 PM #34874Is this dead in the water larouedegann?
I’m having a clear out and found it in my list. I’ve deleted it, but if it has any prospects or you have reworked it then ass a comment and I’ll be back 🙂
GraHal
05/09/2017 at 9:05 AM #34890 -
AuthorPosts