CCI MTF Ob+OsHello Traders,
This is a simple Commodity Channel Index (CCI) indicator with multi-timeframe (MTF) overbought and oversold level.
It can detect overbought and oversold level up to 5 timeframes, which help traders spot potential reversal point more easily.
There are options to select 1-5 timeframes to detect overbought and oversold.
Green Background is "Oversold" , looking for "Long".
Red Background is "Overbought" , looking for "Short".
Have fun :)
Mtfanalysis
HighTimeframeSamplingLibrary "HighTimeframeSampling"
Library for sampling high timeframe (HTF) data. Returns an array of historical values, an arbitrary historical value, or the highest/lowest value in a range, spending a single security() call.
An optional pass-through for the chart timeframe is included. Other than that case, the data is fixed and does not alter over the course of the HTF bar. It behaves consistently on historical and elapsed realtime bars.
The first version returns floating-point numbers only. I might extend it if there's interest.
🙏 Credits: This library is (yet another) attempt at a solution of the problems in using HTF data that were laid out by Pinecoders - to whom, especially to Luc F, many thanks are due - in "security() revisited" - which I recommend you consult first. Go ahead, I'll wait.
All code is my own.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
WHAT'S THE PROBLEM? OR, WHY NOT JUST USE SECURITY()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
There are many difficulties with using HTF data, and many potential solutions. It's not really possible to convey it only in words: you need to see it on a chart.
Before using this library, please refer to my other HTF library, HighTimeframeTiming: which explains it extensively, compares many different solutions, and demonstrates (what I think are) the advantages of using this very library, namely, that it's stable, accurate, versatile and inexpensive. Then if you agree, come back here and choose your function.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MOAR EXPLANATION
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
🧹 Housekeeping: To see which plot is which, turn line labels on: Settings > Scales > Indicator Name Label. Vertical lines at the top of the chart show the open of a HTF bar: grey for historical and white for real-time bars.
‼ LIMITATIONS: To avoid strange behaviour, use this library on liquid assets and at chart timeframes high enough to reliably produce updates at least once per bar period.
A more conventional and universal limitation is that the library does not offer an unlimited view of historical bars. You need to define upfront how many HTF bars you want to store. Very large numbers might conceivably run into data or performance issues.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
BRING ON THE FUNCTIONS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@function f_HTF_Value(string _HTF, float _source, int _arrayLength, int _HTF_Offset, bool _useLiveDataOnChartTF=false)
Returns a floating-point number from a higher timeframe, with a historical operator within an abitrary (but limited) number of bars.
@param string _HTF is the string that represents the higher timeframe. It must be in a format that the request.security() function recognises. The input timeframe cannot be lower than the chart timeframe or an error is thrown.
@param float _source is the source value that you want to sample, e.g. close, open, etc., or you can use any floating-point number.
@param int _arrayLength is the number of HTF bars you want to store and must be greater than zero. You can't go back further in history than this number of bars (minus one, because the current/most recent available bar is also stored).
@param int _HTF_Offset is the historical operator for the value you want to return. E.g., if you want the most recent fixed close, _source=close and _HTF_Offset = 0. If you want the one before that, _HTF_Offset=1, etc.
The number of HTF bars to look back must be zero or more, and must be one less than the number of bars stored.
@param bool _useLiveDataOnChartTF uses live data on the chart timeframe.
If the higher timeframe is the same as the chart timeframe, store the live value (i.e., from this very bar). For all truly higher timeframes, store the fixed value (i.e., from the previous bar).
The default is to use live data for the chart timeframe, so that this function works intuitively, that is, it does not fix data unless it has to (i.e., because the data is from a higher timeframe).
This means that on default settings, on the chart timeframe, it matches the raw source values from security(){0}.
You can override this behaviour by passing _useLiveDataOnChartTF as false. Then it will fix all data for all timeframes.
@returns a floating-point value that you requested from the higher timeframe.
@function f_HTF_Array(string _HTF, float _source, int _arrayLength, bool _useLiveDataOnChartTF=false, int _startIn, int _endIn)
Returns an array of historical values from a higher timeframe, starting with the current bar. Optionally, returns a slice of the array. The array is in reverse chronological order, i.e., index 0 contains the most recent value.
@param string _HTF is the string that represents the higher timeframe. It must be in a format that the request.security() function recognises. The input timeframe cannot be lower than the chart timeframe or an error is thrown.
@param float _source is the source value that you want to sample, e.g. close, open, etc., or you can use any floating-point number.
@param int _arrayLength is the number of HTF bars you want to keep in the array.
@param bool _useLiveDataOnChartTF uses live data on the chart timeframe.
If the higher timeframe is the same as the chart timeframe, store the live value (i.e., from this very bar). For all truly higher timeframes, store the fixed value (i.e., from the previous bar).
The default is to use live data for the chart timeframe, so that this function works intuitively, that is, it does not fix data unless it has to (i.e., because the data is from a higher timeframe).
This means that on default settings, on the chart timeframe, it matches raw source values from security().
You can override this behaviour by passing _useLiveDataOnChartTF as false. Then it will fix all data for all timeframes.
@param int _startIn is the array index to begin taking a slice. Must be at least one less than the length of the array; if out of bounds it is corrected to 0.
@param int _endIn is the array index BEFORE WHICH to end the slice. If the ending index of the array slice would take the slice past the end of the array, it is corrected to the end of the array. The ending index of the array slice must be greater than or equal to the starting index. If the end is less than the start, the whole array is returned. If the starting index is the same as the ending index, an empty array is returned. If either the starting or ending index is negative, the entire array is returned (which is the default behaviour; this is effectively a switch to bypass the slicing without taking up an extra parameter).
@returns an array of HTF values.
@function f_HTF_Highest(string _HTF="", float _source, int _arrayLength, bool _useLiveDataOnChartTF=true, int _rangeIn)
Returns the highest value within a range consisting of a given number of bars back from the most recent bar.
@param string _HTF is the string that represents the higher timeframe. It must be in a format that the request.security() function recognises. The input timeframe cannot be lower than the chart timeframe or an error is thrown.
@param float _source is the source value that you want to sample, e.g. close, open, etc., or you can use any floating-point number.
@param int _arrayLength is the number of HTF bars you want to store and must be greater than zero. You can't have a range greater than this number.
@param bool _useLiveDataOnChartTF uses live data on the chart timeframe.
If the higher timeframe is the same as the chart timeframe, store the live value (i.e., from this very bar). For all truly higher timeframes, store the fixed value (i.e., from the previous bar).
The default is to use live data for the chart timeframe, so that this function works intuitively, that is, it does not fix data unless it has to (i.e., because the data is from a higher timeframe).
This means that on default settings, on the chart timeframe, it matches raw source values from security().
You can override this behaviour by passing _useLiveDataOnChartTF as false. Then it will fix all data for all timeframes.
@param _rangeIn is the number of bars to include in the range of bars from which we want to find the highest value. It is NOT the historical operator of the last bar in the range. The range always starts at the current bar. A value of 1 doesn't make much sense but the function will generously return the only value it can anyway. A value less than 1 doesn't make sense and will return an error. A value that is higher than the number of stored values will be corrected to equal the number of stored values.
@returns a floating-point number representing the highest value in the range.
@function f_HTF_Lowest(string _HTF="", float _source, int _arrayLength, bool _useLiveDataOnChartTF=true, int _rangeIn)
Returns the lowest value within a range consisting of a given number of bars back from the most recent bar.
@param string _HTF is the string that represents the higher timeframe. It must be in a format that the request.security() function recognises. The input timeframe cannot be lower than the chart timeframe or an error is thrown.
@param float _source is the source value that you want to sample, e.g. close, open, etc., or you can use any floating-point number.
@param int _arrayLength is the number of HTF bars you want to store and must be greater than zero. You can't go back further in history than this number of bars (minus one, because the current/most recent available bar is also stored).
@param bool _useLiveDataOnChartTF uses live data on the chart timeframe.
If the higher timeframe is the same as the chart timeframe, store the live value (i.e., from this very bar). For all truly higher timeframes, store the fixed value (i.e., from the previous bar).
The default is to use live data for the chart timeframe, so that this function works intuitively, that is, it does not fix data unless it has to (i.e., because the data is from a higher timeframe).
This means that on default settings, on the chart timeframe, it matches raw source values from security().
You can override this behaviour by passing _useLiveDataOnChartTF as false. Then it will fix all data for all timeframes.
@param _rangeIn is the number of bars to include in the range of bars from which we want to find the highest value. It is NOT the historical operator of the last bar in the range. The range always starts at the current bar. A value of 1 doesn't make much sense but the function will generously return the only value it can anyway. A value less than 1 doesn't make sense and will return an error. A value that is higher than the number of stored values will be corrected to equal the number of stored values.
@returns a floating-point number representing the lowest value in the range.
MegaRSIAre you looking for an RSI? I don't know if you can get any more information out of 1 RSI indicator than you can with MEGARSI!!!!! Includes RSI, RSI Divergence spotter, 2 RSI MAs, a smoothed RSI, a multi timeframe RSI and upper and lower diamond plots for potential trend reversals. It also includes background shading based on Andrew Cardwell's RSI ranges articles to help identify longer term trends and RSI patterns. See the included chart call outs for identification of individual parts.
Smarter SNR (Support and Ressistance, Trendline, MTF OSC)Built with love "Smarter SNR (Support and Ressistance, Trendline, MTF OSC) "
This indiator will show you Support & Ressistance, Good Trendline, and Multi-timeframe analyzing of Oscillator (Stochastic and RSI)
You can combine with your own strategy, or use this purely
DISCLAIMER :
Measure the risk first before use it in real market
Backtest The Strategy was very important, so you know the probability
Fundamentally Logical :
SNR -> Last 3 Zigzag Pivot
Trendline -> Using two last pivot for calculating the slope
Features :
1. SNR
2. Trendline
3. MTF Oscillator Analyzing
How to use it :
1. All Label, Table & Line can be turned on/off in settings
2. Pivot Period can be Adjusted in settings
3. All Label, Table & Line style can be adjusted in settings
Regards,
Hanabil
MTF Wave Screener [Cryptoheat]The "MTF Wave Screener" is a screener built to be able to scan the market quickly and easily in a very efficient way based on the "MTF Wave Stochastic RSI " function.
therefore it is basically an MTF wave stochastic scanner to monitor a wide scope of charts and know which to look deeper into using the "MTF Wave Stochastic RSI" itself. therefore it is recommended to be used with the other indicator and is considered an additional tool for those who use and master the "MTF Wave Stochastic RSI " indicator. if you do not know how it works, make sure to check it out here and read its description, which is a vital part for this one:
knowing how it works, you should be able to understand what it means for the chart to be Overbought, Oversold or having a Fake-out (mini-wave) on the MTF Wave Stochastic RSI, as well as the meaning of the values of K1, K2, K3 and the gap between K1 and K2. if not, please check it out by visiting the link attached earlier.
This table screener basically writes all the MTF data in a table showing mainly the chart's status as an option of (Oversold, Overbought, Fakeup or Fakedown) as well as the K1, K2, K3, Gap, value change from last candle data of all requested charts. Therefore acting as a market scanner for people who want to save the time needed to scan the whole market manually.
For example:
as you can see the table is showing 'GALA:USDT' pair as being oversold and having k1,k2 and k3 values of 0,0 and 9.76 respectively, therefore if you go check on the MTF Wave Stochastic RSI indicator, you will see that the current pair has a green highlight indicating oversold. and having the K1,K2 and K3 values as indicated on the indicator.
same goes for any other MTF status. Another example is when it shows a FAKEDOWN . Experienced MTF Wave Stoch RSI users know that this means that the MTF curves are formed in a bullish way showing that there is a retrace towards oversold only on the lowest time frame stochastic K1 while the normal time frame stochastic is still overbought. if you check the screener table you will see for example that 'QNTUSDT' pair is showing a FAKEDOWN the gap between K1 and K2 can be seen in the K1 and K2 values as well as the column named Gap val . with it you can determine the strength of that Fakedown. the bigger the Gap Val the higher the Fakeout and the bigger the expected bounce is should it play out.
checking on the QNTUSDT MTF Wave Stoch RSI you will see a clear fakedown between k1 and k2 (gray and blue curves), indicating a possible bounce incoming soon.
Overbought and Fakeup, each mean the opposite of Oversold and Fakedown respectively.
in short all the values contained on that screener table help you picture each chart's individual MTF Wave Stoch RSI of their own without having to check each one by itself. this is a very useful tool for traders who need to scan the market for the MTF data of each coin...
The screener comes with several options. in settings you can change the parameters for overbought, oversold , Fakeup and Fakedown in the settings according to the k1, k2, k3 values and differences. The table is made to screen 33 charts at the same time. to allow you to store more charts it is made in a way that you can choose not only those 33 but also 4 other x 33 watchlists and select the ones you want among them giving you the option to make your own 165 chart's watchlist and save it.
You must know that however, in the event that any of those default charts gets is not valid anymore, for example if a coin gets delisted of an exchange or a stock gets delisted the table will not work until you manually change that pair, even if it is in the alternative watchlists. in that case you will receive a warning message and a black indicator. in that event, please check for the pair that has been delisted and change it to another working pair and save as default.
ViVen - Multi Time Frame - Moving Average StrategyHi Traders,
Indicator Description : Multiple Time Frame Moving Average lines in One Chart.
Moving Average Types : SMA, WMA, EMA
Moving Average Period : 20 Default (Variable up to 200)
MA Time Frame : 1m, 3m, 5m, 15m, 30m, 1Hr, Daily, Weekly, Monthly (All lines in one chart)
You can turn ON/OFF the moving average lines based on your requirement.
Moving Average Table : The table will give you an idea where the price is currently trading (LTP), if the price is above any of the moving average then it will show you the Price is above MA and wise versa.
Trading Method:
Monthly, Weekly, Daily and 1Hr Moving averages will tell you whether the script is in Bullish Trend or Bearish Trend.
Basically the moving averages will act as Support and Resistance Levels. With candle confirmation you can take trade.
Ready to Take Position - When 1m MA Crosses 3m MA (Upside / Downside)
BUY Strategy:
"Buy" - when 3m MA breaks 5m moving average on the upside. (Intraday/Scalp)
"Hold" - when 5m MA breaks 15m MA on the upside.
"Strong Hold" - when 15m MA breaks 1Hr MA on the upside for Long term.
"Exit" - when 3m MA breaks 5m MA on the Downside.
SELL Strategy:
"Sell" - when 3m MA breaks 5m moving average on the Downside. (Intraday/Scalp)
"Hold" - when 5m MA breaks 15m MA on the Downside. (Intraday)
"Strong Hold" - when 15m MA breaks 1Hr MA on the Downside. (Positional).
"Exit" - when 3m MA breaks 5m MA on the Downside.
If you agree with this strategy and works well please like this script, share it with your friends and Follow me for more Indicators.
In the next Version, I will come up with Strategy table that I have explained here.
Thanks for your support.
Indicators OverlayHello All,
This script shows the indicators in separate windows on the main chart. Included indicators are RSI, CCI, OBV, Stochastic, Money Flow Index, Average True Range and Chande Momentum Oscillator. indicator windows are located at the top or bottom of the chart according to last moves of the Closing price. Different colors are used for each indicator. Horizontal levels are shown as dashed line and label as well.
Using the options;
You can enable/disable the indicators you want to see or not
You can change source and length for each indicator
You can set window length. using this length indicator windows are located on the chart
After you added this indicator to your chart I recommend: right click on any of the indicator windows => "Visual Order" => "Bring to front" as seen screenshot below:
in this example only 3 indicators enabled and period is set as 80:
indicator windows moves to the top or bottom of the chart according to the close price:
P.S. if you want to see any other indicator in the options then leave a comment under the indicator ;)
Enjoy!
9 Seasons Rainbow Multiple Time Frames Pattern Standard [9SRSEN]The indicator discovers profitable patterns by associating Price Season of multiple time frames.
Full Name: 9 Seasons Rainbow - Multiple Time Frames Associated Price Wave Pattern Indicator
This is redefined from “9 Seasons Rainbow Indicator STANDARD”, with clearer definition of 9 Seasons and user manual.
Version: Invite-Only Standard
Language: English
Copyright: 2019
---------- How to use the indicator ----------
Go through the manual and related ideas underneath or follow the tutorials list. Look through the profitable patterns and related cases, wait for or set alert for specific profitable pattern.
---------- Definition: 9 Seasons ----------
A life cycle of Price Wave is divided into 9 Seasons. Each time frame, from 5 minute to 1 month, has 9 seasons, Independent of each other:
Bull (Green)
Bull Pullback (Light Green): a pullback or retracement
Resistance / Overbought (Yellow): a resistance area, may become a Top, or be broken through.
Crazy Bought (Lime): Price is going up in a high volatility, could be a valid breakout, or a Bull Trap.
Neutral (White): a wandering season without direction, evolves into Bull or Bear
Bear (Red)
Bear Bounce (Light Red): Price bounces
Support / Oversold (Blue): a support area, may become a Bottom, or be broken through.
Crazy Sold (Fuchsia): Price is going down in a high volatility, could be a valid breakdown, or a Bear Trap.
---------- Some important evolution between seasons ----------
Resistance / Overbought (Yellow) -> Crazy Bought (Lime):
Bull is breaking through a resistance.
Crazy Bought (Lime) -> Resistance / Overbought (Yellow):
This normally indicates a failed breakout, Price goes back to the resistance.
Crazy Bought (Lime) -> Bull Pullback (Light Green):
This normally indicates Price has risen to a new level
Support / Oversold (Blue) -> Crazy Sold (Fuchsia):
Bear is breaking through a support.
Crazy Sold (Fuchsia) -> Support / Oversold (Blue):
This normally indicates a failed breakdown, Price recovers to the support.
Crazy Sold (Fuchsia) -> Bear Bounce (Light Red):
This normally indicates price has dropped to a new level
---------- Rainbow Ribbons for Multiple Time Frames ----------
Each ribbon of a rainbow represents a time frame.
The uppermost ribbon represents the shortest-term time frame - current time period of the chart, which is the time frame for trading.
The lowermost ribbon represent longest-term time frame, which work as environment, together with the other medium-term and long-term time frames.
The difference between two frames is 1.4142 fold (square root of 2), if level 1 is 15 minute, level 2 is 15 minute * (square root of 2) .
Examples of time frames in a rainbow:
For STANDARD in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M
For PRO in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M - 240M(4H) - 339M - 480M(8H) - 679M
---------- Trading Methods ----------
How to open a Long position?
When a profitable Long pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the support, open 2nd position; when it breaks through the resistance, pullbacks and confirms the breakout, open 3rd position.
How to exit a Long position?
Lift the Stop to a confirmed higher low, so that to take advantages of the bull run as possible.
How to open a Short position?
When a profitable Short pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the resistance, open 2nd position; when it breaks through the support, bounces and confirms the breakdown, add 3rd position.
How to exit a Short position?
Lower the Stop to a confirmed lower high, so that to take advantages of the bear run as possible.
---------- Versions Description ----------
The features may change later without advance notice.
PRO:
Invite-Only, with the following advanced features:
12 Ribbons Rainbow displays 9 Seasons of 12 time frames on a chart.
Advanced alert sets allows set alerts on short-term, medium-term, and long-term time frames.
Capability to input different trading instrument to compare with the current ticker.
Full time periods access allows apply it to broadest time periods, from 1 minute to 1 week (if history data is enough)
More new features in updates.
STANDARD:
Invite-Only, with the following advanced features:
8 Ribbons Rainbow displays 9 Seasons of 8 time frames on a chart.
Advanced alert sets allows set alerts on upper and lower frames.
Broad time periods access allows apply it to the most popular time periods, from 15 minute to 1 week (if history data is enough)
More new features in updates.
DEMO:
DEMO version is for trial purpose, having most of the features.
It is applicable to a list of trading instruments and specific time periods (1 hour to 1 day), which may change later without advance notice.
---------- Access to Indicators ----------
Please use DEMO version for Trial
Asking access to Invite-Only PRO and STANDARD versions:
9seasonsrainbowindicator.blogspot.com
Or contact the author.
---------- Install Invite Only: STANDARD & PRO Version----------
Ask access to STANDARD or PRO version
Open the chart -> Indicators (On the Top) -> Invite-Only Scripts (2nd button of the left bar)
Like/Favorite the indicator
Click to install on the chart
---------- About Loading Time ----------
It may take up to 2 minutes for your browser to load a new setting, depending on the your computer and network speed.
---------- List of the author's Indicators ----------
www.tradingview.com
---------- Disclaimer ----------
By using or requesting access to the indicator, you acknowledge that you have read and accepted that the indicator and any related content, including but not limited to: user manual, tutorials, ideas, videos, chats, emails, blog, are for the purpose of trading strategies studying and paper trading.
If a customer or user uses the indicator or related content mentioned above for live trading or investment, she/he should take all risks and be responsible for her/his own trading and investment activities.
---------- Updates ----------
The latest updates override the previous description.
To activate a update: Close the browser, Reopen the chart and apply the indicator.
9 Seasons Rainbow Multiple Time Frames Pattern PRO [9SPEN]The indicator discovers profitable patterns by associating Price Season of multiple time frames.
Full Name: 9 Seasons Rainbow - Multiple Time Frames Associated Price Wave Pattern Indicator
This is redefined from “9 Seasons Rainbow Indicator PRO”, with clearer definition of 9 Seasons and user manual.
Version: Invite-Only PRO
Language: English
Copyright: 2019
---------- How to use the indicator ----------
Go through the manual and related ideas underneath or follow the tutorials list. Look through the profitable patterns and related cases, wait for or set alert for specific profitable pattern.
---------- Definition: 9 Seasons ----------
A life cycle of Price Wave is divided into 9 Seasons. Each time frame, from 5 minute to 1 month, has 9 seasons, Independent of each other:
Bull (Green)
Bull Pullback (Light Green): a pullback or retracement
Resistance / Overbought (Yellow): a resistance area, may become a Top, or be broken through.
Crazy Bought (Lime): Price is going up in a high volatility, could be a valid breakout, or a Bull Trap.
Neutral (White): a wandering season without direction, evolves into Bull or Bear
Bear (Red)
Bear Bounce (Light Red): Price bounces
Support / Oversold (Blue): a support area, may become a Bottom, or be broken through.
Crazy Sold (Fuchsia): Price is going down in a high volatility, could be a valid breakdown, or a Bear Trap.
---------- Some important evolution between seasons ----------
Resistance / Overbought (Yellow) -> Crazy Bought (Lime):
Bull is breaking through a resistance.
Crazy Bought (Lime) -> Resistance / Overbought (Yellow):
This normally indicates a failed breakout, Price goes back to the resistance.
Crazy Bought (Lime) -> Bull Pullback (Light Green):
This normally indicates Price has risen to a new level
Support / Oversold (Blue) -> Crazy Sold (Fuchsia):
Bear is breaking through a support.
Crazy Sold (Fuchsia) -> Support / Oversold (Blue):
This normally indicates a failed breakdown, Price recovers to the support.
Crazy Sold (Fuchsia) -> Bear Bounce (Light Red):
This normally indicates price has dropped to a new level
---------- Rainbow Ribbons for Multiple Time Frames ----------
Each ribbon of a rainbow represents a time frame.
The uppermost ribbon represents the shortest-term time frame - current time period of the chart, which is the time frame for trading.
The lowermost ribbon represent longest-term time frame, which work as environment, together with the other medium-term and long-term time frames.
The difference between two frames is 1.4142 fold (square root of 2), if level 1 is 15 minute, level 2 is 15 minute * (square root of 2) .
Examples of time frames in a rainbow:
For STANDARD in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M
For PRO in 15M: 15M - 21M - 30M - 42M - 60M(1H) - 85M - 120M(2H) - 170M - 240M(4H) - 339M - 480M(8H) - 679M
---------- Trading Methods ----------
How to open a Long position?
When a profitable Long pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the support, open 2nd position; when it breaks through the resistance, pullbacks and confirms the breakout, open 3rd position.
How to exit a Long position?
Lift the Stop to a confirmed higher low, so that to take advantages of the bull run as possible.
How to open a Short position?
When a profitable Short pattern appears, open small position first based on signal on shortest-term time frame; after retesting and confirming the resistance, open 2nd position; when it breaks through the support, bounces and confirms the breakdown, add 3rd position.
How to exit a Short position?
Lower the Stop to a confirmed lower high, so that to take advantages of the bear run as possible.
---------- Versions Description ----------
The features may change later without advance notice.
PRO:
Invite-Only, with the following advanced features:
12 Ribbons Rainbow displays 9 Seasons of 12 time frames on a chart.
Advanced alert sets allows set alerts on short-term, medium-term, and long-term time frames.
Capability to input different trading instrument to compare with the current ticker.
Full time periods access allows apply it to broadest time periods, from 1 minute to 1 week (if history data is enough)
More new features in updates.
STANDARD:
Invite-Only, with the following advanced features:
8 Ribbons Rainbow displays 9 Seasons of 8 time frames on a chart.
Advanced alert sets allows set alerts on upper and lower frames.
Broad time periods access allows apply it to the most popular time periods, from 15 minute to 1 week (if history data is enough)
More new features in updates.
DEMO:
DEMO version is for trial purpose, having most of the features.
It is applicable to a list of trading instruments and specific time periods (1 hour to 1 day), which may change later without advance notice.
---------- Access to Indicators ----------
Please use DEMO version for Trial
Asking access to Invite-Only PRO and STANDARD versions:
9seasonsrainbowindicator.blogspot.com
Or contact the author.
---------- Install Invite Only: STANDARD & PRO Version----------
Ask access to STANDARD or PRO version
Open the chart -> Indicators (On the Top) -> Invite-Only Scripts (2nd button of the left bar)
Like/Favorite the indicator
Click to install on the chart
---------- About Loading Time ----------
It may take up to 2 minutes for your browser to load a new setting, depending on the your computer and network speed.
---------- List of the author's Indicators ----------
www.tradingview.com
---------- Disclaimer ----------
By using or requesting access to the indicator, you acknowledge that you have read and accepted that the indicator and any related content, including but not limited to: user manual, tutorials, ideas, videos, chats, emails, blog, are for the purpose of trading strategies studying and paper trading.
If a customer or user uses the indicator or related content mentioned above for live trading or investment, she/he should take all risks and be responsible for her/his own trading and investment activities.
---------- Updates ----------
The latest updates override the previous description.
To activate a update: Close the browser, Reopen the chart and apply the indicator.
MACD Enhanced Strategy MTF with Stop Loss [LTB]I developed this script to analyse MACD, MACD Signal, MACD Histogram movements by using current and higher time frame. Script calculates higher time frame automatically, no manuel entry. I also added trailing stop loss line. You can change the parameters as you wish ;)
btw. you should know that MACD is more successful when there is trend.
If you like it please comment and check out my other scripts.