Cul plat et moyennes mobiles
Forums › ProRealTime forum Français › Support ProScreener › Cul plat et moyennes mobiles
- This topic has 9 replies, 2 voices, and was last updated 3 years ago by supertiti.
-
-
10/24/2021 at 5:09 PM #180276
Cul plat et moyennes mobiles
Bonjour à tous,
Tout d’abord point de vulgarité ! que neni ! un cul plat c’est un heikin ashi sans mèche basse !
J’aimerai faire un screener qui m’indique la première apparition d’un cul plat
après le croisement à la hausse de deux moyennes mobiles ( ex : 20 et 50)
J’ai bien essayé en automatique mais sans résultat probant.
Y a-t-il un codeur dans la salle qui saurait résoudre ce problème ?
Merci
Bonne fin de week end10/25/2021 at 8:53 AM #180293Le screener ci-dessous détectera la première bougie Heikin Ashi faisant un “cul plat” après un croisement de moyennes mobiles en tendance haussière :
1234567891011121314151617181920212223242526ma20 = average[20]ma50 = average[50]if ma20 crosses over ma50 thenstart=barindexendif// ---- détection cul platxClose = (open+high+low+close)/4IF BarIndex=0 THENxOpen = open//xHigh = highxLow = lowELSexOpen = (xOpen[1] + xClose[1])/2//xHigh = Max(Max(high, xOpen), xClose)xLow = Min(Min(low, xOpen), xClose)ENDIFtest = 0if xopen<xclose and xlow=xopen and ma20>ma50 and lastbar<start thenlastbar=starttest = 1endifscreener[test]10/25/2021 at 10:58 AM #180307Bonjour Nicolas,
Après avoir installé ton code les résultats ressortent à la perfection , y compris les culs plats du jour du croisement.
Tout seul j’étais loin du compte alors merci beaucoup pour ton aide.
Bonne journée à toi et à la communauté
PS : chacun utilisera ses moyennes favorites ceci ne reflète que l’idée prudente d’un achat éventuel.
10/26/2021 at 10:10 AM #18036210/26/2021 at 10:19 AM #180364Bonjour à tous,
J’ai fais le screener inverse suivant le code de Nicolas mais sur ces deux derniers jours les résultats ne sont pas top, il detecte les HA baissiers mais
ce ne sont pas des culs plats !?
Quelqu’un voit-il le bug ?
merci
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960// CUL PLAT XDW MA2050 by Nicolas 25.10.2021ma20 = average[20]ma50 = average[50]if ma20 crosses under ma50 thenstart=barindexendif// ---- détection cul platxClose = (open+high+low+close)/4IF BarIndex=0 THENxOpen = open//xHigh = highxLow = lowELSexOpen = (xOpen[1] + xClose[1])/2//xHigh = Max(Max(high, xOpen), xClose)xLow = Min(Min(low, xOpen), xClose)ENDIFtest = 0if xopen>xclose and xlow<xopen and ma20<ma50 and lastbar<start thenlastbar=starttest = 1endifscreener[test]10/28/2021 at 12:07 PM #18046410/29/2021 at 11:54 AM #180549Bonjour Nicolas
Désolé je ne comprend pas bien ta réponse, j’ai fais ça mais ça ne marche pas
Peux tu y jeter un oeil
merciCul plat XDW 20501234567891011121314151617181920212223242526272829303132// CUL PLAT XDW MA2050 by Nicolas 25.10.2021ma20 = average[20]ma50 = average[50]if ma20 crosses under ma50 thenstart=barindexendif// ---- détection cul platxClose = (open+high+low+close)/4IF BarIndex=0 THENxOpen = openxHigh = open//xLow = lowELSexOpen = (xOpen[1] + xClose[1])/2//xHigh = Max(Max(high, xOpen), xClose)// xLow = Min(Min(low, xOpen), xClose)ENDIFtest = 0//if xopen>xclose and xlow<xopen and ma20<ma50 and lastbar<start thenlastbar=startif xhigh = open and ma20<ma50 and lastbar<start thenlastbar=starttest = 1endifscreener[test]10/29/2021 at 3:18 PM #180557A tester :
1234567891011121314151617181920212223242526ma20 = average[20]ma50 = average[50]if ma20 crosses under ma50 thenstart=barindexendif// ---- détection cul platxClose = (open+high+low+close)/4IF BarIndex=0 THENxOpen = open//xHigh = highxLow = lowELSexOpen = (xOpen[1] + xClose[1])/2//xHigh = Max(Max(high, xOpen), xClose)xLow = Min(Min(low, xOpen), xClose)ENDIFtest = 0if xopen>xclose and xhigh=xopen and ma20>ma50 and lastbar<start thenlastbar=starttest = 1endifscreener[test]10/29/2021 at 5:16 PM #180565Merci Nicolas
A priori le code fonctionnerait j’ai bougé 2 choses en gras, pour aujourd’hui ça va, je testerai dans les prochains jours pour confirmer
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859///////////////////////////////////////////////////////////////////////////////////////////////////////////////// CUL PLAT XDW MA2050 by Nicolas 29.10.2021ma20 = average[20]ma50 = average[50]if ma20 crosses under ma50 thenstart=barindexendif// ---- détection cul platxClose = (open+high+low+close)/4IF BarIndex=0 THENxOpen = openxHigh = high//xLow = lowELSexOpen = (xOpen[1] + xClose[1])/2xHigh = Max(Max(high, xOpen), xClose)//xLow = Min(Min(low, xOpen), xClose)ENDIFtest = 0if xopen>xclose and xhigh=xopen and ma20<ma50 and lastbar<start thenlastbar=starttest = 1endifscreener[test]10/30/2021 at 11:28 AM #180595 -
AuthorPosts
Find exclusive trading pro-tools on