The Ranges With Targets indicator is a tool designed to assist traders in identifying potential trading opportunities on a chart derived from breakout trading. It dynamically outlines ranges with boxes in real-time, providing a visual representation of price movements. When a breakout occurs from a range, the indicator will begin coloring the candles. A green...
We provide an implementation of the Gaussian Process Regression (GPR), a popular machine-learning method capable of estimating underlying trends in prices as well as forecasting them. While this implementation is adapted to real-time usage, do remember that forecasting trends in the market is challenging, do not use this tool as a standalone for your trading...
This is a strategy/combination of warning indicators using 6MA+MACD. The strategy details are as follows: This is a simple warning strategy created so that we don't have to monitor the candlestick chart too often. Note: This isn't an entry strategy; it's a signaling strategy for upcoming trends. For maximum efficiency, we should incorporate more formulas into...
The Machine Learning Momentum Oscillator brings together the K-Nearest Neighbors (KNN) algorithm and the predictive strength of the Tactical Sector Indicator (TSI) Momentum. This unique oscillator not only uses the insights from TSI Momentum but also taps into the power of machine learning therefore being designed to give traders a more comprehensive view of...
An accumulation/distribution indicator that works better against gaps and with trend coloring. Accumulation/Distribution was developed by Marc Chaikin to provide insight into strength of a trend by measuring flow of buy and sell volume . The fact that A/D only factors current period's range for calculating the volume multiplier causes problem with price gaps....
Implementation of Charlie Q. Yang's research paper “The stock market emotion index”, subtitle “A New Sentiment Measure Using Enhanced OBV and Money Flow Indicators”, (2007) where he combined “five simple emotion statistics” - Close Emotion Statistic (CES), Money Flow Statistic (MFS), Supply Demand Statistic (SDS), Relative Strength Statistic (RSS), and...
Delta Volume is Difference between Buying Volume and Selling Volume. This indicator gives the Delta Volume based on Lower TimeFrame Candles. It utilizes security_lower_tf() function, a function that provides Lower TF candle data in Higher TF Chart. security_lower_tf() is a new function provided by TradingView yesterday. If you are a PineScript Programmer, I...
This indicator aims to compare between two charts if trader isn't sure which one is more active and powerful, it does NOT show entries or help your chart analysis directly. The main features of this indicator is to show vitality and range of any given chart. Volatility: it calculates the average profit of every swing in the range and the final result will be...
This script provides clear volume trends on any time frame. You set a long term volume trend moving average (ex 100 periods). A shorter term MA of your choice (10 in this example) will oscillate above and below based on the standard deviations of its current value relative to the long term #. Similarly, large volume bars are plotted in terms of st dev above the...
Hello traders, I welcome you to my first published script on TradingView: “Multi-timeframe Moving Averages + Stochastic RSI”. The script is based on a simple formula: Buy signals are generated when a fast moving average is above a slower moving average (uptrend) and the Stochastic RSI K line is crossing above the oversold level (entry). Sell signals are generated...
The Trend Persistence Rate Indicator was created by Richard Poster (Stocks and Commodities Feb 2021 pg 12) and this indicator is a good trend strength indicator similar to ADX. A good strategy with this indicator according to the author is to combine this with a moving average crossover strategy and a volatility indicator. Buy when the price crosses over the...
First of all the biggest thanks to @tista and @KivancOzbilgic for publishing their open source public indicators Bayesian BBSMA + nQQE Oscillator. And a mighty round of applause for @MarkBench for once again being my superhero pinescript guy that puts these awesome combination Ideas and ES stradegies in my head together. Now let me go ahead and explain what we...
It highlights on the chart when the SMA20 crosses the SMA60 etc. for the Monthly, Quaterly, Yearly SMA trends.
Hi! :) This strategy is made for intraday trades, especially on 5 sec - 5 min charts to follow the trend. I have not tested on higher timeframes, but feel free to play with the values. I have set a basic value for the 3 SMA at -200 -400 -600 We will use an oscillator for entries which is not mine. Link -> The oscillator mentioned above is just for...
Thanks to MasBart, I updated the earlier version to normalize signal and lead according to vigor and trigger. Vigor and trigger are limited to +-2. Now signal and lead are also in that range. The code of interest is lines 39-43: tmpdif = (BP - nz(BP ))/close a = array.new_float(0) for i = 0 to win-1 array.push(a, tmpdif ) den = array.max(a) den is then used...
A SuperTrend like indicator based on highest and lowest candle close from a few bars back. It looks almost the same as Donchian Channels but with a dominant trend direction inside (Black line). Uptrend: Candle closed higher than highest close Downtrend: Candle closed lower than lowest close This works best on higher time frames since a daily close is more...
Here are two moving averages, one based on positive candles and the other based on negative candles. If the current bar is positive, the negative MA will use its last known negative bar for the calculation. The default setting uses Heikin Ashi to smooth the candles with the trend, you can turn this off if you want in inputs. Let me know if you find it useful :)