Skip to content

Instantly share code, notes, and snippets.

@itsfreddyrb
Created March 22, 2018 16:48
Show Gist options
  • Save itsfreddyrb/05c9ea8dcce110756ece1eb4bb480971 to your computer and use it in GitHub Desktop.
Save itsfreddyrb/05c9ea8dcce110756ece1eb4bb480971 to your computer and use it in GitHub Desktop.
study(title="FibFib", shorttitle="AutoFib", overlay=true)
fiblength=input(265)
maxr = highest(close, fiblength)
minr = lowest(close, fiblength)
ranr = maxr - minr
ON=plot( maxr , color=black, title="1" )
SS=plot( maxr - 0.236 * ranr, title="0.764", color=#3399FF )
SO=plot( maxr - 0.382 * ranr, title="0.618", color=blue )
FI=plot( maxr - 0.50 * ranr, title="0.5", color=lime )
TE=plot( minr + 0.382 * ranr, title="0.382", color=green )
TT=plot( minr + 0.236 * ranr, title="0.236", color=red )
ZZ=plot( minr , title="0", color=black )
fill(ON,SS, color=red)
fill(SS,SO, color=#3399FF)
fill(SO,FI, color=lime)
fill(FI,TE, color=lime)
fill(TE,TT, color=#3399FF)
fill(TT,ZZ, color=red)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment