Donc suite à une petite modification, pour
tendance négative j'ai testé cela avec des résultats corrects (à vous de me dire si cela ne marche pas):
Tenkansen = (highest[9](HIGH)+lowest[9](LOW))/2
Kijunsen = (highest[26](HIGH)+lowest[26](LOW))/2
SSpanA = (tenkansen[26]+kijunsen[26])/2
SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2
Chikou = close[26]
//
tendance négative
C1 = close < SSpanA and close < SSpanB
C2 = Tenkansen < SSpanA and Tenkansen < SSpanB
C3 = Kijunsen < SSpanA and Kijunsen < SSpanB
C4 = Chikou < SSpanA[26] and Chikou < SSpanB[26]
SCREENER [C1 AND C2 AND C3 AND C4]
Et pour
tendance positive:
Tenkansen = (highest[9](HIGH)+lowest[9](LOW))/2
Kijunsen = (highest[26](HIGH)+lowest[26](LOW))/2
SSpanA = (tenkansen[26]+kijunsen[26])/2
SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2
Chikou = close[26]
//
tendance positive
C1 = close > SSpanA and close > SSpanB
C2 = Tenkansen > SSpanA and Tenkansen > SSpanB
C3= Kijunsen > SSpanA and Kijunsen > SSpanB
C4 = Chikou > SSpanA[26] and Chikou > SSpanB[26]
SCREENER [C1 AND C2 AND C3 AND C4]
Je vais maintenant ajouter cela d'autres screeners.