Ichimoku code dans prorealtime version 11
Forums › ProRealTime forum Français › Support ProScreener › Ichimoku code dans prorealtime version 11
- This topic has 5 replies, 3 voices, and was last updated 5 years ago by Nicolas.
Viewing 6 posts - 1 through 6 (of 6 total)
-
-
01/22/2020 at 6:40 PM #117547
Bonjour,
J’ai un triangle avec un point d’exclamation devant les Tenkansen et Kijunsen. Je ne comprends pas pourquoi.
Pouvez-vous m’aider ?
12345678910111213141516171819202122// code proscreener d'exempleTenkansen = (highest[9](high)+lowest[9](low))/2Kijunsen = (highest[26](high)+lowest[26](low))/2SSpanA = (Tenkansen[26]+Kijunsen[26])/2SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2c1a = SSpanA > SSpan Bc2a = open[1] > SSpanA AND close[1] > SSpanAc1b = SSpanB > SSpan Ac2b = open[1] > SSpanB AND close[1] > SSpanBCOND1 = (c1a and c2a) OR (c1b and c2b)c3a = open > SSpanA and close > SSpanA and low < SSpanAc3b = open > SSpanB and close > SSpanB and low < SSpanBCOND2 = (c1a and c3a) OR (c1b and c3b)SCREENER [COND1 AND COND2]Merci beaucoup
01/22/2020 at 6:54 PM #11754801/22/2020 at 8:12 PM #11755901/22/2020 at 8:15 PM #11756101/22/2020 at 8:34 PM #1175621234567891011121314151617181920enkansen = (highest[9](high)+lowest[9](low))/2ijunsen = (highest[26](high)+lowest[26](low))/2SSpanA = (enkansen[26]+ijunsen[26])/2SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2c1a = SSpanA > SSpanBc2a = open[1] > SSpanA AND close[1] > SSpanAc1b = SSpanB > SSpanAc2b = open[1] > SSpanB AND close[1] > SSpanBCOND1 = (c1a and c2a) OR (c1b and c2b)c3a = open > SSpanA and close > SSpanA and low < SSpanAc3b = open > SSpanB and close > SSpanB and low < SSpanBCOND2 = (c1a and c3a) OR (c1b and c3b)SCREENER [COND1 AND COND2]Merci beaucoup, il y avait ce problème voici le code final qui fonctionne.
01/24/2020 at 1:10 PM #117689Les mots clés TenkanSen et KijunSen sont désormais des instructions internes de la plateforme, donc on ne peut plus les utiliser pour nommer ses propres variables.
Voir dans la documentation, toutes les nouvelles instructions liées à ichimoku kinko hyo:
-
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)