Another channel indicator made of Fibonacci retracements levels over an x period.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
//parameters // period = 50 ll = lowest[period](low) hh = highest[period](high) mid = (ll+hh)/2 fibo1 = (hh-ll)*0.764+ll fibo2 = (hh-ll)*0.618+ll fibo3 = (hh-ll)*0.382+ll fibo4 = (hh-ll)*0.500+ll fibo5 = (hh-ll)*0.236+ll RETURN mid as "center", fibo1, fibo2, fibo3, fibo4, fibo5 |
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
Really nice indicator Nicolas! Well done!
Bonjour Nicolas
comme j’avais l’impression qu’il en manque un bout j’ai fais ça :
Peux tu valider ce code , merci
Le bouton ADD PRT code ne marche pas cette fois !?
// Fibonacci Auto Channels PRC
//parameters
// period = 50
ll = lowest[period](low)
hh = highest[period](high)
//mid = (ll+hh)/2
fibo1 = 1/(hh-ll)*1.236+ll
fibo2 = (hh-ll)*0.236+ll
fibo3 = (hh-ll)*0.382+ll
fibo4 = (hh-ll)*0.500+ll
fibo5 = (hh-ll)*0.618+ll
fibo6 = (hh-ll)*0.764+ll
fibo7 = (hh-ll)*1+ll
RETURN customclose as ” customclose ” , fibo1 as ” fibo1″, fibo2 as ” fibo2″ , fibo3 as ” fibo3″ , fibo4 as ” fibo center “, fibo5 as ” fibo5 “, fibo6 as ” fibo6 “, fibo7 as ” fibo7 “
Merci supertiti ! C’est juste, encore un ptit bug quelquepart ! 😐