MM MTF Trend IndicatorMTF Trend Indicator is an indicator that can tell you the trend directions on multiple (4) time frames without having to keep switching between them
you can set 4 different time frames you want to monitor in the settings. time frame 1 is the first bar, 2 on the second bard, 3 on the third bar, and the 4th is last
red= downtrend
green= uptrend
orange= sideways market
Use link below or PM us for access you this indicator. Happy Trading
Mtf
Waindrops [Makit0]█ OVERALL
Plot waindrops (custom volume profiles) on user defined periods, for each period you get high and low, it slices each period in half to get independent vwap, volume profile and the volume traded per price at each half.
It works on intraday charts only, up to 720m (12H). It can plot balanced or unbalanced waindrops, and volume profiles up to 24H sessions.
As example you can setup unbalanced periods to get independent volume profiles for the overnight and cash sessions on the futures market, or 24H periods to get the full session volume profile of EURUSD
The purpose of this indicator is twofold:
1 — from a Chartist point of view, to have an indicator which displays the volume in a more readable way
2 — from a Pine Coder point of view, to have an example of use for two very powerful tools on Pine Script:
• the recently updated drawing limit to 500 (from 50)
• the recently ability to use drawings arrays (lines and labels)
If you are new to Pine Script and you are learning how to code, I hope you read all the code and comments on this indicator, all is designed for you,
the variables and functions names, the sometimes too big explanations, the overall structure of the code, all is intended as an example on how to code
in Pine Script a specific indicator from a very good specification in form of white paper
If you wanna learn Pine Script form scratch just start HERE
In case you have any kind of problem with Pine Script please use some of the awesome resources at our disposal: USRMAN , REFMAN , AWESOMENESS , MAGIC
█ FEATURES
Waindrops are a different way of seeing the volume and price plotted in a chart, its a volume profile indicator where you can see the volume of each price level
plotted as a vertical histogram for each half of a custom period. By default the period is 60 so it plots an independent volume profile each 30m
You can think of each waindrop as an user defined candlestick or bar with four key values:
• high of the period
• low of the period
• left vwap (volume weighted average price of the first half period)
• right vwap (volume weighted average price of the second half period)
The waindrop can have 3 different colors (configurable by the user):
• GREEN: when the right vwap is higher than the left vwap (bullish sentiment )
• RED: when the right vwap is lower than the left vwap (bearish sentiment )
• BLUE: when the right vwap is equal than the left vwap ( neutral sentiment )
KEY FEATURES
• Help menu
• Custom periods
• Central bars
• Left/Right VWAPs
• Custom central bars and vwaps: color and pixels
• Highly configurable volume histogram: execution window, ticks, pixels, color, update frequency and fine tuning the neutral meaning
• Volume labels with custom size and color
• Tracking price dot to be able to see the current price when you hide your default candlesticks or bars
█ SETTINGS
Click here or set any impar period to see the HELP INFO : show the HELP INFO, if it is activated the indicator will not plot
PERIOD SIZE (max 2880 min) : waindrop size in minutes, default 60, max 2880 to allow the first half of a 48H period as a full session volume profile
BARS : show the central and vwap bars, default true
Central bars : show the central bars, default true
VWAP bars : show the left and right vwap bars, default true
Bars pixels : width of the bars in pixels, default 2
Bars color mode : bars color behavior
• BARS : gets the color from the 'Bars color' option on the settings panel
• HISTOGRAM : gets the color from the Bearish/Bullish/Neutral Histogram color options from the settings panel
Bars color : color for the central and vwap bars, default white
HISTOGRAM show the volume histogram, default true
Execution window (x24H) : last 24H periods where the volume funcionality will be plotted, default 5
Ticks per bar (max 50) : width in ticks of each histogram bar, default 2
Updates per period : number of times the histogram will update
• ONE : update at the last bar of the period
• TWO : update at the last bar of each half period
• FOUR : slice the period in 4 quarters and updates at the last bar of each of them
• EACH BAR : updates at the close of each bar
Pixels per bar : width in pixels of each histogram bar, default 4
Neutral Treshold (ticks) : delta in ticks between left and right vwaps to identify a waindrop as neutral, default 0
Bearish Histogram color : histogram color when right vwap is lower than left vwap, default red
Bullish Histogram color : histogram color when right vwap is higher than left vwap, default green
Neutral Histogram color : histogram color when the delta between right and left vwaps is equal or lower than the Neutral treshold, default blue
VOLUME LABELS : show volume labels
Volume labels color : color for the volume labels, default white
Volume Labels size : text size for the volume labels, choose between AUTO, TINY, SMALL, NORMAL or LARGE, default TINY
TRACK PRICE : show a yellow ball tracking the last price, default true
█ LIMITS
This indicator only works on intraday charts (minutes only) up to 12H (720m), the lower chart timeframe you can use is 1m
This indicator needs price, time and volume to work, it will not work on an index (there is no volume), the execution will not be allowed
The histogram (volume profile) can be plotted on 24H sessions as limit but you can plot several 24H sessions
█ ERRORS AND PERFORMANCE
Depending on the choosed settings, the script performance will be highly affected and it will experience errors
Two of the more common errors it can throw are:
• Calculation takes too long to execute
• Loop takes too long
The indicator performance is highly related to the underlying volatility (tick wise), the script takes each candlestick or bar and for each tick in it stores the price and volume, if the ticker in your chart has thousands and thousands of ticks per bar the indicator will throw an error for sure, it can not calculate in time such amount of ticks.
What all of that means? Simply put, this will throw error on the BITCOIN pair BTCUSD (high volatility with tick size 0.01) because it has too many ticks per bar, but lucky you it will work just fine on the futures contract BTC1! (tick size 5) because it has a lot less ticks per bar
There are some options you can fine tune to boost the script performance, the more demanding option in terms of resources consumption is Updates per period , by default is maxed out so lowering this setting will improve the performance in a high way.
If you wanna know more about how to improve the script performance, read the HELP INFO accessible from the settings panel
█ HOW-TO SETUP
The basic parameters to adjust are Period size , Ticks per bar and Pixels per bar
• Period size is the main setting, defines the waindrop size, to get a better looking histogram set bigger period and smaller chart timeframe
• Ticks per bar is the tricky one, adjust it differently for each underlying (ticker) volatility wise, for some you will need a low value, for others a high one.
To get a more accurate histogram set it as lower as you can (min value is 1)
• Pixels per bar allows you to adjust the width of each histogram bar, with it you can adjust the blank space between them or allow overlaping
You must play with these three parameters until you obtain the desired histogram: smoother, sharper, etc...
These are some of the different kind of charts you can setup thru the settings:
• Balanced Waindrops (default): charts with waindrops where the two halfs are of same size.
This is the default chart, just select a period (30m, 60m, 120m, 240m, pick your poison), adjust the histogram ticks and pixels and watch
• Unbalanced Waindrops: chart with waindrops where the two halfs are of different sizes.
Do you trade futures and want to plot a waindrop with the first half for the overnight session and the second half for the cash session? you got it;
just adjust the period to 1860 for any CME ticker (like ES1! for example) adjust the histogram ticks and pixels and watch
• Full Session Volume Profile: chart with waindrops where only the first half plots.
Do you use Volume profile to analize the market? Lucky you, now you can trick this one to plot it, just try a period of 780 on SPY, 2760 on ES1!, or 2880 on EURUSD
remember to adjust the histogram ticks and pixels for each underlying
• Only Bars: charts with only central and vwap bars plotted, simply deactivate the histogram and volume labels
• Only Histogram: charts with only the histogram plotted (volume profile charts), simply deactivate the bars and volume labels
• Only Volume: charts with only the raw volume numbers plotted, simply deactivate the bars and histogram
If you wanna know more about custom full session periods for different asset classes, read the HELP INFO accessible from the settings panel
EXAMPLES
Full Session Volume Profile on MES 5m chart:
Full Session Unbalanced Waindrop on MNQ 2m chart (left side Overnight session, right side Cash Session):
The following examples will have the exact same charts but on four different tickers representing a futures contract, a forex pair, an etf and a stock.
We are doing this to be able to see the different parameters we need for plotting the same kind of chart on different assets
The chart composition is as follows:
• Left side: Volume Labels chart (period 10)
• Upper Right side: Waindrops (period 60)
• Lower Right side: Full Session Volume Profile
The first example will specify the main parameters, the rest of the charts will have only the differences
MES :
• Left: Period size: 10, Bars: uncheck, Histogram: uncheck, Execution window: 1, Ticks per bar: 2, Updates per period: EACH BAR,
Pixels per bar: 4, Volume labels: check, Track price: check
• Upper Right: Period size: 60, Bars: check, Bars color mode: HISTOGRAM, Histogram: check, Execution window: 2, Ticks per bar: 2,
Updates per period: EACH BAR, Pixels per bar: 4, Volume labels: uncheck, Track price: check
• Lower Right: Period size: 2760, Bars: uncheck, Histogram: check, Execution window: 1, Ticks per bar: 1, Updates per period: EACH BAR,
Pixels per bar: 2, Volume labels: uncheck, Track price: check
EURUSD :
• Upper Right: Ticks per bar: 10
• Lower Right: Period size: 2880, Ticks per bar: 1, Pixels per bar: 1
SPY :
• Left: Ticks per bar: 3
• Upper Right: Ticks per bar: 5, Pixels per bar: 3
• Lower Right: Period size: 780, Ticks per bar: 2, Pixels per bar: 2
AAPL :
• Left: Ticks per bar: 2
• Upper Right: Ticks per bar: 6, Pixels per bar: 3
• Lower Right: Period size: 780, Ticks per bar: 1, Pixels per bar: 2
█ THANKS TO
PineCoders for all they do, all the tools and help they provide and their involvement in making a better community
scarf for the idea of coding a waindrops like indicator, I did not know something like that existed at all
All the Pine Coders, Pine Pros and Pine Wizards, people who share their work and knowledge for the sake of it and helping others, I'm very grateful indeed
I'm learning at each step of the way from you all, thanks for this awesome community;
Opensource and shared knowledge: this is the way! (said with canned voice from inside my helmet :D)
█ NOTE
This description was formatted following THIS guidelines
═════════════════════════════════════════════════════════════════════════
I sincerely hope you enjoy reading and using this work as much as I enjoyed developing it :D
GOOD LUCK AND HAPPY TRADING!
MTF_HA & CANDLE [by coral1213]Hi traders.
This is a multi-timeframe Heikin-Ashi candle chart script.
There is no repaint.
This is used when you want to see a high time frame Heikin-Ashi candle on the candlestick chart.
1. HTF RESOLUTION = Frame of output candle... 1H=60, 4H=240, 1D=1D, 1W=1W...
2. HTF SOURCE TYPE = Selects the target chart mode for the output candle... Candlestick of HighTimeFrame or Heikin-ashi of HighTimeFrame
3. HTF RESOLUTION HIGHLIGHT = Marks the beginning of the selected resolution.
For better visibility, it is recommended to turn off the optional border color.
Enjoy Trade
Triple RSIThis idea behind this indicator was to show an un cluttered view of the RSI on 3 different timeframes. The RSI for the current chart highlights Lime/Red when it crosses the Overbought and Oversold levels, which are editable in the Inputs tab. RSI 2 defaults to the 1h timeframe and prints a lime dot at the top of the indicator when it's above the 50 level and a Red Dot at the bottom of the indicator when it's below the 50 level. It can also be viewed as a plot line that changes color when it's above or below the 50 level. RSI 3 defaults to the 4h timeframe and prints a blue square at the top of the indicator when it's above the 50 level and an orange square at the bottom of the indicator when it's below the 50 level. It also can be viewed as a plot line that changes color when it's above or below the 50 level.
I've added the indicator multiple times to show a few of the different viewing options, with the default settings at the very bottom.
REDWOOD MTF MacD
This MTF MacD is a custom made indicator to show trends and potential trend changes.
As you see the MTF MacD is colored depending on the trend and if MacD is above or below the Signal.
This indicator shows the crossover or crossunder of these plots with the colored circles that
are plotted. This can be a very useful indicator to show you a start of a new trend or a trend that
is weak, giving you ideas of when to take profit or enter a new trade.
For more information on MacD in general (for reference) Please see the detailed
description here : www.investopedia.com
This MacD is a Multi Time frame MacD, meaning it can show you higher or lower timeframes of the MacD no matter what current time frame your chart is on. This is
applied in the settings of the indicator by default, with a default timeframe of 4hr.
You can easily change back to the current time frame by checking the box "Use Current MacD Timeframe?". This can be very useful to get into a trend early, entering or exiting on low time frame bars while seeing the live Long time frame MacD. This can help reassure a position if the asset dips, or see if the asset is having one last push up before the fall.
The inputs of Fast ema, Slow ema, signal length can be customized to your liking.
There are inputs that will remove the MacD & Signal crosses, the histogram, or the MacD in general, there are also inputs you can apply that shows when the macd is changing its trend and pivoting.
For trading with this indicator, it works very well with a indicator confirming the position or potential change that is happening, I recommend the RSI or StochRSI. Specifically, the REDWOOD MTF Stochastic RSI .
When MacD line crosses over the Signal (black) line and is showing the MacD line lime, with the Histogram showing aqua or light blue,
this is when to take a Long or buy position.
When MacD line crosses under the Signal (black) line and is showing the MacD line red, with the Histogram showing red, this is when to take a short or sell position.
To filter out false crosses or trades, this is where I recommend the MTF stoch or RSI, taking trades on the MacD when the Stoch or RSI is showing signs of overbought or oversold areas. These provide the strongest signals and buy and sell positions.
This is recommended as a swing indicator , but can be used for scalping at your own risk.
As for recommended time frames to use for the MTF settings, I would stick to longer timeframes to show the overall trend. With that being said, it can be used on shorter timeframes as well and works good. I would sick to the 1hr or 4hr timeframes, and for lower I recommend the 15min or 30min timeframes.
The lower you go the more signals will be provided, but with that lots more false signals will show as well if the asset is volatile.
All settings, colors, and plots can be customized, and all are labeled to make it easy for you.
Alerts for each setting will be added in the future for simplicity, as of now the alerts can be made as usual, having the indicator plot MacD crossing the indicator plot Signal, telling you of a change in the MacD.
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.
TrendsniperTrendsniper is an indicator built with MTF / 3D capability from the seconds to the weekly chart. It uses 2 key simple moving averages for MTF; the 20 and 21 with the zone fill using the 8 21 cross. We have incorporated the sma to avoid the whipsaw factor that an ema has so one can allow to stay in a trade while the trend remains as noted on the higher time frames and visible with MTF.
The longer time frame MTF moving averages give you a picture of the overall trend allowing trader to objectively trade using them to measure potential reversals and price strength. You will see that every SMA has time designations such as "15S1M" which would mean that that specific SMA is for the local time frame of 15seconds with 1M mtf inclusion. 15M60M would mean that that SMA is for the 15M local time frame chart with 60M mtf inclusion; meaning you're able to see the 60M (60minute) SMA on your 15M (15minute) chart. The same goes for the other SMAs noted in Trendsniper.
You will also notice that moving averages function as support and resistance and MTF moving averages may clearly note that on the chart.
A simple moving average is a technical indicator that can aid in determining if an asset price will continue or if it will reverse a bull or bear trend. We have used the 8, 20, 21 SMAs in this indicator to assist one with identifying the existing trend and exiting a trade when his/her conditions as a trader are met.
Bollinger Bands with Moving Averages and MTFBollinger Bands basically use SMA, here I revised it for use with many moving averages. Moving average types I have added: "EMA", "RMA", "SMA", "WMA", "VWMA", "WWMA", "TMA", "VAR", "ZLEMA", "TSF".
There is also an MTF option to view different time zones.
SuperTrend MTF [Anan]Hello friends,
As per many experts, supertrend indicator is best to use in combination with other indicators like MACD and RSI.
The best thing about supertrend it sends out accurate signals on precise time. The indicator offers quickest technical analysis to enable the intraday traders to make faster decisions. It is extremely simple to use and understand.
However, the indicator is not appropriate for all the situations. It works when the market is trending. Hence it is best to use for short-term technical analysis. Supertrend uses only the two parameters of ATR and multiplier which are not sufficient under certain conditions to predict the accurate direction of the market.
Understanding and identifying Bull and Bear signals in supertrend is the main crux for the intraday traders. Both the downtrends as well uptrends are represented by the indicator. The flipping of the indicator over the closing price indicates signal. A Bull signal is indicated in green color whereas Bear signal is given as the indicator turns red.
Options:
- Change calculation source ( default SuperTrend uses: hl2)
- Change calculation method (default SuperTrend uses: RMA)
- Additional six multi-time frames SuperTrends
piphunter sspiphunter ss the latest indicator in the pip hunter suite its single aim is to combine important trend analysis from multiple time frames and display the estimated direction of price based off that multi-timeframe analysis
the multi-timeframe analysis is done with a series of modified SSL channels taking data from 4 different time frames and then assimilating that with a pair of moving averages periods then through a series of calculations using those 2 moving averages gives you a signal line and what we call the bacd line when they cross it signifies a new trend direction to enable entry and exit points in a lower time frame whilst still respecting the overall trend from higher time frames
things that this displays
- symbol above or below candles when multiple time frames line up in the same direction and confirmed with the integrated maths mentioned above
- recoloured candles when an overbought or oversold condition is met
This is best used with the rest of the pip hunter package for more info on getting access to all indicators in the package. Please message me for more information.
C-Multi TimeFrame RSI V1.0C-Multi TimeFrame RSI V1.0 shows multi time frame RSI signals. It indicates color based on 21EMA on RSI and the RSI values.
RSI is above 75 - Black (Over Bought)
RSI is between 61 and 75, additionally if RSI is greater than 21 EMA on RSI, it shows Green. otherwise it shows gray
RIS is between 61 and 38, No indication
RSI is between 38 and 25, additionally if RSI is less than 21 EMA on RSI, it shows Red. otherwise it shows gray
RSI is below 25 - Black (Over Sold)
By Default the Indicator shows,
5 Minutes RSI on top, 15 Minutes, 1 Hour and 4 Hours RSI interpretation subsequently.
Moving Averages - 5 Ribbon MTF HeatmapThis is a 5 Ribbon heatmap moving averages indicator where each represents a different time frame, The RED or GREEN color palette is also affected by asset velocity using ATR.
Supports various moving averages including VMA (Default), Zero Lag, TSF (Time Series Forecast).
A single ribbon is set to GREEN when fast MA (moving average) is above the slower MA and RED when fast MA is below the slower MA.
In the settings you can set the ATR length (Average True Range) which will affect the velocity calculation for the colors, higher ATR length will smooth the coloring more (Less color changes), while lower ATR will show more instant changes.
HOW TO USE?
The brighter the GREEN is the stronger the up trend.
The brighter the RED is the stronger the down trend.
A weakening GREEN color can be a sign for a down reversal.
A weakening RED color can be a sign for a up reversal .
Supports alerts when fast moving average crosses slow moving average from all time frames, either way, up or down.
Comments/Suggested/Positive feedbacks are welcome and can make this indicator even better.
Follow for upcoming indicators: www.tradingview.com
MTF VWAP + Fibo Incremental deviationsI made a Fibo variant of my first script "VWAPs + devs" :
This new indicator give you the possibility to plot multi timeframes VWAP (D, W, M, 3M and 12M ) and Fibo deviations for each one.
VWAP is a powerfull indicator which is used by big players to get informations if the price is "overbought" or "oversold". Deviations give the opportunity to have supports and resistances in those "over"-zones.
I searched for better results and found those defaults values :
Fib 1 level : 0.618
Fib 2 level : 0.786
Fib 3 level : 1.000
Fib 4 level : 1.618
Fib 5 level : 2.618
In the thumbnail, we can see that the 1.618 deviation level made a great support on the last uptrend for BTCUSDT .
You can change each values but low ones as 0.382 and 0.5 don't give really interesting supports/resistances.
I made this script as clear and simple as possible with only one menu in the parameters.
Some examples of what you can do :
BTCUSDT (Binance) H4 / D, W, M, 3M ,12M VWAP without devs
BTCUSDT (Binance) M5 / Daily VWAP + Fibo devs
Hope this will be useful for you !
umr Level TreeShows following levels and labels (which can be individually controlled):
OHLC levels of Today, Yesterday, This week, Last week, This Month, Last Month
Daily Simple Moving Averages (50, 100, 200)
Horizontal Grid on 50, 100 pips for FX instruments.
(to do) Add ATR or Std Deviation
(to do) Add Daily Change levels % i.e. 0.5%, 1%, 2%
(to do) Add Daily change in pips levels (for fx) i.e. 50 pips, 100 pips etc
Parabolic SAR (MTF)This is a multi-timeframe Parabolic SAR indicator which uses 1 and 4 hour charts.
Using this indicator is simple, if the LifeTime line is green then buy, if red then sell OR don't trade. So...
Green Line - This strategy is in a buy position
Red Line - This strategy is in a sell position
Any other colour - DON'T TRADE
The traders approach is simple, when all indicators are green or red, then take the trade. As soon as one indicator changes, then re-evaluate using your normal process, such as price action, to determine whether to close the trade or continue.
If you require any further information or script modifications, please message me.
PLEASE CHECK OUT MY OTHER SCRIPTS
MA MTF Momentum HistogramMy own interpretation indicator which i call multi time frame moving averages momentum with NO LAG EMA support (Optional).
The indicator is calculated by subtracting the long-term EMA from the short-term EMA .
This pretty much resembles the MACD moving averages calculation but without the smoothing of the histogram.
Can also be used to find divergences.
The background shows the main trend with higher time frame which can be set in the settings.
Aimed to use with Higher time frame (Double or more) but can also work with lower time frame.
How to use the indicator?
==Histogram==
Green: Momentum of asset is positive and increasing.
Lighter Green: Momentum of asset is still positive but decreasing and can revert to negative momentum.
Red: Momentum of asset is negative and increasing.
Lighter Red: Momentum of asset is still negative but increasing and revert to positive momentum.
==Background Color - Main Trend==
Green: HTF (Higher time frame) momentum is positive.
RED: HTF momentum is negative.
Feel free to comment and Follow to stay updated with upcoming scripts: www.tradingview.com
NOTE: BARS ARE COLORED BY DEFAULT WITH HISTOGRAM COLORS! (Can be changed in settings)
Supertrend Screener PanelScript to display Supertrend trend state of 8 different securities in a panel. Timeframe & Tickers which are to be displayed can be configured from settings.
Part of code is from the ADX DI Monitoring Panel script by u/wugamlo with his permission. Thanks to him for that and do please check out his work also.
TheStrat MTF High/LowI just started learning about #TheStrat by Rob Smith. I created this tool as it helps me see the bigger TFs over my short TF periods. It plots the Highs and Lows of the current and past Quarter, Month, Week, Day, 6hour, and 1hour. (I added the 6 hour for myself for use with cryptos which run 24 hours). It leaves the previous Highs/Lows plotted as well so you can see how the candles are moving within the bigger candlestick . Example, if you select the 15 minute candlestick , it will also list the current high/low for the 1h, 6h, D, W, M, and Q.
It has customization that will disable whatever TF's you are not interested in.
It has auto-detect and disable lower TFs that are less than or equal to the current selected TF. This function will only work to disable when one of the above mentioned periods is selected. Example, if you select the M candle, it will disable the M, W, D, 6h, and 1h. Only the bigger TF of the Q will be visible. Example of when function wont work, if you selected the 2 Month candle it will not disable any of the TFs.
I am open to any ideas that you experienced Stratters offer. As soon as I get better at the system and generate some income for myself, I will likely make it open source. Hope this helps.
MA Cross - Multi-Timeframe The MA cross is probably one of my favourite strategies because of its simplicity but it often gets overlooked for more complex strategies.
The original author of this script is ChartArt, I have just added some extra controls and functions which are outlined below. I would just like to add that this is my first published script, everything I have learned about coding has been from studying and tinkering with many of the publicly available scripts on TV so I would like thank all the authors who give out this knowledge so freely!
Updates
- Converted to v4
- Made some graphical changes and provided more control over plots
- Added RMA and VWMA
- Added alerts
Original script can be found here
London Open Range Breakout by KviateqThis script is what I currently use to day trade forex on a 5-minute timeframe.
The script features Multi-timeframe EMA20 that uses timeframe multipliers and is smoother by the factor by which you're multiplying your current timeframe.
Default settings are set to display EMA20 on the current (M5) timeframe, as well as M15, H1, H4 and D1 timeframes.
The background color changes intensity based on how many conditions are met - are all EMAs in the right order, is the current close above/below all the EMAs.
Featured is also a range set to 1 hour since the London breakout (can be changed to M15, or however long you'd like - my current setting is 30 minute).
Also featured are levels that I find to be of most importance - such as Daily and Weekly Open, Previous Day's and Week's Highs.
The idea is to only take trades when all stars align - EMAs, break above/below the Opening Range and not to long/short into an important level.
KK_MA_MTFThis is multitimeframe Hull moving average
you can change offset to 0 if you want realtime data
Dual Volatility StopThis merges Volatility Stop & its MTF version both published by u/TradingView . Background is colored green or red when both the current timeframe Vstop and higher timeframe Vstop point in same direction. Aim is to take the standard Vstop script which differentiates market from only uptrend/downtrend to uptrend/downtrend/sideways. There is a tradeoff with this, that there is no need for the Vstop to be always in a position which reduces trade time & frees up capital. However this leads to situations where it takes slightly more time to catch on to a trend after a reversal.
Green Background = Buy
Red Background = Sell
No Background = Flat
MTF Stoch RSI ScreenerDisplays when multiple timeframes of Stochastic RSI are overbought/oversold. Multiple consecutive timeframes being overbought/oversold can signify a short term top or bottom.
Thanks to Micse in Pinescripters telegram who helped remove a few errors from this.
CS Ultimate MA CrossThis indicator adds 5 Moving Averages on your chart. You can select the MA Type: SMA, EMA, RMA or VWMA.
By selecting a Fast MA and a Slow MA you can also draw a cloud to make the Bull or Bear bias more visual. Possibility to add on the chart Long/Short signal.
MTF possible by changing the range which is particularly useful for HTF analysis while looking a LTF price action.