This is an additional Script to my recent Pivot Point indicator scripts which will show you the next days pivot points based on the actual price range. This is useful if you are trading right before a new day and want to know how the next bdays pivot points may be placed. If you have any questions or suggestions pls write me :) Happy trading Cheers Daily...
This script predicts future EMA values assuming that the price remains as configured (-50% to +50%).
Experimental: adapted from classical game movement prediction algo and how a crude recursive error classifier can be applied..
I wasn't going to post this because I don't like how this calculates by puling in the Open price, but I'm posting it anyway. This does work in it's current form but there is a. better way to do this. I'll revisit this in the future. Anyway... The k-Nearest Neighbor algorithm (k-NN) searches for k past patterns (neighbors) that are most similar to the current...
Similarity Search, Karobein oscillator (KO) and Seasonal Random Index (SRI) Description: This indicator uses dynamic capabilities of Pinescript version 4 coupled with Seasonal Random Index (SRI) and Karobein Oscillator (KO). SRI (green/red areas) is employed to detect trends and KO (black curce) is used to find historical similarities to predict the next bar's...
This EMA Candles indicator use the price movement between two user selected Exponential Moving Averages to help determine the current trend. As of release, there are 5 possible bar color outputs, all of which are shown in the legend above. The Five Electable Color Outputs: Uptrend; Strong Uptrend; Downtrend; Strong Downtrend; n/a I hope you all enjoy!...
This script allows to use 5 different MAs with prediction of the next five periods.
Introduction If you rescale a sine wave to the price you will need to correlate it with it in order to show good results, today i present a different method that does not involve correlation to "morph" a sine wave to the price in order to provide forecast's and highlight market periodic patterns. Parameters length control the period of the sine wave, ...
The Voss Predictive Filter was created by John Ehlers (Stocks and Commodities August 2019) and this is a unique indicator in that it tries to predict future price action. I have color coded the middle line to show buy and sell signals so buy when the line turns green and sell when it turns red. Let me know if there are any other indicators you want me to publish!
Drag this indicator in the same panel with the volume in the object tree, then right click on the scale bar and set "merge all scale into one" for a correct visualization. This indicator multiply the current traded volume of a candle with the total time of that candle. This offer a prediction of where, in case the volumes would keep trading at a comparable...
This indicator fill bars with color of HullMA + warning yellow bars, then trend reversing
A trend following indicator based on the MACD and EMA. In this case, signals are not generated by crossing the signal lines as with the MACD, but as soon as the distance between the signal lines increases or decreases. A profit factor of 1.6-3.5 is achieved. Ein Trendfolge-Indikator, auf der Basis des MACD und EMA. Dabei werden Signale nicht wie bei dem MACD per...
Hodrick-Prescott Extrapolation of Price is a Hodrick-Prescott filter used to extrapolate price. The distinctive feature of the Hodrick-Prescott filter is that it does not delay. It is calculated by minimizing the objective function. F = Sum((y(i) - x(i))^2,i=0..n-1) + lambda*Sum((y(i+1)+y(i-1)-2*y(i))^2,i=1..n-2) where x() - prices, y() - filter values....
This script measures the correlation of the hourly RSI of 24 hours ago with the difference of price between now and the price 24 hours ago. In other words, this is an indicator which measures the predictive power of the RSI. Green means that the price is strongly correlated with the past RSI (which is the normal state when the market is flat and there is no...
The Leavitt Convolution indicator was created by Jay Leavitt (Stocks and Commodities Oct 2019, page 11), who is most well known for creating the Volume-Weighted Average Price indicator. This indicator is very similar to my Leavitt Projection script and I forgot to mention that both of these indicators are actually predictive moving averages. The Leavitt...
Mssive credit to Motgench, Balipour and Wugamlo for this script. This script is all of their good work. It is basically just the non-on chart version which I've slightly tweaked off their script. This can be useful to reduce the clutter on the chart itself. Releasing it in the hope that it can be useful for the community Enjoy!
Holt's method (see: otexts.com) Holt (1957) extended simple exponential smoothing to allow the forecasting of data with a trend. This method involves a forecast equation and two smoothing equations (one for the level and one for the trend): Forecast equation: ŷ = l + h * b Level equation: l = alpha * y + (1 - alpha) * (l + b ) Trend equation: b = beta *...
Basic extrapolator for forecast a time-series, all forecasts are mades length periods ahead. This is not a estimation of the exact price This should only be used for forecasting direction, dont expect the price to be at the same value of its forecast. Bias, Mean absolute error, Mean percentage error...etc look useless here, its better to use...