TradingView
RicardoSantos
18 Ağu 2015 19:35

[RS]Neo Wave V0 

Euro Fx/U.S. DollarFXCM

Açıklama

EXPERIMENTAL: Request for IvanLabrie.
Method for reading Neo Wave's.
note: some issues arent possible to work around/fix due to limitations in pinescript.
Yorumlar
IvanLabrie
Great!
Wave charts without so much hassle. It's pretty great, shame it can't be done 100% correctly.
xel_arjona
Nice one! Reading from their site (neowave.com/info-difference.asp) it reads that they make heavy use of "golden-ratio" constant. Im currently making experimentation with this kind of "morphic numbers" with lot of attention more over the "padovan sequence" rather than the fibonacci one. For them, they tend to use the "Plastic Number" constant. Here you could find some great information about the logic behind this "morphic numbers" and their relation to -Fractal Nature- infovis.net/printMag.php?num=145&lang=2
Here is the two algebraic constant calculations that I'm using in order to experiment with my own algo's if you like to play with them:

// PHI Constant with Negative
_PHI = (1+sqrt(5))/2 // Phi Number (Fibonacci Seq.)
_NegPHI = (1-sqrt(5))/2

// Plastic Number with Negative
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)
_PN = (nroot(3,(108 + 12*sqrt(69))) + nroot(3,(108 - 12*sqrt(69))))/6 // Plastic Number (Podovan Seq.)
_NegPN = (nroot(3,(108 + 12*sqrt(69))) - nroot(3,(108 - 12*sqrt(69))))/6
kitdoctor
@RicardoSantos are you still active? Are you able to elaborate on "note: some issues arent possible to work around/fix due to limitations in pinescript."

Thank you Noel
RicardoSantos
@kitdoctor, my guess would have been to do with repaint issues, just take consideration that this is a 5y old script >.<
kitdoctor
@RicardoSantos, thanks for responding. Would you be able to elaborate on "...repaint issues.."? I know very little about pinescript. Do you happen to know if your script is the script referred to in this article on NEoWave chart construction liteforex.com/blog/for-professionals/neo-wave-theory-part-1-rules-of-creating-charts/ In this article it says "There's even a simpler way to construct the chart using the NeoWave V0 indicator, which can be easily found in the Trading View library."
RicardoSantos
@kitdoctor,
1: use of security to draw time box,
2: looks like it, only one in the library listed under neo wave tag
ChiefBrabo
Mr Santos are you able to translate this script to Mt4 / Mt5 platform or know someone w could Sir. thank you in advance.
rnshalgar
Great Job Ricardo. What is the reason waves are not plotted till the last session. For example if I am on daily time frame, if todays date is 19thsept, the monowaves are plotted till 13thsep
SatoshiHeavy
@rnshalgar, Repaint bro
There is a work around now I may tackle it
rnshalgar
@SatoshiHeavy, Thanks!
Daha Fazla