TradingView
JustUncleL
18 de Sep. de 2016 12:19

Automatic Daily Fibonacci v0.3 by JustUncleL 

Euro Fx/Japanese YenFXCM

Descripción

This update is a correction on the way the Fib Zero line is calculated. Previously it was just based on the source of the previous day, which is Ok as long as the Fiblength was set to 2. The new version calculates the Fib Zero from the average of the specified source over the Fiblength, so if Fiblength is now something other than 2 the Fibonacci Zero and other support and resistant levels should calculate correctly.
Comentarios
Misspipsy
hey ! this looks good, I'm wondering if you could tell me how to adjust it so it draws it to a specific time instead of daily.
I'm looking at 5min chart timeframe between 12pm-3pm utc-4

can you help me with that?
millionairetrader2
im new so dont laugh this is my first time here this what im looking 4 also looking for practic buying and selling curency charts this perfect just need to learn an know more. any thing helps
indicadorallwinn
God Blessed 🙌
cihankocaaga0
perfect 3>
sg2019
I am new to trading view, wanted to write a simple code... unable to do it...can anyone help ( my TV id is sg2019 )

//@version=4
study("GAAN Level Implementation")
// Implementing GAAN Levels

zeroline = input(true, type= input.float, defval=36000 ) // this is th low of 1st 5 minutes candle of the day, A Horizontal LINE to be plotted on CHART
gaanrange= input(true, type= input.integer, defval=700) // this is the daily high low range movement approx, generally BnF 1000 points, Nifty 300 points
factor = gaanrange/16 // to arrive at 62.5 factor based on gaan principle

p45 = zeroline + gaanlevel // GAAN level 1 positive side, I will have 5 more levels on upside with + factor increment
n45 = zeroline - gaanlevel // GAAN level 1 negative side, I will have 5 more levels on downside with - factor increment

plot(p45, title = "P45", color=color.red, linewidth = 3, style= line.style_solid )
plot(n45, title = "P45", color=color.red, linewidth = 3, style= line.style_solid )
jianhua85
Hi UncleL, any idea how i can make this to do another Fibonacci just for the day? in which it updates every hour upon receiving a closed hour of data?
JustUncleL
@jianhua85, It could possibly be performed, but it will not be related to the intention of this script though.
pratheepskn30
is it possible to include premarket data ? currently its looking only for day high and low during trading hours.
JustUncleL
@pratheepnz, Generally there is no access to pre-market data.
Más