TradingView
RicardoSantos
18 Kas 2014 19:04

[RS]Cumulative Average Price Grid 

British Pound/U.S. DollarFXCM

Açıklama

grid based on the cumulative average price.

on a sidenote: looks like im baned from chat for a week.

Sürüm Notları

Update for V5.
Yorumlar
xel_arjona
Interesting approach! Have you tried using as "factor multipliers" fibonacci/padovan progressions..? ;)
RicardoSantos
possibly, likely unpublished, just a matter of changing the multipliers.
the padovan sequence looks interesting, 1st time i heard of it :p
xel_arjona
When you help me to learn pine when writing my "Fractal Bands", we wrote the algorithm to calculate mathematically both of this progressions in pine. (recursive innecesary but fur fun! ) :D
// N Root Function
nroot(index,number) =>
cond_r = index == 0 or number == 0 or number < 0
If_True = 0
If_False = (exp((1/index) * log(number)))
iff(cond_r, If_True, If_False)
//Algebraic Constants for general calculations.
_phi = (1+sqrt(5))/2 // Phi Number (Fibonacci Seq.)
_pn = (nroot(3,(108 + 12*sqrt(69))) + nroot(3,(108 - 12*sqrt(69))))/6 // Plastic Number (Podovan Seq.)
RicardoSantos
aw i see, i remember the fib number function :p
IvanLabrie
Ricardo, interesting indicator.
I coded an EMA with ATR bands that serves a similar purpose.

Can I pm you with a request?
I'm always impressed by your coding skills.
RicardoSantos
sure
alex.a
I'm curious. Why does the distance between central lines are shorter than others?
RicardoSantos
they are the respective lines for the cumulative average of high close and low.
alex.a
I should I interpret that, if the price was in that range, usually the distance between H and L were shorter???
RicardoSantos
in my opinion it would mean its at its normal price, end/start of cycle
Daha Fazla