HA NORMALISES A ZERO
Forums › ProRealTime forum Français › Support ProBuilder › HA NORMALISES A ZERO
- This topic has 35 replies, 2 voices, and was last updated 3 years ago by
supertiti.
-
-
02/02/2022 at 6:39 PM #187382
Bon, Bon… je crois que j’ai ce que tu recherches… deux screener, un pour Long et un pour Short. J’ai mis en Daily, mais tu peux changer.
Short
Screener Titi Short12345678910111213141516171819202122232425TIMEFRAME(DAILY)IF BarIndex<1 THENxOpen = openxHigh = highxclose = (open+high+low+close)/4ELSExclose = (open+close+low+high)/4xOpen = (xOpen[1]+xclose[1])/2xHigh = Max(Max(High, xOpen), xClose)ENDIF//+++++++++++++++++++++++++++++++test = 0//Shortif xclose<xopen and xhigh=xopen and close>10 thentest = -1Direction=-1endifiRSI = round(RSI[14](close) * Direction,0)screener[test=-1](iRSI AS "RSI")Long
Screener Titi Long1234567891011121314151617181920212223242526TIMEFRAME(DAILY)IF BarIndex<1 THENxOpen = openxLow = lowxclose = (open+high+low+close)/4ELSExclose = (open+close+low+high)/4xOpen = (xOpen[1]+xclose[1])/2xLow = Min(Min(low, xOpen), xClose)ENDIF//+++++++++++++++++++++++++++++++test = 0//Longif xclose>xopen and xlow=xopen and close>10 thentest = 1Direction=+1endifiRSI = round(RSI[14](close) * Direction,0)screener[test=1](iRSI AS "RSI")02/02/2022 at 6:51 PM #187391Bon ,bon mais pas tant que ça désolé, j’ai mis les deux codes sur le SRD France et on est toujours pas bon , les signaux sont bons mais ne sont
pas seulement sur le dernière cotation (ici en daily)
affaire à suivre donc …
02/02/2022 at 6:55 PM #18739202/02/2022 at 6:58 PM #18739402/02/2022 at 7:57 PM #187398Ne serais-je pas clair ?!
Le retour des screeners est bon : ça c’est une chose (on a bien le point positif ou négatif)
Ce que l’on a pas : c’est le point sur le dernier chandelier et uniquement sur le dernier chandelier et pas depuis 2,3,4,5,10 jours.
Va t’on y arriver ?
merci beaucoup,muchas gracias,choukrane bezef,thank you very much …
02/10/2022 at 11:07 AM #188003 -
AuthorPosts