MAGAZ LUIZA ON NM, PETROBRAS PN N2, VIAVAREJO ON NM, BANCO INTER PN N2, VALE ON NM, ITAUSA PN 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
Moving Regression is a generalization of moving average and polynomial regression. The procedure approximates a specified number of prior data points with a polynomial function of a user-defined degree. Then, polynomial interpolation of the last data point is used to construct a Moving Regression time series. Application: Moving Regression allows one to smooth...
Multi-timeframe Strategy based on Logistic Regression algorithm Description: This strategy uses a classic machine learning algorithm that came from statistics - Logistic Regression (LR). The first and most important thing about logistic regression is that it is not a 'Regression' but a 'Classification' algorithm. The name itself is somewhat misleading....
Introducing the Delta-RSI Oscillator. This oscillator is a time derivative of the RSI, plotted as a histogram and serving as a momentum indicator. The derivative is calculated explicitly by means of local polynomial regression. It is designed to provide minimum false and premature buy/sell signals compared to many traditional momentum indicators such as...
Introducing the Pivot Regression Oscillator. This oscillator uses a similar formula to the Stochastic Oscillator. However, instead of comparing the closing price to the lowest price of a period, it compares the distance between current price and the current pivot point. By basing our oscillator on pivot levels, we incorporate a much more relevant and...
This script is a combination of different logarithmic regression fits on weekly BTC data. It is meant to be used only on the weekly timeframe and on the BLX chart for bitcoin. The "fair value" line is still subjective, as it is only a regression and does not take into account other metrics.
Description: A function that returns a polynomial regression and deviation information for a data set. Inputs: _X: Array containing x data points. _Y: Array containing y data points. Outputs: _predictions: Array with adjusted _Y values. _max_dev: Max deviation from the mean. _min_dev: Min deviation from the mean. ...
Simple tool to find when to buy in bull market, and when to sell when bull ended. 26 EMA on weekly seems to be a decent combination for 2017 bull market. Use it and find your combination, and hope it guide you through current bull market.
Due to public demand Linear Regression Formula Scraped Calculation With Alerts Here is the Linear Regression Script For traders Who love rich features Features ++ Multi time frame -> Source Regression from a different Chart ++ Customized Colors -> This includes the pine lines ++ Smoothing -> Allow Filtered Regression; Note: Using 1 Defaults to the original...
Logarithmic regression of the USD price of Bitcoin , calculated according to the equation: y=A*exp(beta*x^lambda + c) + m*x + b where x is the number of days since the genesis block. All parameters are editable in the script options.
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...
This is my first public release of indicator code and my PSv4.0 version of "Linear Regression Channel", as it is more commonly known. It replicates TV's built-in "Linear Regression" without the distraction of heavy red/blue fill bleeding into other indicators. We can't fill() line.new() at this time in Pine Script anyways. I entitled it Linear Regression Trend...
Description: A Function that returns a linear regression channel using (X,Y) vector points. Inputs: _X: Array containing x data points.¹ _Y: Array containing y data points.¹ Note: ¹: _X and _Y size must match. Outputs: _predictions: Array with adjusted _Y values at _X. _max_dev: Max deviation from the mean. _min_dev:...
Fit a quadratic polynomial (parabola) to the last length data points by minimizing the sum of squares between the data and the fitted results. The script can extrapolate the results in the future and can also display the R-squared of the model. Note that this script is subject to some limitations (more in the "Notes" section). Settings Length : Number of...
The tool plots a linear regression line using the entire history of an instrument on chart. There are may be issues on intraday timeframes less then 1h. On daily, weekly and monthly charts it works without problem. If an instrument has a lot of data points, you may not see the line (this is TV feature): To fix that you...
This is an experimental study which calculates a linear regression channel over a specified period or interval using custom moving average types for its calculations. Linear regression is a linear approach to modeling the relationship between a dependent variable and one or more independent variables. In linear regression, the relationships are modeled using...
This is a study geared toward identifying price trends using Quadratic regression. Quadratic regression is the process of finding the equation of a parabola that best fits the set of data being analyzed. In this study, first a quadratic regression curve is calculated, then the slope of the curve is calculated and plotted. Custom bar colors are included. The...
This study is an experimental regression curve built around fractal and ATR calculations. First, Williams Fractals are calculated, and used as anchoring points. Next, high anchor points are connected to negative sloping lines, and low anchor points to positive sloping lines. The slope is a specified percentage of the current ATR over the sampling period. The...
A quadratic regression is the process of finding the equation that best fits a set of data.This form of regression is mainly used for smoothing data shaped like a parabola. Because we can use short/midterm/longterm periods we can say that we use a Quadratic Least Squares Moving Average or a Moving Quadratic Regression. Like the Linear Regression (LSMA) a...