T3 PPO [Loxx]T3 PPO is a percentage price oscillator indicator using T3 moving average. This indicator is used to spot reversals. Dark red is upward price exhaustion, dark green is downward price exhaustion.
What is Percentage Price Oscillator (PPO)?
The percentage price oscillator (PPO) is a technical momentum indicator that shows the relationship between two moving averages in percentage terms. The moving averages are a 26-period and 12-period exponential moving average (EMA).
The PPO is used to compare asset performance and volatility, spot divergence that could lead to price reversals, generate trade signals, and help confirm trend direction.
What is the T3 moving average?
Better Moving Averages Tim Tillson
November 1, 1998
Tim Tillson is a software project manager at Hewlett-Packard, with degrees in Mathematics and Computer Science. He has privately traded options and equities for 15 years.
Introduction
"Digital filtering includes the process of smoothing, predicting, differentiating, integrating, separation of signals, and removal of noise from a signal. Thus many people who do such things are actually using digital filters without realizing that they are; being unacquainted with the theory, they neither understand what they have done nor the possibilities of what they might have done."
This quote from R. W. Hamming applies to the vast majority of indicators in technical analysis . Moving averages, be they simple, weighted, or exponential, are lowpass filters; low frequency components in the signal pass through with little attenuation, while high frequencies are severely reduced.
"Oscillator" type indicators (such as MACD , Momentum, Relative Strength Index ) are another type of digital filter called a differentiator.
Tushar Chande has observed that many popular oscillators are highly correlated, which is sensible because they are trying to measure the rate of change of the underlying time series, i.e., are trying to be the first and second derivatives we all learned about in Calculus.
We use moving averages (lowpass filters) in technical analysis to remove the random noise from a time series, to discern the underlying trend or to determine prices at which we will take action. A perfect moving average would have two attributes:
It would be smooth, not sensitive to random noise in the underlying time series. Another way of saying this is that its derivative would not spuriously alternate between positive and negative values.
It would not lag behind the time series it is computed from. Lag, of course, produces late buy or sell signals that kill profits.
The only way one can compute a perfect moving average is to have knowledge of the future, and if we had that, we would buy one lottery ticket a week rather than trade!
Having said this, we can still improve on the conventional simple, weighted, or exponential moving averages. Here's how:
Two Interesting Moving Averages
We will examine two benchmark moving averages based on Linear Regression analysis.
In both cases, a Linear Regression line of length n is fitted to price data.
I call the first moving average ILRS, which stands for Integral of Linear Regression Slope. One simply integrates the slope of a linear regression line as it is successively fitted in a moving window of length n across the data, with the constant of integration being a simple moving average of the first n points. Put another way, the derivative of ILRS is the linear regression slope. Note that ILRS is not the same as a SMA ( simple moving average ) of length n, which is actually the midpoint of the linear regression line as it moves across the data.
We can measure the lag of moving averages with respect to a linear trend by computing how they behave when the input is a line with unit slope. Both SMA (n) and ILRS(n) have lag of n/2, but ILRS is much smoother than SMA .
Our second benchmark moving average is well known, called EPMA or End Point Moving Average. It is the endpoint of the linear regression line of length n as it is fitted across the data. EPMA hugs the data more closely than a simple or exponential moving average of the same length. The price we pay for this is that it is much noisier (less smooth) than ILRS, and it also has the annoying property that it overshoots the data when linear trends are present.
However, EPMA has a lag of 0 with respect to linear input! This makes sense because a linear regression line will fit linear input perfectly, and the endpoint of the LR line will be on the input line.
These two moving averages frame the tradeoffs that we are facing. On one extreme we have ILRS, which is very smooth and has considerable phase lag. EPMA has 0 phase lag, but is too noisy and overshoots. We would like to construct a better moving average which is as smooth as ILRS, but runs closer to where EPMA lies, without the overshoot.
A easy way to attempt this is to split the difference, i.e. use (ILRS(n)+EPMA(n))/2. This will give us a moving average (call it IE /2) which runs in between the two, has phase lag of n/4 but still inherits considerable noise from EPMA. IE /2 is inspirational, however. Can we build something that is comparable, but smoother? Figure 1 shows ILRS, EPMA, and IE /2.
Filter Techniques
Any thoughtful student of filter theory (or resolute experimenter) will have noticed that you can improve the smoothness of a filter by running it through itself multiple times, at the cost of increasing phase lag.
There is a complementary technique (called twicing by J.W. Tukey) which can be used to improve phase lag. If L stands for the operation of running data through a low pass filter, then twicing can be described by:
L' = L(time series) + L(time series - L(time series))
That is, we add a moving average of the difference between the input and the moving average to the moving average. This is algebraically equivalent to:
2L-L(L)
This is the Double Exponential Moving Average or DEMA , popularized by Patrick Mulloy in TASAC (January/February 1994).
In our taxonomy, DEMA has some phase lag (although it exponentially approaches 0) and is somewhat noisy, comparable to IE /2 indicator.
We will use these two techniques to construct our better moving average, after we explore the first one a little more closely.
Fixing Overshoot
An n-day EMA has smoothing constant alpha=2/(n+1) and a lag of (n-1)/2.
Thus EMA (3) has lag 1, and EMA (11) has lag 5. Figure 2 shows that, if I am willing to incur 5 days of lag, I get a smoother moving average if I run EMA (3) through itself 5 times than if I just take EMA (11) once.
This suggests that if EPMA and DEMA have 0 or low lag, why not run fast versions (eg DEMA (3)) through themselves many times to achieve a smooth result? The problem is that multiple runs though these filters increase their tendency to overshoot the data, giving an unusable result. This is because the amplitude response of DEMA and EPMA is greater than 1 at certain frequencies, giving a gain of much greater than 1 at these frequencies when run though themselves multiple times. Figure 3 shows DEMA (7) and EPMA(7) run through themselves 3 times. DEMA^3 has serious overshoot, and EPMA^3 is terrible.
The solution to the overshoot problem is to recall what we are doing with twicing:
DEMA (n) = EMA (n) + EMA (time series - EMA (n))
The second term is adding, in effect, a smooth version of the derivative to the EMA to achieve DEMA . The derivative term determines how hot the moving average's response to linear trends will be. We need to simply turn down the volume to achieve our basic building block:
EMA (n) + EMA (time series - EMA (n))*.7;
This is algebraically the same as:
EMA (n)*1.7-EMA( EMA (n))*.7;
I have chosen .7 as my volume factor, but the general formula (which I call "Generalized Dema") is:
GD (n,v) = EMA (n)*(1+v)-EMA( EMA (n))*v,
Where v ranges between 0 and 1. When v=0, GD is just an EMA , and when v=1, GD is DEMA . In between, GD is a cooler DEMA . By using a value for v less than 1 (I like .7), we cure the multiple DEMA overshoot problem, at the cost of accepting some additional phase delay. Now we can run GD through itself multiple times to define a new, smoother moving average T3 that does not overshoot the data:
T3(n) = GD ( GD ( GD (n)))
In filter theory parlance, T3 is a six-pole non-linear Kalman filter. Kalman filters are ones which use the error (in this case (time series - EMA (n)) to correct themselves. In Technical Analysis , these are called Adaptive Moving Averages; they track the time series more aggressively when it is making large moves.
Oscylatory skupione
Expansion Contraction IndicatorExpansion Contraction compares 2 price points (the high and the low), up or down through the 2 moving average channel (MAC) settings. Since Expansion Contraction measures every period (chart setting), it technically has “zero lag”. A second indicator compares 2 price points (the high and the low), up or down through 2 longer look-back moving average channel settings… Note: Ideally, this ratio usually produces a condition where a 2 standard deviation short term move (strong swing) equals approximately a 1 standard deviation long term move (trend strengthening).
Basically, if both the short term swing is expanding higher and the long term trend is expanding higher, then that signals the strongest part of the current swing higher (dark green bars). The strongest part of the current swing lower (dark red bars), occurs when both the short term swing is expanding lower and the long term trend is expanding lower.
Light green bars occur when the short term swing is expanding lower however; the long term trend is still bullish. Light red bars occur when the short term swing is higher however; the long term trend is still bearish. These indicate weakness in the current swing and Jake’s trailing stop rules should be considered.
When both the short term swing and the long term trend are within 1 standard deviation based on the short term swing, the resulting narrow range indicates a “not trending” or range bound condition.
When the short term swings are at or beyond +2 standard deviations, this setup is a leading indicator of the trend direction most of the time (not how long the trend will last). When the long term trend, up or down exceeds a 2 standard deviation move higher, the condition is considered over-bought or over-sold, respectively. Trade Navigator programming appears as a colored triangle (red/green). Use trailing stop rules.
Indicator created by Brian Latta based on Jake Bernstein’s principles of Moving Average Channel system.
Brian Latta - Author of “The Book on Trading”, trading system developer and coach
Jake Bernstein - Speaker at Wealth365®
HPI for crypto [ptt]The Herrick Payoff Index is designed to show the amount of money flowing into or out of a futures contract.
This indicator uses open interest (from Binance PERP like this BTCUSDTPERP_OI) from during its calculations, therefore, the pairs being analyzed must contain open interest data on Binance.
The indicator only works with USDT pairs! Like RVNUSDT, BTCUSDT... does not work with USD pairs!
The indicator works in two mode.
Index mode - when the values moving 0-100
In this case, if the value below 10, it shows the money is flowing out of the futures contract and near the local bottom. If the value above 90, it shows the money is flowing into the futures contract and near the local top.
(The two trigger can be modified, the default is low:10 and high:90)
Oscillator mode - when the values moving around the origo (0)
In this case, if the value above 0 (green), it shows the money is flowing into the futures contract, this is bullish
If the value below 0 (red), it shows the money is flowing out of the futures contract, this is bearish
Autocorrelative Power Oscillator (APO) [SpiritualHealer117]This indicator is very strong in identifying short-term trends, and was made for trading stocks and commodities. When it is green, it indicates an uptrend, and red indicates a downtrend. The transparency of the columns illustrates the strength of the trend, with transparent columns indicating weakness, while solid columns indicate strength.
Basic Explanation of the Indicator
This indicator calculates an asset's Pearson's R coefficient when compared with several different lags of the stock's price. After that, the oscillator checks whether the indicator is in the green or red compared to those correlations, and takes the sum of the correlative periods to predict which direction the market should go based on the relationship of the current price with its past correlations.
Modified for Altcoinsstepping algorithm to smooth RSI and CCI combined . This allows for noise reduction and better identification of breakouts/breakdowns/reversals.
Green is buy and Red is sell
MACD DivergencesUpdate of MACD indicator which shows the most recent, and developing, price action divergences with the histogram.
Price Convergence DivergenceSimple Price convergence divergence. Current close minus past or in other words lagging price.
TAS Navigator + TAS Ratio + TAS Yield Zones [TASMarketProfile]This bundle of 3 TAS Market Profile indicators reveal when markets are gaining momentum, exhausted and reaching critical overbought/oversold conditions. The indicators display on a space-saving bottom pane and provide multi-perspective analysis that yield confidence in what direction to trade and when. The TAS Navigator, TAS Ratio, and TAS Yield Zones can be applied to any financial market such as stocks, ETFs, futures, Forex and digital currencies.
∟ ABOUT TAS NAVIGATOR:
TAS Navigator is a versatile indicator that combines several signals to help you manage your trades and avoid unfavorable situations. At a glance, the Navigator can provide the trader with useful information about underlying trading conditions for any time frame chart. The Navigator is comprised of three primary components – the histogram, the moving average and the zero line.
The histogram consists of the vertical bars plotted above and below the horizontal “zero line.” The bars are color-coded to provide the following information:
NEON GREEN / RED – The directional move continues to gain momentum.
DARK GREEN / RED – The buying or selling momentum is falling off.
MAGENTA – Exhaustion warning and the move has reached “peaking” conditions that may be difficult to maintain. Markets are likely to run sideways for a period of time or a direction change may be near.
The moving average (MA) is the blue line that travels horizontally across the Navigator and provides a relative measure of the overall levels of buying or selling. You will notice that the dots capping the histogram bars change from green to red as they move above or below the MA. The color of these dots tells us the following:
GREEN DOTS – The buyers are currently in control.
RED DOTS – The sellers are currently in control.
The zero line is the horizontal line around which the histogram plots. It provides a reference point for the larger momentum shifts. It is color-coded in the following manner:
CYAN – The current market phase is trending / unbalanced.
YELLOW – The current market phase is sideways / balanced.
INTERPRETATION AND RULES:
The TAS Navigator’s inherent ability to visualize the overall pulse of the market can inform your trading decisions in several ways:
>>> If the histogram is neon green or red, the trader should look for trading opportunities in the appropriate direction (green = long; red = short) and hold for increased profits as long as the bars remain neon green or red.
>>> If magenta bars appear, the trader knows to tighten stops and look for profit-taking opportunities because the trend has reached peaking conditions.
>>> When the histogram switches to dark green or red – indicating momentum is slowing – the trader can look to tighten stops and consider technical areas for reentry.
>>> Once the histogram crosses the MA and the capping dot changes to the opposite color of the histogram bar, a trader knows that they can begin looking for countertrend trade opportunities.
>>> Most importantly, until that dot changes color, the trader knows that the odds do not favor looking for trading opportunities against the current trend.
>>> The relative peaks of the histogram bars can also provide valuable information. As consecutive histogram peaks move further away from the zero line, price should extend the trending move. When consecutive histogram peaks become closer to the zero line, the price should create a lower high or higher low soon.
>>> A trend line connecting histogram peaks can be used to identify trading levels based upon momentum reaching the necessary level to touch the projected trend line.
>>> Trading opportunities can also be found when divergence occurs between the histogram and price. For example, consecutive histogram peaks move further away from zero line, but price cannot extend the trend.
∟ ABOUT TAS RATIO:
TAS Ratio is a leading indicator which helps forecast short-term price movements. It is best used for gauging targeted areas for entry and exit points. It was designed to identify when price movement is confirmed by volume and volatility as well as when market moves lack momentum, conviction and follow through. TAS Ratio levels are determined by a defined time within a 24-hour period and applicable for intraday charts only. The analysis can be applied to any liquid financial instrument and provides target trading zones in either direction.
INPUT SETTINGS FOR TAS RATIO:
There are 3 inputs for TAS Ratio and below you’ll find the default settings:
Ratio RangeBars: 10
Ratio AverageBars: 3
Ratio MABars: 3
>>> Ratio RangeBars – Sets the desired lookback period. Default = 10.
>>> Ratio AverageBars – Sets the smoothing factor and should be the same as MABars setting. Default = 3.
>>> Ratio MABars – Sets the smoothing factor and should be the same as AverageBars setting. Default = 3.
CONFIGURATION NOTES:
As a rule, the RangeBars period should be twice (or more) than the AverageBars and MABars setting. Remember that the AverageBars and MABars settings should be equal. For example, 6/3/3 or 8/4/4 would be minimum separation.
Faster time charts may prefer slower indicator settings for smoother readings. For example, on 30-minute charts or lower the settings for RangeBars period and AverageBars and MABars could be 10/5/5 or even 16/8/8 respectively.
TAS RATIO DISPLAY:
TAS Ratio – Displays more volatile orange-colored line
Moving Average – Displays smoothed moving average purple-colored line
Note that the default colors can be adjusted in the Style settings.
INTERPRETATION AND RULES:
TAS Ratio is displayed on the same pane and scale as TAS Navigator in which readings of +40 is considered overbought and -40 is oversold.
TAS Ratio is especially effective when traders are aiming to time entry points into emerging intraday trends which can be observed when the price is making new “higher lows” or alternatively when price is making new “lower highs.”
TAS Ratio is a sensitive indicator by nature and should be viewed as a tool for fine-tuning a more granular entry or exit within the scope of other TAS Indicators.
TAS Ratio is useful in confirming when price may be at an area of divergence to locate and target higher probability entries and exits.
In general, price should move freely in the same direction of the indicator and in a proportionate range of movement.
When price fails to move proportionately, as much as TAS Ratio moves or stalls, this divergence alerts you to focus on immediate areas of support and resistance.
When price stalls and TAS Ratio does not stall, this is an indication to seek confirmation for a valid counter-trend trading opportunity.
Pay attention to TAS Ratio (orange line) crossovers above and below the Moving Average line (purple line), but also observe the trajectory and whether the Ratio line is pulling away and creating greater distance from the Moving Average line. Increasing distance is a sign of strength of move in that direction.
∟ ABOUT TAS YIELD ZONES:
TAS Yield Zones provides a valuable visual warning via a yellow background color when TAS Navigator and/or TAS Ratio indicators are exceeding specific overbought or oversold threshold lines dictated by the user. The indicator is visible in the same bottom pane as these two indicators. The user controls how extreme of the overbought or oversold condition they mandate in order to trigger the “Yield Zone” warning for each indicator based on the inputs for the TAS Yield Zones threshold lines.
INPUT SETTINGS FOR TAS YIELD ZONES:
Within the Input settings, you can activate or deactivate the visibility of TAS Yield Zones for TAS Navigator or TAS Ratio. By default, both will be visible. There are 4 inputs for TAS Yield Zones and below you’ll find the default settings:
Yield Zones Nav Overbought Line: 40 (red line by default)
Yield Zones Nav Oversold Line: -40 (green line by default)
Yield Zones Ratio Overbought Line: 40 (gray line by default)
Yield Zones Ratio Oversold Line: -40 (gray line by default)
The farther away the Inputs are from the 0 line, the stronger the move must be bullish or bearish in order to get to the threshold lines. For instance, Inputs of 50/-50 would require a more substantial move than 30/-30 settings. Additionally, the user can adjust the coloring of the TAS Yield Zones inside the Style settings.
TAS Yield Zones are best used in conjunction with TAS Navigator and TAS Ratio so the user can visually see when the threshold lines are near being approached and exceeded. When all three indicators are visible on the pane, you can see when there is a confluence of overbought or oversold conditions simultaneously on both TAS Navigator and TAS Ratio indicators and when exhaustion warning conditions are present. When these three conditions occur, there is a likelihood that a move in the opposite direction (or at a minimum a sideways condition) may be near.
Trade Well My Friends,
Divergence MACD Sign/Alert [MsF]MACD divergence sign & alert notification.
With this router, you can choose which further indicators you want to see divergence in MACD.
In addition, in order to improve visibility, the sub-window is designed to display only the selected index and diversity.
Lookback Bars: When detecting divergence, you can set how many bars to look back in the past.
--------------
MACDダイバージェンスのサイン&アラートインジケータです。
このインジケータでは、MACDの中でさらにどの指標のダイバージェンスを見るか選択できます。"MACD"、"Signal"、"ヒストグラム"の3つから選べます。
なお、サブウィンドウには可視性向上のため、選択した指標とダイバージェンスのみを表示する仕様としています。
■設定について
Lookback Bars:ダイバージェンス検出する場合に、何個のバーを過去にさかのぼるか設定できます。
[HA] Heikin-Ashi Shadow Candles// For overlaying Heikin Ashi candles over basic charts, or for use in it's own panel as an oscillator.
// Enjoy the visual cues of HA candles, without giving up price action awareness.
// Good for learning and comparison.
// Aug 11 2022
Release Notes: * Bugfix: Candle color was based on classic direction not HA direction (did not update cover photo).
// Aug 12 2022
Release Notes: * Implemented true oscillator mode.
Provided as separate plot (styles tab) or mode switch option (Inputs tab). TV gets spazzy with "styles tab" "default hidden" plots, and will reset them if any variables are modified that affect them (i.e. wick color override). Mode switch should be sufficient for both users.
// Aug 21 2022
Republished because of typo in indicator name prevented search.
Cumulative ATR Distance Oscillator// A Price/ATR oscillator with cumulative waves.
// Based on Cumulative Volume Delta, but using price movement alone.
// Public Domain
// By Jolly Wizard
Tom Joseph MACD 5-35 for Elliot WavesThis oscillator for the Elliott Theory has been invented by Tom Joseph and it's useful to correctly count the impulsive and corrective waves.
Its difference compared to a simple MACD is the peculiarity to use the ratio between the Fast SMA (default period set to 5) and the Slow SMA (default period se to 35).
The used formula is as below:
( (fast_SMA / slow_SMA) -1 ) * 100
Hope you could find it useful! 😉
Munich's Momentum Wave V2MUNICH'S MOMENTUM WAVE VERSION 2 IS LIVE!!!
There are a few big things to note with this one.
I decided to upload this as an entirely new script due to the number of changes differing from the first version, but as the last one, this will still work on ANY TIMEFRAME, ANY ASSET CLASS, ANY PRICE! .
This momentum wave indicator now will give you data for when trend could turn, and two momentum indicators to help you decide when to take an entry.
First off,
*I have added an alma ma (alma) that will track momentum alongside price action and further lead the indicator consisting of the Munich waves.
* The background feature will track the price using a method derived from the Bollinger bands, after calculations, it will color the background based on the average of the momentum's ema's, the alma ma, and also the alma in comparison to the alma's value pre offset ( the offset is 3, following the basis).
*There are now 5 basis values given from the increase in ema samples.
If anyone has any questions feel free to pm me or comment below. Thank you guys for the support! :)
INDEX:BTCUSD TVC:NDQ AMEX:SPY BITSTAMP:ETHUSD BINANCE:BTCUSDT FX:USDJPY NASDAQ:AAPL
Dr. Mahdi Kazempour - Crypto Trade Dashboard and Indicator PanelA great panel for crypto traders all in one table:
Price, Volume, RSI, MACD, ADI, MOM
1) current symbol
2) BTCUSDT
3) NASDAQ
4) ETHUSDT
5) TOTAL2
TTM Wave ABC By GanymedeNilTo facilitate the production of an open source version of the strategy TTM Wave ABC
München's Momentum WaveMUNICH'S MOMENTUM WAVE:
This momentum tracker has features sampled from Madrid's moving average ribbon but has differentiated many values, parameters, and usage of integers. It is derived using momentum and then creates moving averages and mean lengths to help support the strength of a move in price action, and also has the key mean length that helps determine HL/LH or rejections into trend continuation. This indicator works on ALL TIME FRAMES, ALL ASSET CLASSES ON ALL SETTINGS!!
HOW DO I USE IT?
*First off, I have arranged the input settings into groups based on the parts of the indicator it affects.
*You want to use the aqua/white/yellow (Munich's line) as your leading indicator, this is a combined average of the MoM indicator.
* When using Munich's line you want to look at the relation to the mean line (the flat line that adjusts based on price action. You will often see rejections of this line into trend continuation. I personally have caught perfect LH/HL bounce trades off of this indicator.
* Use the Background and other colored moving averages to help pre-determine moves based on the -3 offset value of Munich's line. This was by design not to create 'accurate' results, but to help predict momentum swings based on sharper moves in price action better than if all values lined up to the current bar.
Cheat Code's Notes:
I hope you guys find this indicator to be useful, this is most likely the best indicator that I have written. Simply for the fact it is useful on any chart, any timeframe with any setting. If you guys have any issues with it, shoot me a pm or drop a comment. Thanks!
-CheatCode1
BINANCE:BTCUSDT BITSTAMP:ETHUSD BITSTAMP:BTCUSD PEPPERSTONE:JPYX TVC:DXY TVC:NDQ AMEX:SPY
Trend Friendly RSITrend Friendly RSI
Unlike the standard RSI, "Trend Friendly RSI" adapts to the trend. RSI and other momentum-based oscillators cannot give a buy signal in uptrends and a sell signal in downtrends because they do not take into account the momentum of the trend and behave as if the price is in a constant sideways trend. "Trend Friendly RSI", on the other hand, takes into account the momentum of the trend of your chosen length and subtracts it from the current momentum, thus giving more realistic buy and sell signals.
use it to identify your long-term investments and trading entry points for hodl. It would be wise to use this indicator for assets that you have done fundamental analysis and are sure of the trend direction. it doesn't know what the price will do, it just shows the points that are suitable for you.
remember this indicator will fail in horizontal trends.
MTF MACD BarOVERVIEW
This indicator shows MACD(Moving Average Convergence/Divergence) is up or down, represented by a bar. This indicator is compatible with MTF.
CONCEPTS
What do you want to know about market analysis?
Do you want a hard analysis? You can look for it.
All I want to know is whether the commonly known technical analysis is 'UP' or 'DOWN'.
All I want to know is whether the current market price is going up or down. Not only for the current, but also for the monthly, weekly, and daily status.
I want to make a decision in a moment. Without even thinking about it.
That is why I created a color-coded bar indicator to show the status.
No need to frown anymore.
DETAILS
You need more information about MACD, click here.
tradingview.com
MACD histogram Green ⇒ Bar is green.
MACD histogramRed ⇒ Bar is red.
Normalized MACD with RSI [bkeevil]This indicator normalizes the MACD and RSI indicators to a range between -1.0 and 1.0 so they can be displayed together on the same chart to save screen real-estate.
While the MACD is a good indicator to detect trend changes, in some circumstances (such as a sideways range market) it can give false signals. The MACD is more likely to give a false signal when the RSI indicator is close to the centerline than if the RSI is signaling an overbought or oversold condition. Thus the RSI indicator and MACD indicator are commonly used together.
I have included a few features found in other MACD indicators that I have found helpful:
MACD line changes color if it is rising or falling
Dots at the MACD line to signal crossovers
The MACD signal line is hidden it by default as the information it contains is redundant. Hiding the signal line makes the indicator less busy.
Simple Buy and Sell SignalsThis is a Simple Indicator which shows buy and sell signals based on MACD and SSL channel.
It is not a Holy Grail Indicator. It shows a lot of false signals when the market is Consolidation Zone.
So don't use this indicator to place trades based on signals given by the indicator.
Use this as a confluence along with your technical analysis
On lower timeframes there are a lot of signals so to eliminate false signals , get a signal on higher timeframe and place a trade in the direction of the trend on lower timeframe.
Hope you'll find this helpful. Enjoy👍.
TheATR: Fisher Oscillator.Fisher Oscillator(FO).
The Fisher Oscillator is inspired by John Ehlers "Fisher Transform".
The oscillator highlights when prices have moved to an extreme, based on recent prices.
The FO may help in spotting turning points, in the short-medium trends of an asset, also, it helps in recognizing the asset's trends themselves, giving a picture of mkt conditions affected by less noise.
Fisher Oscillator Components.
Fisher V1 -> Main FO.
Fisher V2 -> Past Candle FO.
0-line threshold -> Directional Component.
How to read the Fisher Oscillator.
The FO is super easy to read by itself.. also, I coded some features which make it even easier to read.
It's suggestions, which we can call "Signals", come from 2 different sources, accessible thanks to the variable "Signals Type".
- 0-Line Crosses:
When the "Fisher V1" upcrosses the oscillator 0-line, the oscillator suggests a Long scenario.
When the "Fisher V1" downcrosses the oscillator 0-line, the oscillator suggests a Short scenario.
- Classic Lines Crosses:
When the "Fisher V1" upcrosses the "Fisher V2", the oscillator suggests a Long scenario.
When the "Fisher V1" downcrosses the "Fisher V2", the oscillator suggests a Short scenario.
Users will be able to recognise these Signals visually, thanks to some color customisation to the "Fisher V1" line, and thanks to the ability of the oscillator of plotting Signals.
TheATR Documentation regarding TheATR: Fisher Oscillator.
Researching and backtesting the FO, I noticed it's skill of being able to dynamically identify trend reversals with a nice degree of reliability.
Also, the FO's able to keep up with trends up to their tops/bottoms, as it's very responsive.
This makes the FO a trend-following oscillator in my personal view, because its nature of being very fast in detecting reversals will lead to many false reversals as well.
On the other face of this coin, if we look at the FO as a source for confirmations for a trend-following strategy, may be very useful.
To conclude, I would use the FO as a confirmation oscillator, in a trend-following strategy that needs to have other components.
Thanks for reading,
TheATR.
EMA 21 + MacD + RSI + Alma
Setting
EMA 21 = Green
EMA 9 = yellow
MacD = 5 35 5
RSI = 10
Alma 20 0.8 8
RULES
Long:
1. EMA 9 below 21
2. RSI above 50 from Oversold
3. Macd Solid green
4. SL @ ALMA
5. Conditional buy limit order @ top wick
6. 1:3 RR
Short:
1. EMA 9 above 21
2. RSI below 50 from Overbought
3. Macd Solid red
4. SL @ ALMA
5. Conditional sell limit order @ bottom wick
6. 1:3 RR
Dap's Oscillator- Short Term Momentum and Trend. BINANCE:BTCUSDT BYBIT:BTCUSDT BYBIT:ETHUSDT BINANCE:ETHUSDT
DAP's OSCILLATOR:
WHAT IS IT?
This Oscillator was created to inspire confidence in the short-term trend of traders. This will work very well with a volatility metric (I recommend BBWP by @The_Caretaker)
WHAT IS IT MADE OF?
1. Consists of a series of equations (mainly the difference between simple to exponential moving averages) and Standard deviations of these moving average differences (length equivalent to the length of sampled ma's)
2. These equations are then boiled down through an averaging process array, after averaging the covariants are equated against the variants of the positive side of the array. This is what is presented as the aqua line.
3. The RC average (yellow) is the sma following the DAP'S Oscillator at a specified length
4. The most important part of this indicator is simply the momentum oscillator represented as a green or red line based on the value relative to the Oscillators.
HOW DO I USE THIS?
As I mentioned before mixed with a volatility metric, it should set you up for a good decision based on short-term trends. I would say to be careful for periods of consolidation, with the consolidation the momentum often meets hands with DAP's Oscillator and can cause fake-outs. You want to spot divergences from the price to the momentum difference, as well as room to work down or upward to secure a good entry on a position.
CHEAT CODE'S NOTES:
I appreciate everyone who has boosted my previous scripts, it means a lot. If you want to translate words to pine script onto a chart, feel free to PM me. I would be happy to help bring an indicator to life. I may take a quick break but will be back shortly to help create more cheat codes for yall. Thanks!
-Cheat Code