Rebrush of Rafael Zioni's Inverse Fisher RSI-MTF2See the original:
This is indeed a cute idea of the author, but some times this wonderful indicator raises false flags.
In order to see what is going on, put the code into indicator section of the chart.
My solution is to add variance line (in lime color) and use variance as a filter.
Mtf
VWAP Stdev Bands v3Adds timeframe option for Weekly and Monthly timeframes, changes default 2nd and 3rd bands to more common deviations
Multi SMA EMA WMA HMA BB (5+5 MAs + Bollinger Bands) MTF by RRBMulti SMA EMA WMA HMA BB (5+5 Moving Averages of Any Type with Bollinger Bands) MTF by RagingRocketBull 2018
Version 1.0
This indicator shows multiple MAs of any type (SMA EMA WMA HMA etc) with BB and MTF support
There are several versions: Simple, MTF, Pro MTF and Ultimate MTF. This is the MTF version. The Differences are listed below. All versions have BB
- Simple: you have 2 groups of MAs that can be assigned any type (5+5)
- MTF: +assign 1 custom Timeframe to any group combo (5+5 Custom TF)
- Pro MTF: +multiple Timeframes for multiple MA groups (4*3 MTF), horizontal levels and show max bars back options
- Ultimate MTF: +individual settings for each MA, multiple Timeframes
There are 2 groups of MAs, 3rd group is BB. You can:
- show/hide all MAs in a group. Use length 0 to hide a particular MA independently or uncheck in Style.
- apply any MA type to all MAs in a particular MA group. For example, you can assign all EMAs the HMA type. Groups are called EMAs and SMAs just for reference.
- assign Custom Timeframe to a particular MA/BB group combination or all groups. For example, show daily (D) EMAs+SMAs on H1 Timeframe, or only H4 (240) BB on H1.
You can use different types of MAs as dynamic S/R levels to trade of off and MA crosses as signals for possible trend change (golden/death bull/bear crosses).
Current Timeframe MAs can be used together with Custom Timeframe MAs on a single chart. Higher TF MAs are more important than lower TF MAs.
Most common MA types are: SMA, EMA, WMA, HMA.
Most common MA lengths are: 12, 20, 26, 30, 50, 100, 200, 400 etc.
MTF Notes:
- Script UI uses simple timeframe textbox instead of input resolution dropdown to allow for 240 120 and other custom TFs
- Groups that are not assigned a Custom TF will use Current Timeframe (0).
- MTF will work for any MA type assigned to the group. BB group always uses SMA type.
- MTF works both ways: you can display a higher TF MA/BB on a lower TF or a lower TF MA/BB on a higher TF.
- MTF MA values are normally aligned at the boundary of their native timeframe. This produces stair stepping when a higher TF MA is viewed on a lower TF.
Therefore Point Density/Smoothing is applied by default on MA MTF for visual aesthetics. Set to 0 to disable and see exact ma mtf values (lines with stair stepping and original mtf alignment).
- Smoothing is disabled for BB MTF because fill doesn't work with smoothed MAs after duplicate values are replaced with na.
- MTF MA Value fluctuation is possible on the current bar due to default security lookahead
Features:
- 2 groups of custom 5+5 MAs of any type including Hull Moving Average (HMA)
- BB
- 1x Custom Timeframe with step line smoothing for 3 groups (MAs + BB)
1. based on 3EmaBB, uses plot, fill, security, change, barstate, stdev and custom hma functions
2. you can't set certain constants from input due to Pinescript limitations - change the code as needed, recompile and use as a private script version
3. you can't have plot* inside ?/if/for/function, and implementing condition forks using 2 sets of plots (na vs non-na) doubles indicator params and styles - confusing
4. swma has a fixed length = 4, alma and linreg have additional offset and smoothing params
Feel free to use. Good Luck!
MA Study: Different Types and More [NeoButane]A study of moving averages that utilizes different tricks I've learned to optimize them. Included is Bollinger Bands, Guppy (GMMA) and Super Guppy.
The method used to make it MtF should be more precise and smoother than regular MtF methods that use the security function. For intraday timeframes, each number represents each hour, with 24 equal to 1 day. For daily, 3 is 3 day, for weekly, 4 is the 4 weekly, etc. If you're on a higher timeframe than the one selected, the length will not change.
Log-space is used to make calculations work on many cryptos. The rules for color changing Guppy is changed to make it not as choppy on MAs other than EMA. Note that length does not affect SWMA and VWAP and source does not affect VWAP.
A short summary of each moving average can be found here: medium.com
List of included MAs:
ALMA: Arnaud Legoux
Double EMA
EMA: Exponential
Hull MA
KAMA: Kaufman Adaptive
Linear Regression Curve
LSMA: Least Squares
SMA: Simple
SMMA/RMA: Smoothed/Running
SWMA: Symm. Weighted
TMA: Triangular
Triple EMA
VWMA: Volume Weighted
WMA: Weighted
ZLEMA: Zero Lag
VWAP: Vol Weighted Average
Welles Wilder MA
Reverse Engineered RSI - Key Levels + MTFThis indicator overlays 5 Reverse Engineered RSI (RERSI) levels on your main chart window.
The RERSI was first developed by Giorgos Siligardos in the June 2003 issue of Stocks and Commodities Magazine. HPotter provided the initial implementation - from which this script is derived - so all credit to them (see: ).
In simple terms, RERSI plots lines on the price chart that reflect levels of the RSI . E.g. if you set up a RERSI line at a level of 50, then price will touch that line when the standard RSI indicator reads 50. Hopefully that makes sense, but compare the two if it doesn't.
Why is the RERSI useful if it's just plotting RSI values? Well, it simplifies things, and enables you to get a clearer picture of trend direction, RSI support and resistance levels, RSI trading signals, and it keeps your chart window uncluttered.
I've set up 5 RERSI lines to be plotted: Overbought and Oversold Levels, a Middle Level (generally leave this at 50), and then Down/Up Trend Lines. The latter two are loosely based on the work of Constance Brown (and they in turn were influenced by Andrew Brown), who posited that RSI doesn't breach certain levels during trends (e.g. 40-50 is often a support level during an uptrend).
Play around with the levels, and the RSI Length, to see how your particular market reacts, and where key levels may lie. Remember, this isn't meant as a stand-alone system (although I think there's potential to use it as such, especially with price action trading - which I guess wouldn't make it stand-alone then!!), and works best with confirmation from other sources.
Oh, and there's MTF capability, because I think that's useful for all indicators.
Any queries, please let me know.
Cheers,
RJR
Ichimoku Cloud Score MTFThis is a simple multi time frame (MTF) conversion of the Ichimoku Cloud Score indicator.
All credit goes to the following users for the initial implementations:
- User @dashed :
- User @sjb933 :
This script calculates the Cloud Score based on the sjb933 version; all I've done is convert the script to Pinescript version 3 (to ensure the security function works as intended) and add MTF capability.
I'm a big fan of MTF analysis when using indicators (particularly oscillators). Using a higher time frame runs into the issue of the indicator repainting until the relevant higher time frame candle closes (this is inevitable and logical - so don't comment saying it repaints!). However, for lagging indicators such as this one, adding a lower time frame provides potential entry and exit signals into the larger trend, and also provides early warning of large trend shifts before the current time frame will. This can give you more control over your trades, and in my experience helps lagging indicators such as Ichimoku stay relevant in high volatility markets that are vastly different from when the indicators were conceived.
Any queries please let me know.
Cheers,
RJR
MACD 1D Slow + 4H by mattzab1D MACD, with slightly slower values for a little less noise.
Instead of the 12, 26, 9, this shows the 13, 34, 9.
Instead of showing a histogram, it uses area and color-codes the area blue and red based on directional movement.
Overlaid is a black histogram line showing the 4H MACD, produced by values of 6, 13, 5.
OHLC RangesVisualizes candlestick formations while on lower time periods. Applicable when scalping or switching between periods.
Green background means the candle closed higher than it opened, red vice-versa. The white background shows the ranging between open and close for the candle.
Defaults to 1D, options for any time period available as a side by side.
Examples of higher resolution inputs: 3D = 3 days, W = week, M = month
Multiple Timeframe Moving Average SystemModified code from ChrisMoody, RicardoSantos & Ricardo M Arjona.
Allows for multiple moving average types across custom time-frames.
NeoButane Bitfinex BTC Longs vs. Shorts Tickers Simplified (MtF)With optional overlay for high/low candle values and daily resolution close. Now with MtF to add customization .
Made because I'm too lazy to constantly re-add tickers and to reduce noise.
TSP Cycles DoubleDouble Cycles
You can setup higher timeframe cycle period's as argument, default is M30
Always show daily EMAThis script will always plot the daily EMA regardless of which timeframe you are on.
Bollinger/Donchian ChannelsProvides a blending of Bollinger Bands and Donchian Channels with shading criteria between.
Supertrend Grid 1.0See the current pair's Supertrend direction on 4 different timeframes at once, so you won't get caught with your pants down trading against the trend. Handy for quickly space-barring through a watchlist.
Default settings are (from top to bottom) Daily, 4H, 1H and 15M but these can be changed. Any suggestions, let me know.
Coloured Volume Grid 1.0Candles are coloured based on relative price and volume:
- If today’s closing price and volume are greater than (n) bars ago, color today’s volume bar green.
- If today’s closing price is greater than (n) bars ago but volume is not, color today’s volume bar lime.
- Similarly, if today’s closing price and volume is less than (n) bars ago, color today’s volume bar orange.
- If today’s closing price is less than (n) bars ago but volume is not, color today’s volume bar red.
The above logic in itself gives pretty remarkable considering how simple the idea is. I have added a multi-timeframe feature where the same logic is applied to 4 other timeframes. This way you can quickly be aware without having to check. There are four layers and the default settings show (from top to bottom) daily, 4h, 1h and 15m
All timeframes are adjustable in the settings.
MTF Donchian Quadrants [DW]This is a simple Donchian Channel variation that separates the the channels into quadrants, and enables MTF calculation.
Average open and close plots are included for additional confirmation of a trend.
[RS]Multiple Time Frame Relative Strength IndexMultiple timeframe rsi's shows long term trend's and ideal points for entry on pull backs, also show long term exhaustion when the longer time frame rsi enters over bought/sold areas.
RS_Stoch-RSI_MTFmodification by Richard Siegers that turned stochastic mtf from ChrisMoody into stochastic-rsi mtf