MTF-RSI+Candles [VK]This is the strategy where we buy when RSI is above 51 line and sell below 49 line
Ability to change RSI TF
Ability to change default value of RSI/upline/lowline/oversold/overbought lines
Ability to switch show/hide backgrount color
Ability to switch on/off candle colors when RSI crosses up/upline down/lowline
Ability to plot B/S signals when RSI crosses up/upline down/lowline
alerts added
can also be used as standard RSI
Cari dalam skrip untuk "mtf"
mtf nori spThis is an indicator of nori_nosuke's technique.
If you check the check box of EMA ?, it becomes EMA .
If it is not checked, it is SMA .
Added multi-time flame.
If you put a chuck in the chuck box of 'mtf?', It will be changed to the time displayed below.
MTF Trend Scanner v2The MTF Trend Scanner searches multiple timeframes to identify the outlook for that particular timeframe. The overall trend becomes stronger with confluence between the timeframes.
However, the individual timeframe can be used on their own. When the colour switches red/green for the first, that mean it's the start of a new trend for that particular timeframe. It'll stay in trend until it switches off (this doesn't mean price can't reverse the opposite way so just keep that in mind!)
Use the link below to obtain access to this indicator
MTF TrendLines [Private]As the name suggests, the Multi-Timeframe (MTF) Trendlines indicator allows you to extrapolate trendlines from a higher timeframe into your chart timeframe. A maximum of one upper trendline and one lower trendline will be plotted per indicator instance. You can load multiple copies of the indicator into your chart and manually set each copy to operate in a different higher timeframe.
The trendlines are based on the two most recent upper and lower qualifying pivots found in the higher timeframe, and you can adjust the pivot size via the settings menu. In order to qualify, an upper trendline must have a flat to downward slope and a lower trendline must have a flat to upward slope. In both cases there should not be any breach of the trendline between the two pivots. A tolerance factor is provided so you can introduce some leeway in terms of what constitutes a breach.
As mentioned above, the trendlines are actually extrapolated into the chart timeframe. By that we mean that the cluster of bars that comprise each individual pivot in the higher timeframe are located in the chart timeframe, and the bar with the highest-high/lowest-low is used as the actual pivot point. This is necessary because, for example, the high of a daily pivot bar may not always exactly match the highest-high found in the pivot cluster in the chart timeframe.
In terms of selecting the higher timeframe, there are two modes of operation which can be selected via the settings dialog. In Auto Mode the indicator will automatically select the higher timeframe to use based on your chart timeframe. In Manual Mode you select the higher timeframe to use. In either case the selected higher timeframe must always be greater than or equal to the chart timeframe.
Along with each trendline you can also elect to plot pivot markers as well as price labels. Each can be customized and/or toggled on or off via the settings dialog.
The pivot markers will display as up or down triangle shapes plotted below (for lower trendline) or above (for upper trendline) the two price bars that represent the two pivots used in generating the trendline. You have the option to display just the marker, or display the marker plus the timeframe.
The price labels will display on the most current price bar (an offset is provided) and can be configured to display the trendline value as of that bar, the trendline timeframe, or both. You can also adjust the orientation of the price labels.
For the trendlines themselves, you can adjust the color, thickness, and line type. You can also toggle upper and lower trendlines on or off independently.
Please visit the link in our Signature for pricing.
MTF Trailing SL Strategy [QuantNomad]This is a Multi-Timeframe version of my Trailing SL Strategy.
Few weeks ago I published Trailing SL Strategy. There I used only basic Trailing SL to enter positions.
It worked pretty well so I tried to work on it a bit. I thought what if you can use the same ATR TSL on different timeframes and combine them into one signal.
In this strategy you can use only ATR stops and choose 3 other higher timeframes in addition to your current timeframe.
You'll see Trailing SL plotted on the chart form all these timeframes.
Entry Long position if all 4 time-frames agree on long signal.
Exit Long positions when at least 2 time-frames disagree on long signal.
Entry to Short position if all 4 time-frames agree on Short signal.
Exit from Short positions when at least 2 time-frames disagree on Short signal.
Here is the link to my basic Trailing SL Strategy:
Megatrend MTF AlertsMTF version of Megatrend, my most reliable indicator for trend analysis.
It called the end of the bear market perfectly and provides early signals. Press play:
MTF Candles (Nyzo Style)This script is straight forward.
Just practicing using the security function cause I'm terrified of it.
Thanks, Daveatt for the infopanel function with the color switcher
MTF Bollinger Bands %BMulti Time Frame (MTF) Bollinger Bands %B option:
1. On/ Off Bollinger Bands %B - M15 (15-Minute)
2. On/Off Bollinger Bands %B - H1 (1-Hour)
3. On/Off Bollinger Bands %B - H4 (4 Hour)
4. On/Off Bollinger Bands %B - D1 (Daily)
5. On/Off Bollinger Bands %B - W1 (Weekly)
6. On/Off Bollinger Bands %B - M1 (Monthly)
7. On/Off Panel Info: Color note & %B value
MTF Selection Framework - PineCoders FAQOur MTF Selection Framework allows Pine coders to add multi-timeframe capabilities to their script with the following features:
► Timeframe selection
The higher timeframe can be selected using 3 different ways:
• By steps (60 min., 1D, 3D, 1W, 1M, 1Y).
• As a multiple of the current chart's resolution, which can be fractional, so 3.5 will work.
• Fixed.
► Non-repainting or Repainting mode can be selected.
► Smoothing of the HTF line
Can be turned on/off and a smoothing factor allows the user to select the degree of smoothing he requires.
The framework is used here to create a higher timeframe version of a simple RSI line, but it can be used to access HTF information for almost any signal.
Functions used
f_resInMinutes()
Converts the current timeframe.multiplier plus the TF into minutes of type float.
• In Pine, the timeframe.multiplier is an integer representing the resolution, but a value of 1 can mean one day or one minute. This function converts that information in a standard fractional float minutes format that can then be used by the other functions in the framework.
• If the chart's current resolution is 15 seconds, the function will return 0.25 . If the chart's resolution is one day, it will return 1440 .
f_tfResInMinutes(_resolution)
Returns resolution of _resolution period in minutes.
• This function does the same as f_resInMinutes() , but on the target resolution supplied as a parameter in the timeframe.period string format.
f_resNextStep(_res)
Given a current resolution in fractional float minutes, returns its corresponding stepped HTF in the timeframe.period string format.
• This allows the implementation of the step HTF selection mode.
f_multipleOfRes(_res, _mult)
Given a current resolution in fractional float minutes and a fractional multiplier, returns a multiple of the resolution as a string in "timeframe.period" format usable with "security()".
• A multiple like 3.5 is allowed.
• Note that with seconds resolutions, the result returned is constrained by the discrete seconds resolutions available on TV.
f_htfLabel(_txt, _y, _color)
Used to display a label showing either:
• A warning when the chart's resolution is not lower than the HTF.
• The HTF resolution currently used.
The y position used to position the label will require adaptation to the signal you are using. For use in "overlay = true" mode, a technique that works well is commented out in the code.
Look first. Then leap.
MTF Smoothed Moving Averages x4A set of smoothed moving averages that stay at a fixed timeframe, regardless of the timeframe of the chart but don't have nasty jaggedy lines. Instead, they are smooooooooooooth...
MTF Average Directional Index Range DetectorHigher Timeframe ADX to detect range/trending market while trading lower time frames.
Change the resolution in the parameters. You must use a time frame equal or higher to the current time frame.
Red = Range
Green = Trending
Use the alerts to get notified when the color changes.
Adjust the Threshold parameter to change the value from which the color changes.
Click Add to favorites to get the indicator on your chart (it will appear in the Indicators->Favorites tab).
Leave a like if you find it useful!
MTF ADXI tried to convert ADX to MTF. The trend strength can be judged with ADX.
It can be judged that a trend below 20 is a weak trend, a trend above 40 is a strong trend, and a trend above 50 is a very strong trend.
As for the color of ADX, the green part is rising and the red part is falling.
It is assumed that you will make a position at the moment when it turns green or when it exceeds 20.
Entry points correspond to alerts.
The direction of the trend is judged by DI +, DI-, the part painted in blue is the uptrend and the part painted in orange is the downtrend.
ADXをMTF化してみました。ADXでトレンドの強さが判定できます。
20以下は弱いトレンド、40以上は強いトレンド、50以上は非常に強いトレンドと判定できます。
ADXの色は緑の部分が上昇中、赤色の部分が下降中です。
緑に変わった瞬間、または20を超えた瞬間ポジションメイクするのを想定しています。
エントリーポイントはアラートに対応しています。
トレンドの向きはDI+,DI-で判定し、青色に塗っている部分は上昇トレンド、オレンジ色に塗っている部分は下落トレンドです。
MTF RSI [mushoku]Multi Time Frame RSI
異なる時間軸のRSIを同時に表示できるインジケーターです。
無料で使用できます。
こちらでも簡単ですが紹介しています。
note.mu
MTF EMA RibbonThis Script analyses trends using an EMA Ribbon (Can be adjusted to any timeframe).
tips are always welcome at: 38uGQJDDZDL6wX48x4gYTccPeQ3ZHVYmY4 (btc)
I hope you enjoy the script :)
MTF Ichimoku CloudI published it because I could not find a good MTF glance.
なかなか良いMTF一目が見つからないので公開しました。
[CR] BTCLONG_SHORT MTF RSI DIV+ MTF x 3 BTCSHORT and BTCLONG on BITFINEX RSI
+ SHORT vs LONG RSI + Difference
This indicator demonstrates the difference between BTCLONG and BTCSHORT values on BITFINEX and compares their relative difference also in RSI.
Red = SHORT > LONG
Lime Over Green = LONG > SHORT difference RSI greater than LONG vs SHORT RSI.
Red Over Darker Red = SHORT > LONG difference RSI greater than SHORT vs LONG RSI.
Black trend line = Total SHORT/LONG RSI
Grey Columns = Total RSI / Difference RSI
MTF TRIX - squattterBest setting is 5, with a couple of signal lines set to 7 and 14 for crossovers or bounces.
MTF StochRSI Grid - CryptoProToolsUsing this Grid you can monitor StochRSI OB and OS levels across multiple time frames with ease!
----------------------------------------------------------------------
Popular Recent Releases by CryptoProTools
----------------------------------------------------------------------
----------------------------------------------------------------------
May the profit be with you!
MTF Bitfinex Longs vs. Shorts Support/Resistance [checkm8]Hello and welcome to my multi-timeframe support and resistance indicator based on margin longs and shorts on Bitfinex :D
The premise of the script is simple. It draws support and resistance levels based on large margin movements ( effectively showing the break-even points of those positions ), where:
Longs opening and shorts closing is bullish pressure
Longs closing and shorts opening is bearish pressure
You can select your desired timeframe for the script to show the levels on. The script draws two sets of lines, one based on medium-sized movements and another based on large movements, where you can also manually input the size of the movements for it to track. By default, the script is optimized for 1-hour timeframes on BTCUSD, where the medium sized movements are set to bullish/bearish pressures of over 500 BTC, and large movements based on pressures of over 1000 BTC.
If you choose to use a different currency pair (ex. LTCUSD, ETCUSD, EOSUSD, etc..) you must adjust the volume that the script tracks , as tracking something like a 500 margin long in XRPUSD is useless. This also applies to timeframes , as timeframes lower than 1 hour may require smaller input values, while larger timeframes will require larger movements.
In addition, there is an input for the source. I recommend leaving this setting at hlc3 , because this will capture a more appropriate break-even points for the S/R levels.
A few tips:
If the current price is under a bullish support/resistance level , this implies that the bullish margin positions are underwater (the price is below their long break-evens), ie. shorts closed at the top or longs were entered at the top
If the current price is above a bullish support/resistance level , this implies that the bullish margin positions are in profit and will act as support (they will support their long break-even points)
If the current price is under a bearish support/resistance level , this implies that the bearish margin positions are in profit and will act as resistance (the price is below their short break-evens)
If the current price is above a bearish support/resistance level , this implies that the bearish margin positions are underwater (the price is above their short break-evens), ie. shorts entered at the bottom or longs were closed at the bottom
Happy trading and feel free to reach out with feedback and suggestions! :D
Special thanks goes to oh92 for his input and feedback on the idea. Check out his profile and his vast selection of indicators in the links below!
www.tradingview.com
depthhouse.com