TopTenAlgo 6. Trading IndexEN: Trend & Trading Index Oscillator is an indicator developed using Stochastic which makes your day trading easier. Is it to measure price swings with a more sensitive and close to zero error margin, and is the price movement and the direction of the trend compatible? is the ideal guide to look at. The oscillator consists of a 5 step system. Depressions below -0.85 are measured to determine the intake region (Lowlander 2) at the bottom of the step. At the top of the step, enthusiastic movements above 0.90 are detected to determine the sales region(Highlander 2). The buffer zone is the BALANCE "0" zone and its highlander "0. 40 zone close to enthusiasm, and the Lowlander "-0.50" zone close to depression.
This algorithm is prepared with @Top10Algo ... Study modify...
TR: Trend & Trading Index Osiatörü Stochastic kullanırak geliştirilen ve gün içi al satlarınızı kolaylaştıran bir göstergedir. Fiyat salınımlarını daha hassas ve sıfıra yakın bir hatalama payıyla ölçmek ve fiyat hareketi ile trendin yönü uyumlu mu? bakmak için en ideal yol göstericidir. Osilatör 5 basamaklı bir sistemden oluşmaktadır. Basamağın en altında alım bögesini belirlemek için -0.85 değerinin altındaki depresyonlar(Lowlander 2) ölçülür. Basamağın en üstünde ise satış bölgesini belirlemek için 0.90 değerinin üstündeki coşkulu hareketler (Highlander 2) tespit edilir. Ara bölge ise BALANCE “0” bögesi ve onun coşkuya yakın Highlander 1 “0.40" bölgesi ile depresyona yakın Lowlander 1 “-0.50" bölgesi yer alır.
Bu algoritma @Top10Algo ile beraber hazırlanmıştır... Çalışma Prensipleri modifiye edildi...
Oscilador Estocástico
Multi-Timeframe Stoch RSIGood evening folks!
Today I want to share with you a simple variant of the Stochastic-RSI built-in indicator.
Nothing too complex: by enabling the relative checkbox and setting the desired (k, d or the RSI ) source and timeframes, you can see higher timeframes data plotted on your screen.
Everything you need to do is enabling the indicator on the lowest timeframe (in this case 15 minutes), then you will see in YELLOW the information retrieved from the next higher timeframe (in this case 30 minutes) and in RED the information retrieved from the highest timeframe (in this case 45 minutes).
IT'S IMPORTANT THAT YOU DISPLAY THE INDICATOR ON THE LOWEST TIMEFRAME!
You can play with the overbought and oversold heights in order to have the best configuration you want (in oversold conditions is suggested to buy while in overbought conditions is suggested to sell)
The higher timeframes data are retrieved avoiding repainting since the method used for taking them is the 10th method described in this PineCoders Article , so, if you want to enable alerts, you SHOULD ignore the disclaimer message related to it without any problem.
Good Trading!
TradingView Alerts to MT4 MT5 - Forex, indices, commoditiesHowdy Algo-Traders! This example script has been created for educational purposes - to present how to use and automatically execute TradingView Alerts on real markets.
I'm posting this script today for a reason. TradingView has just released a new feature of the PineScript language - ALERT() function. Why is it important? It is finally possible to set alerts inside PineScript strategy-type script, without the need to convert the script into study-type. You may say triggering alerts straight from strategies was possible in PineScript before (since June 2020), but it had its limitations. Starting today you can attach alert to any custom event you might want to include in your PineScript code.
With the new feature, it is easier not only to execute strategies, but to maintain codebase - having to update 2 versions of the code with each single modification was... ahem... inconvenient. Moreover, the need to convert strategy into study also meant it was required to rip the code from all strategy...() calls, which carried a lot of useful information, like entry price, position size, and more, definitely influencing results calculated by strategy backtest. So the strategy without these features very likely produced different results than with them. While it was possible to convert these features into study with some advanced "coding gymnastics", it was also quite difficult to test whether those gymnastics didn't introduce serious, bankrupting bugs.
//////
How does this new feature work? It is really simple. On your custom events in the code like "GoLong" or "GoShort", create a string variable containing all the values you need inside your alert and this string variable will be your alert's message. Then, invoke brand new alert() function and that's it (see lines 67 onwards in the script). Set it up in CreateAlert popup and enjoy. Alerts will trigger on candle close as freq= parameter specifies. Detailed specification of the new alert() function can be found in TradingView's PineScript Reference (www.tradingview.com), but there's nothing more than message= and freq= parameters. Nothing else is needed, it is very simple. Yet powerful :)
//////
Alert syntax in this script is prepared to work with TradingConnector. Strategy here is not too complex, but also not the most basic one: it includes full exits, partial exits, stop-losses and it also utilizes dynamic variables calculated by the code (such as stop-loss price). This is only an example use case, because you could handle variety of other functionalities as well: conditional entries, pending entries, pyramiding, hedging, moving stop-loss to break-even, delivering alerts to multiple brokers and more.
//////
This script is a spin-off from my previous work, posted over a year ago here: Some comments on strategy parameters have been discussed there, but let me copy-paste most important points:
* Commission is taken into consideration.
* Slippage is intentionally left at 0. Due to shorter than 1 second delivery time of TradingConnector, slippage is practically non-existing.
* This strategy is NON-REPAINTING and uses NO TRAILING-STOP or any other feature known to be causing problems.
* The strategy was backtested on EURUSD 6h timeframe, will perform differently on other markets and timeframes.
Despite the fact this strategy seems to be still profitable, it is not guaranteed it will continue to perform well in the future. Remember the no.1 rule of backtesting - no matter how profitable and good looking a script is, it only tells about the past. There is zero guarantee the same strategy will get similar results in the future.
Full specs of TradingView alerts and how to set them up can be found here: www.tradingview.com
Precise_SignalThis signal combines a portion of Chris Moody's 2014 SlingShot and my 2017 MTF Indicators. Both of our prior scripts over indicated Buy and Sell Points. This signal indicates a buy or sell point much less than our prior scripts did but with absolute precision.
I would say it is 100% accurate, but that is because I am yet to find a timeframe and symbol where the Buy signal failed to see the equity move up or the Sell signal failed to see the equity move down over the next 5 bars. I have tested 2000 charts so far. To be safe, I would rather state this indicator is accurate nearly 100% of the time.
The indicator is made up of 2 main portions and both of them have to agree on a buy or sell in order to indicate such with a vertical green or maroon bar beneath the chart. If there is a failure to agree, nothing is signaled.
Indicator 1 combines a stochastic of a 3 hour chart and a daily chart to determine when the stochastics are in agreement on direction. When there is agreement, both of them MUST cross from a buy state to a sell state and vice versa at exactly the same time. This is difficult to achieve and it is already rare for this occurrence to produce a signal. When a signal is produce it is combine with Chris Moody's 2014 SlingShot Indicator which conservatively determines Buy and Sell signals based on EMAs and market direction. Signals from his SlingShot are infrequent.
BUY Signal
When my MTF signals Buy at the same time that the SlingShot signals a Buy, a vertical green bar will appear in the window containing this script. The vertical bar is based on the close price of the equity and is only final when the close price is final. A BUY signal means the equity will move up potentially as early as the next bar and achieve a higher value from the close price on the signal bar.
SELL Signal
Likewise, a sell signal from the MTF at the same time as a sell signal from the SlingShot will create a maroon bar in the window containing this script. The vertical bar is based on the close price of the equity and is only final when the close price is final. A SELL signal means the equity will move down potentially as early as the next bar and achieve a lower value from the close price on the signal bar.
The default values for this script are hard-coded into this script. You can edit any of the value you would like to play with other timeframes, stochastic, and moving average lengths.
I have played with these values and have hard-coded the ones that are most accurate. Please let me know if you find others that work.
Hopefully this becomes an extra tool in your technical trading toolkit.
Catana Stochastic 4 in 1Catana Stochastic 4 in 1
Description
Catana Stochastic 4 in 1 is an excellent indicator to identify when the price trend of an asset, be it bullish or bearish, begins to run out. If an operator can identify that moment, he will be in optimal conditions to issue the corresponding market orders and to be able to take full advantage of the next price movement.
This indicator is represented by lines ranging between 80 and 20. These lines are called K and D.
Strategy
Overbought. When the blue and red lines are overbought, that is, at 80% of the indicator, it is a sell signal. The confirmation to enter into operation is given when the blue line crosses the red line.
Oversold. When the blue and red lines are oversold, that is, at 20% of the indicator, it is a buy signal. The confirmation to enter into operation is given when the blue line crosses the red line.
Sniper StochasticHow to use?
1) If the color is blueish, bull is dominating the market.
a) Thus look for long position by waiting for the stochastics' cross over from oversold region (or any other skills that you have which is related to stochastic i.e. divergence trading)
b) If there is dark-blue highlight at lower quadrant, it means bull's power is really strong and stable.
2) If the color is yellowish, bear is dominating the market.
a) Thus look for short position by waiting for the stochastics' cross over from overbought region.(or any other skills that you have which is related to stochastic i.e divergence trading)
b) If there is dark-red highlight at upper quadrant, it means bear's power is really strong and stable.
3) If you use multiple time frame analysis for trading, if the higher time frame's pane color is blueish, you can look for buy opportunity at lower time frame.
Stochastic with Outlier Labels/MTFTL;DR This indicator is an update to a simple stochastic ('Stoch_MTF' by binarytrader666) that provides a novel outlier highlighting feature
Improvements on stochastic:
1. Novel outlier highlighting that points out crosses that are the Nth consecutive cross or greater.
2. Allowing for multiple timeframes to be shown on the same chart
3. Highlighting/Labelling crosses and providing labels for alerts
A cross of the stochastics in the high or low zones establishes a trend. Successive crosses in the same region seem to indicate a continuation of that trend. The outlier functionality here provides a signal for when X number of crosses have been in the same trend, signaling further strength of that signal.
I also provided the necessary code for converting this to a strategy if you so wish at the bottom.
MA, Stochastic, RSI w SnowflakeDesigned PresentationThis script provides basic moving average SMA and WMA crosses to trigger the buy or sell signals for bot trades whilst displaying snowflakes. It also has the ability to let the user display more significant price action by judging the length of the space between the SMA and WMA, after filtering using the Stochastic and RSI. Only more significant breaks of these moving average crosses are displayed to the user when optimised which avoids noise and messy signals.
It will also display Stochastic and RSI over bought and over sold with the moving average difference that deems to be bullish (e.g. having a K, D RSI and MA crossing outside of 30-70 range).
Notation
Snow Flakes - the crossing of the moving averages
Aqua Snow Flakes - Trending up
Red Snow Flakes - Trending down
Stars - The crossing of the two moving averages with RSI validation
Blue Stars - Trending up w RSI Overbought
Yellow Stars - Trending down w RSI Oversold
Cross - Stochastic and RSI over bought/over sold
Pink - Pricing up
Blue - Pricing down
This only shows the smaller movement of the trends for a minimum TP
Settings:
K, D - Overbought Oversold numbers of your choice
RSI - Over bought / Over sold numbers of your choice
SMA - numbers of your choice for the closes
WMA - numbers of your choice for the closes
Usage & Details:
I make this chart for simple trades automating with the bots, so you may find too many alerts; they are for my personal private use and under my instructions outside of Trading View. Please don't try to hurt your wallets.
Knowing when a Stochastic and RSI crossing with significance on the stochastic and RSI can be of great help to a trader. Many times over bough and over sold range may not be broken with significant force and the move is therefore weaker and possibly not worth trading. They're marked (or will be marked) in triangles anyways depends on my mood.
There will be few more updates, but I may or may not publish it.
As well, you are welcome message me for the usage of this chart, but I am not friendly after feeling harassed by the moderators of this website. If you really want to make me a vendor, feel free to message me.
StochasticMore colorful than the built-in Stochastic.
My suggestion is to use it for checking divergences between K line with the price only, so I hide the signal D line as default, as the crossover between K line and D line, and the overbought and oversold area are not so reliable.
(JS) Double StochasticThe idea for this indicator came from looking at the Stochastic RSI. The Stochastic RSI takes the RSI reading then applies the Stochastic formula to it - an indicator on top of an indicator. Using this logic, I decided to try using a Stochastic on the existing Stochastic in order to smooth it out - hence the "Double Stochastic". I have also added the option to add RSI on to the indicator as well (with smoothing if you'd like).
Resolution:
I added this so you can look at the reading on any time frame.
K & D:
This is the standard K% and D% used with the Stochastic indicator - the numbers modify the length of their calculations.
Smooth:
This is the smoothing calculation, also from the normal Stochastic indicator.
Use Second Stochastic:
This adds a second Stochastic on to the chart for analysis.
K & D 2:
This is the parameters used to calculate the second K% and D% lines.
Smooth 2:
This is the smoothing interval for the second K% and D% lines.
Use K% and D%:
The default for this is to have it on. What it means is that you wish to see both the K% and D% lines (watching for a cross). If you turn this off, the plot switches to a K% & D% difference line. It is just one line that plots the distance between the two.
SMA Length Using Difference:
If this is on, then you can smooth the difference plot with an SMA, obviously if you just want the raw difference to plot, then set this to 1.
Use RSI:
Since both RSI and Stochastic use a 0-100 scale, I added the ability to plot the RSI along with the Stochastic. This will not plot if you are using the Difference plot, being that plot isn't on a 0-100 scale.
Smooth RSI:
I also added the ability to smooth the RSI if you'd like, you can turn this off for the standard RSI reading.
RSI Length:
This is the period of bars used to calculate the RSI.
RSI Smoothing Length:
This is the smoothing interval if you'd like to apply a moving average on the regular RSI reading.
RSI Smoothing Use EMA:
This makes the RSI smoothing use an EMA, when off an SMA is used instead.
RSI Source:
And finally, this is the source used to calculate the RSI value.
I hope that you all may find this useful, I have been using it myself with a lot of success. Any questions, please leave them in the comments, thanks!
[MACLEN] HODL ZONE RENKO
PLEASE READ!
Trade at your own risk. Please read about renko charts before using this indicator. This indicator is for educational purposes only.
This Indicator is only valid in renko charts with 1 second timeframe. For BTCUSDT . With the traditional method and the size box of 80.
With this indicator we can detect zones of buy and sell. Even that is not recommended to use leverage, I use it to find an entry and use only small leverages. It could be also used to accumulate and HODL bitcoin .
Please, comment anything.
POR FAVOR LEER!
Tradea bajo tu propio riesgo. Por favor lee sobre las graficas renko antes de usar este indicador. Este indicador es solamente con fines educativos.
Este indicador es válido solamente en graficas renko con un timeframe de 1 segundo. Para BTCUSDT . Con cajas del método tradicional de un tamaño de 80.
Con este indicador podemos detectar zonas de compra y venta. A pesar de que no es recomendable usar apalancamiento, yo lo uso para encontrar entradas y solo uso apalancamientos pequeños. También podría usarse para acumular y holdear bitcoin .
Por favor, escríbeme cualquier duda o comentario.
Cash Trap Oscillator 2.0This script uses a DMI, Stochastic , and one RSI , when they are all overbought or oversold (also applying price action and looking for bounce points) we can obtain a greater probability that the price will go in the direction we expect
This script is compact, which can be very useful for many traders. For Best Results, Collect Minimum of 4 Confirmations.
Default values
DMI:
Lenght=10
Stolenght=3
Stochastic:
K=5
D=1
Smooth=1
RSI:
Lenght=4
The indicators configured in this way can bring greater efficiency, do not confront only them, also use price action or other confirmat
They are arranged in a graph, such that the DMI has the oversold at 10 and the overbought at 90, the stochastic oversold at 120 and overbought at 180 and the RSI at oversold at 220 and overbought at 280, you can configure them your way taking into account that the DMI range is from 0-100, stochastic 100-200 and RSI 200-300.
G-Oscillator Strength v.1Hello this is my new indicator. Purpose of this indicator is to find the strength of the trend.
This indicator was developed by RSI(14) and Stochastic(50)
How to used
Red = RSI(14) & Sto(50) < 40
Lightblue = RSI(14) >= 50 and Sto(40) < 50
Darkblue = RSI(14) & Sto(40) >= 50
Green = Sto(40) >= 80
Yellow = RSI(14) < 50 and Sto(40) >= 50
Buy&Sell
Buy signal for this indicator is Lightblue to Darkblue
Sell signal is Green to Darkblue or Darkblue to Yellow
Custom MyMA Contrarian IndicatorThis indicator was inspired on the Sofien Kaabar's Moving Average Contrarian Indicator - MACI. It is actually a (K,1,1) stochastic indicator built on top of the distance from the price to, what a I call, a Base Moving Average.
What I have found insteresting is that, instead of only paying attention to 0% and 100% moments, I put two K stochastic lines together and observe their relative behavior. My intention, as much as Mr Kaabar's, is to detect mean-reversion moments. I am particularly interested in detecting trends ending and, while I am not able to make the Hurst exponent useful for that purpose, I have found very insightful situations with this Contrarian Indicator.
The Base Moving Average can be chosen between EMA and MyMA. MyMA is a Moving Average that tries to mimic Bo William's MIMA. Due to the close resemblance between MyMA and MIMA, I do not feel comfortable to open this script source code.
Base Moving Average default length is set to 305, and the two stochastic K lines default lengths are 17 and 72. These default lengths come from one of the Fibonacci Phi^3/2 sub series (17, 72, 305), but they can be changed to any values, particularly to the traditionally used 20, 50 and 200. Up to my knowledge, Fibonacci Phi^3 and Phi^3/2 sub series lengths were first proposed by Bo Williams.
This indicator has shown to be particularly useful when used together with the PVPC indicator at moments when the price is above 3 green lines. On these situations we must choose between keeping in the trend or inverting our position due to a potential mean-reversion. The PVPC indicator can be found on my published scripts list under the name CMyMA + Fibo.
I have noticed that when the price is above 3 PV (green) lines, but the smallest K line is below the largest K line, then the up trend does not persist. I have not used with it to check for down trends but the smallest K line above the largest K line should suggest the start of a, possibly small, upward movement.
As Kaabar suggests, when both K lines are at 100%, the price will eventualy start to fall. On the other hand, when both are at 0% it will start to rise. Things get interesting when they separate from each other, as described right abaove.
This script has also a smothing option that I have not found very useful but could work as stochastic D line.
G-strength downThis is my so proud indicator.
I call is "G-stength down" purpose of this indicator is " one glance to see the power of trend "
I am not full time-trader, Im physiotherpist and im not have a lot of time to analyze the graph. I trade only stock and crypto and buy only.
This's indicator develop form RSI(14) and Sto(50)
How to use
RED : Bearish
YELLOW : Bullish is coming but it's so weak
BLUE : Strong bullish
GREEN : Extreme bullish, if this color is present you can held until the color change
** Buy signal for me is YELLOW and change to BLUE and Sell signal is Green change to BLUE or BLUE change to YELLOW**
Note : I dont know how to write adjust the opacity. Im sorry T_T
Good luck :D
High and Low Checker
GBPUSD / 3m
BTCUSD / 5m
This is an indicator used to know the tops and bottoms of the market.
The logic is simple.
1. find out whether the current price is above or below the past by a very slow stoch.
2. Find out if the RSI is overbought or oversold.
3. Combine these two conditions and find out if the current price is tops or bottoms than it was in the past.
Appropriate settings will vary depending on the market and the time frame. Try changing various settings!
It is also not useful in markets that are experiencing a very strong trend.
For this case, we have chosen to display overshoot.
日本語
これは相場の天井と底をスナイプするために作ったインジケーターです。
ロジックはいたってシンプルです。
1. 非常に期間の長いStochを使い現在の価格が、過去から見て上か下に位置するのかを判断します。
2. RSIの買われすぎ、売られ過ぎを判断します。
3. この2つを組み合わせます。価格帯が上に位置する場合買われ過ぎが有効になり、価格帯が下に位置する場合売られ過ぎが有効になります。
銘柄や時間軸によって適切な設定値が変わると思うので、色々と試してみて下さい。
また、非常に強いトレンドが発生している相場では基本的に役に立ちません。
その場合のために、オーバーシュート(×マーク)を表示するようにしているので、参考にして下さい。
Cyber Momentum V2This Oscillator is another version of my previous Oscillator Cyber Momentum … in this version the CCI formula added to the core calculation therefore there is small differential behavior rather than Cyber Momentum because of different calculation methods …
But both of them are in the same concept; the most optimized signals are those that are in confluence of Cyber Momentum and Cyber Momentum V2 ...
SDev Adjusted StochasticDescription : This Stochastic variant will auto-adjust stochastic period based on volatility measured by standard deviation.
The idea behind it are in highly volatile market, %K period will be reduced to account for recent price range,
while in low volatility market, %K period will be increased to account less of the recent price range.
This idea is based on one of medium article written by Sofien Kaabar with slight modification on the adjusting logic implementation. Any ideas to further improve this indicator are welcome :)
Disclaimer:
I always felt Pinescript is a very fast to type language with excellent visualization capabilities, so I've been using it as code-testing platform prior to actual coding in other platform.
Having said that, these study scripts was built only to test/visualize an idea to see its viability and if it can be used to optimize existing strategy.
While some of it are useful and most are useless, none of it should be use as main decision maker.
[CM] StochasticThis is modified Stoch to Display OverBought and OverSold zones.
Overbought= flashing green and > 80
Oversold= flashing red and < 20
The white 50 line denotes the general regression crossover form bullish momentum to bearish momentum.
Developed with insights from "Krowns Crypto Cave"
Stoch Settings by default are K=14, D=3, Smooth=6.(customizable if you so desire)
Enjoy and if you like please leave a like!
Recommendations are also welcome. Thank you!
Cyber MomentumThis oscillator is the combination of different settings RSI , RSX , STOCHRSI , MSI ,... in a Stochastic function that can help traders to understand the weakness and strength of momentum in candle sticks in different time frames.
This oscillator organized by three Line , control zone and Divergence Line
1:) Fast Line
2:) Slow Line
3:) Heavy Line
4:) Neutral Zone between Fibo 38.2% & 61.8%
5:) Bullish Control Zone
6:) Bearish Control Zone
7:) Divergence Line
And there are two theories of finding tradable signals behind those parts .
The first and the most simplest theory is the situation that the Fast Line has the possibility to be supported by Slow or Heavy Lines and basically reverse its slope !!
But there are some rules and notes for this theory ... First of all the accuracy and rate of that is variable in three main categories of situation
1:) with or without price action reversal structure like reversal pattern (Head&Shoulder , Quasimodo , .... )
2:) with or without regular divergence
3:) in which control zone ?
So basically the most powerful setup occurs when price action is already in the reversal structure and the potential to have at least one drive of regular divergence exist and also the Fast Line is in the opposite control zone of the current time frame trend .... so obviously if one of those rules will not be satisfied so the signal will be the less value
The second theory is the signals that occur after the reversal, obviously a sign of trend continuation. there are two type of that you can use with this oscillator
The first one happens when price reverses its trend and this oscillator is moving to the neutral zone ... so if at least one drive of hidden divergence exist the neutral zone will have good possibility to reverse the slope of the oscillator obviously this would happen usually after hidden divergence confirmed .
and the second one is basically the first type but after the reversal Subsequently in the outside of the bullish/bearish control zone ... those kinds of signals are NOT the reversal potency signal at all !! they designed for trend continuation... be careful of them and try trade with your old friend trend ! .... also The existence of hidden divergences will be better for trade in this kind of signals .
The idea of this oscillator was inspired by @mrhashem Borjas Tarh Momentum.
(VIP) MACD & Stochastic Alignment Oscillator v2Oscillator is combining MACD with Stochastic oscillator. When both, MACD and Stochastic are aligned with direction of trend, it improves probability and strength of such signal. There's possibility to also activate second Stochastic as additional confirmation of the signal. One of winning setup is to keep MACD settings standard - 12,26,9 and both Stochastics with slightly longer settings - 14,7,7 & 21,14,14. Figures at top are displaying trend coming from MACD . Background is coloured when all signals are aligned. Stochastic is generated signal only if it travelled back recently from overbought/oversold zone - this improves reliability of generated signals.
Alerts are included to inform when trend is aligned.
If you're interested in access for oscillator, please DM me on Tradingview.com ;)
REDWOOD MTF MacD Stochastic RSIOne of out most premium indicators is this MTF MacD Stochastic RSI combo.
This is calculated with specific conditions to give the best signals for market reversals or continued trends.
=======
For a detailed description of how the REDWOOD MacD works, see profile (links of personal indicators arent posting for some reason)
For a detailed description of how the REDWOOD Stochastic RSI works, see profile
=======
These are both powerful indicators alone, but together they work very well together to confirm positions or see new entries or exits.
Without giving too much away on how it is made, this takes trades when the MacD is weak, with a confirming signal from the Stoch RSI
just the other way, it takes trades when the MacD is strong, and the Stoch RSI confirms trend.
This was made to reduce clutter of watching multiple indicators, while still giving you a chance to see what both indicators are doing and how they are flowing together.
Custom alerts are set so you never miss a trade opportunity! Get alerted on all reversals, strong signals, or even signals from the MacD or Stochastic RSI crosses!
This is a Multi Timeframe indicator so you can see what is happening on a long term time frame while trading short time frame bars, getting a better position in the market.
Best trades are when the alert or indicator is signaling, and the close of the MacD is about to happen on the MTF time frame set. All timeframes for both MacD and Stoch can be customized, and they do come with default settings.
Best MTF Time frames are longer timeframes (1hr, 4hr, D) but it can work well with current timeframe and lower timeframes (15min, 30min)
All settings for the MacD and Stoch are the same as the original, you can remove the MacD or histogram, remove or see crosses, and even color in pivot points in the MacD
~~~
Added feature is this indicator by default shows the MacD to tell you the overall trend, but you can uncheck the Show MacD setting to remove the MacD and check the Show Stoch RSI to have the indicator show you the Stoch RSI all in the same indicator! This is extremely useful to see where the Stoch RSI is at when the MacD is turning or pivoting. If the stoch is turning as well and overbought or oversold, it is a good time to enter or exit a position.
Dark Green is showing buy signals, and dark maroon is showing sell signals.
The coloring in the background (red, lime) is showing the trend we are riding and when the color goes away it is an indication of a possible trend reversal or dip coming. These are mostly used to confirm positions.
~~~
The timeframes I recommend would be the 4hr on both, althought it has proven to work well (if you want more signals) to have either the MacD or Stoch RSI on a higher timeframe and the opposite on a lower timeframe.
All plots and inputs can be customized to your own liking, and there is the option to color the bars with the Stoch RSI being overbought or oversold.
Best Trading Strategy : Enter positions according to the colors being alerted (green = buy, red = sell) when the FIRST is alerted. This is the ideal and best entry.
For safer trading you can wait for a second to confirm and enter there.
Trades can be taken on the shading colors too, trading on trend waves, although this is risky as some waves end abruptly. Best signals are as stated above.
This indicator works very well on its own but can work well along side our other indicators listed here :
Bishop MA's or MA Cloud with Fill
This can be a very useful indicator, and I'm sure some may find settings that work even better
than the default or recommended settings.
This indicator works on all markets, forex, cryptocurrency, and stocks.
For access to this and all indicators available, please DM me here or See profile.
We are here to help each other succeed! The more one succeeds the more we all succeed! We are all in this
together and every person deserves to be financially independent and confident when taking trades
and investing.
Stochastic + MACD Trend Alignment OscillatorOscillator is combining MACD with (double) Stochastic oscillator. When both, MACD and (double) Stochastic are aligned with direction of trend, it improves probability and strength of such signal. There's possibility to also activate second Stochastic as additional confirmation of the signal. One of winning setup is to keep MACD settings standard - 12,26,9 and both Stochastics with slightly longer settings - 14,7,7 & 21,14,14. Figures at top are displaying trend coming from MACD . Background is coloured when all signals are aligned.
If you're interested in access for oscillator, please DM me on Tradingview.com ;)