Hello Guys,
Here is a simple and effective indicator to see Kumo twists on Ichimoku.
On the picture, I did just set an Ichimoku, and “Tenkan”, “Kijun” and “Chikou” as invisible.
Just put the indicator, and set visualization to histogram.
Happy trading !
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
TWIST = 0 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 // CROISEMENT SSA > SSB IF SSpanA[1] < SSpanB[1] and SSpanA > SSpanB THEN TWIST = 1 ENDIF // CROISEMENT SSA < SSB IF SSpanA[1] > SSpanB[1] and SSpanA < SSpanB THEN TWIST = -1 ENDIF return TWIST as "KUMO TWIST" |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
bonjour,
merci pour cet échange mais il me semble que ce twist des SSA et SSB serait plus profitable (trading parlant) si l’on avait l’indicateur qui alerte non pas à l’aplomb du twist mais avec anticipation (ce qui est le but de ichimoku) de 26 bougies : le bout du nuage étant en avance de 26 bougies. Je ne sais pas programmer mais si l’un d’entre vous sait le faire on serait dans les règles du trading Ichimoku. Merci par avance de votre aide.
Concernant la remarque précédente, il est possible de remplacer les 2 lignes de code de cette facon pour avoir un affichage des Twist au bon endroit par rapport aux cours
//SSpanA = (tenkansen[26]+kijunsen[26])/2
//SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2
SSpanA = (tenkansen+kijunsen)/2
SSpanB = (highest[52](high)+lowest[52](low))/2
Merci Pasq. On peut retrouver ce code corrigé sur le forum, je viens d’en retrouver un exemple: https://www.prorealcode.com/topic/indicateur-base-sur-lindicateur-ichimoku/#post-37686