MAGAZ LUIZA ON NM, PETROBRAS PN N2, VIAVAREJO ON NM, BANCO INTER PN N2, VALE ON NM, ITAUSA PN ED N1
Petróleo Brent, Petróleo bruto, Ouro, Prata, Gás natural, Bitcoin
Títulos Americano de dez anos, Título Português de dez anos, Juros de Título Britânico de dez anos, Alemanha 10A, Japão Rendimento 10A, Títulos Europeus
This script calculates the covariance and correlation coefficient between two markets using arrays. Lookback: How many bars to perform the calculation on. Source: Price source to calculate the correlation on. Reference Market: The reference market to compare to the current market. It's a simple indicator, but very useful for determining how correlated your...
This is just a script to exercise the use of arrays on pine script. I think we could say that every for loop we had in pine script before the arrays, is eligible to become an array. Our script will get more efficient and more reliable. As every "if" case is elegible to became a function I confess I was addicted to use if, else if, else in my codes, but recently...
The selection sort algorithm sorts an array by repeatedly finding the smallest element from unsorted array and pushing it to the beginning. Two subarrays are maintained during the execution of the script. One of the subarrays is in a sorted state while the other is in a sorted state. After each iteration of the for loop the sorted list is searched for the next...
World Clocks - something for fun Happy New Year! ps: in case no update on the charts then the clock will not update too and will lag or stop till a new update is received
In this study, I present a method to expose NaN values to development environment. This exposure allows NaN values to be used by methods in scripts. I also show how to use values, even NaN values, as anchors from...
Using the new Pine Script array built-ins to join string elements together for label text. The array is sliced to remove extraneous elements.
Hello Traders, Recently we got new features in Pine such Arrays of Lines, Labels and Strings. Thanks to the Pine Team! ( here ) So I decided to make new style of Multi Time Frame indicator and I used Array of Lines in this script. here it is, RSI Multi Time Frame script. it shows RSI for current time frame as it is and also it gets RSI for the Higher Time...
What is a Pivot Point? A pivot point is a technical analysis indicator used to determine the overall trend of the market over different time frames. A pivot point is calculated based on the high, low, and closing prices of previous trading session/day and support and resistance levels that are projected based on the pivot point calculation as well as type of the...
Hello Traders, First all of thanks to LonesomeTheBlue for making me grasp arrays, a wonderful addition to Pine Script. This indicator uses arrays to find Pivot Points and mark them as Support / Resistance. It displays an info panel with the latest values. This code was written using the following standards: • PineCoders Coding Conventions for Pine:...
A low cost function to down sample a array. specially useful for pattern recognition algorithms.
Having Fun with Arrays. I couldn't load all of the images into their respective arrays without getting an "Internal Pine error" So I commented out some of them. You can pop them back in, but make sure to disable another in its place. Vader Pine Logo &hearts ...
Calcuating SMA on an Array In this script i show you how to calculate SMA on an array. Several values are plotted just for illustration. Steps to follow: - make sure you have an array with values (source array) - create a blank array (pref. with the same size) - call the function array_sma This function fills the empty array with the SMA values of the source array.
Experimental attemt of applying Logistic Map Equation for some of widly used indicators. With this study "Awesome Oscillator (AO)", "Rate of Change (ROC)", "Relative Strength Index (RSI)", "Stochastic (STOCH)" and a custom interpretation of Logistic Map Equation is presented Calculations with Logistic Map Equation makes sense when the calculated results...
Yet another Array indicator, simple, but efficient which i call ADO. The indicator acts as a COUNTER of when CLOSE closes above OPEN and vice versa based on specified look back period in settings. If we have more Closes above Opens, obviously the indicator will be above ZERO and GREEN, otherwise RED. Optional to smooth it by EMA (true by default). Like if you...
With the arrival of the blessed gifts of arrays from TV, I now present the REAL "Truncated Bandpass Filter" indicator employing PSv4.0 upon initial release, originally formulated by the magnificent mathemagician Dr. John Ehlers for TASC - July 2020 Traders Tips. Don't be bamboozled by the other incorrect truncated bandpass filters found on TV, those published with...
This is an experimental study designed to calculate polynomial regression for any order polynomial that TV is able to support. This study aims to educate users on polynomial curve fitting, and the derivation process of Least Squares Moving Averages (LSMAs). I also designed this study with the intent of showcasing some of the capabilities and potential applications...
Over the years, many FIR filters have been proposed by the Pine community, with the standard way of computing them being `for` loops. The arrival of arrays allows for a new, more efficient way to compute them. This script provides a template showing how you can compute FIR filters using Pine arrays. FIR Filters FIR stands for "Finite Impulse Response", and...
Yet another "Low - High" indicator using the new Pine Script Arrays. The indicator uses the latests Lows and Highs to plot a trend line and reversal/slowdown. More detailed explanation inside the script. Enjoy! Green - Up Trending Red - Down Trending White - Slow Down/Reversal might occur. Made for educational purposes of how to use Arrays, yet can be...