Reverse RSI Channel — SharkCIAGet a clear picture of trend direction by visualizing RSI levels on your charts.
Green = buy zone, red = sell zone.
The RERSI was first developed by Giorgos Siligardos in the June 2003 issue of Stocks and Commodities Magazine. RERSI plots lines on the price chart that reflect levels of the RSI.
Modified from
Original implementation by HPotter
Cari dalam skrip untuk "mtf"
Boxes Trail v1 This is update to box trail , I remove the issue of volume in calculation of the trail as its seems less accurate ,add take profit for short and long, add pivots instead the box system as it look nicer
add stop loss and easy format for autoview for those who need it
I think an MTF version maybe make it better but I need to think how to build it
also maybe another indicator addition will make it better???
Daily & 4H Moving AveragesThis indicator shows the 99MA daily (dotted) and 4H (solid) moving averages on all timeframes. It defaults to the 99MA, but you can change it to 25MA or whatever your heart desires. Why would you want to use this? Cause the 99MA is like magic for altcoins, presumably because it's the largest default MA on Binance and lots of people are watching it.
If you can see where the daily and 4h MA lines are, even while looking at a 1h or 30m chart, then you'll know more about the areas where price might do predictable stuff.
5min vwap in Multi Time FramesThis indicator will show the 5Min intraday VWAP onto any other timeframe. I like to see where the 5min VWAP is while on the 1Min chart for example.
RSI MTF by PeterOThis is my take on reaching Higher TimeFrame charts, what is usually helpful when determining the trend. On the example of RSI.
So imagine you want to check RSI from higher timeframe. 15x higher for example. There are 3 ways to do it.
1. security(tickerid,"15",rsi(close,14))
DON'T!!! I strongly advise against this method. Security() function is buggy in PineScript, leads to so-called "repainting" issues. Repainting is caused by creating leak from future data and leads to abnormally fantastic strategy backtest results like the one in Open Close Cross Strategy. Theoretically speaking if security() used correctly - with Pine version3 and barmerge.lookahead_off - you should encounter no repainting, but I could swear I saw scripts repaint even with security() implemented properly.
Even assuming security() implemented correctly will not repaint - it will create delay in your script. I'm using "15" multiplier in my example, and this means, I have to wait for 15 candles to close to produce indicators value. If a strong move happens in the meantime, I'm blind, because I have to wait anyway.
So for your own security, stay away from security() at all times.
2. rsi(close,14*15)
This will produce RSI plot with no delay, but a very flattened one. RSI will move between 45 and 45, never even reaching 30 or 70 levels. So pretty useless.
3. Dig-in-the-formula way.
Doing a bit more math produces RSI line, which is not delayed, not repainting and moving in full 0-100 RSI range. Actually - looking almost identical to the one from the higher timeframe. Which was the goal of this script.
Supertrend Multi Time Frame - Auto HTF calculationThere is already SuperTrend indicator and thanks to its developer.
This script draws supertrend for current and higher time frame, it automatically calculates higher time frame and you don't need to adjust it when you change the period.
it also change the color of bars according to current and HTF supertrend, so you can see the trend by looking at bars color.
Bar color is lime if trend is up and red if trend is down. but if you see white bars then there is movement opposite the main trend.
if you like it please comment.
TSI-DonchianHere it a TSI with MTF function , together with Donchian high and low channel
the best entry and exit are shown in arrow
FSCG-TSSLA modification of dasanc's "Fisher Stochastic Center of Gravity"
Added:
- Thresholds for Buy/Sell Signals
- Trailing Stop / Stop Loss
- Backtest Range
Support the open-source community.
Screw you people selling open-source scripts to newbies.
Tip Jar: 3KNZq8mE24MuBmpDJVF31bBy8zc9beDiZo
Contact me for collaborations and let's take things to the next level!
Do NOT contact me for alert scripts or paid-custom work, I don't work for clients.
BB Over Bought / Sold MTF// Enter a long position or exit a short position when all bands concentrate below 0.15 in lime color.
// Exit a long position or enter a short position when all bands concentrate above 0.9 in fuchsia color.
APEX - Aroon / Aroon Oscillator [v1]Simple Script that combines Aroon and Aroon Oscillator with MTF functionality for APEX.
Aroon
The Aroon also know as Aroon Up/Down will help you determine the trend of the asset of if the asset is ranging. The indicator consists of two lines the AroonDown and the Aroon Up.When Aroon Up reaches 100, a new uptrend may have begun. If it remains persistently between 70 and 100, and the Aroon-Down remains between 0 and 30, then a new uptrend is underway.If the Aroon-Up crosses above the Aroon-Down, then a new uptrend may start soon. Conversely, if Aroon-Down crosses above the Aroon-Up, then a new downtrend may start soon. When Aroon-Up reaches 100, a new uptrend may have begun. If it remains persistently between 70 and 100, and the Aroon-Down remains between 0 and 30, then a new uptrend is underway.
Aroon Oscillator
The Aroon Oscillator is the difference between Aroon-Up and Aroon-Down. These two indicators are usually plotted together for easy comparison, but chartists can also view the difference between these two indicators with the Aroon Oscillator. This indicator fluctuates between -100 and +100 with zero as the middle line. An upward trend bias is present when the oscillator is positive, while a downward trend bias exists when the oscillator is negative.
BolligerRSThe system based on finding the resistance and support lines based on Bollinger. every time the Bollinger form new line of support or new line of resistance the system will alert you .
you can change the SD or length of Bollinger to your specific needs
add Dema for seeing the trend
There is MTF system for bollinger but it can repaint so be aware if you use it on TV
I think it a good system , but need some workout on lower time frames to clean up too early signals before there is reversal of trend
p.s
The main script I found it on the data of TV long time ago (so I do not remember the author )
Strategy Hull BollingerThis is the strategy of the Bollinger and Hull cross each other
no repaint as no mtf or security
the issue here is to make allot of buy and sell with high % of win
RENKO MTFMultiframe RENKO panes with timeframe-weighted signal line and warning dots. All timeframes in settings MUST be <= your timeframe or it will repains on bigger timeframes.
EASY SYSTEM v1So here I try to make the easy system better using different scripts
I keep the donchian % channel from easy first version --this good for setting your take profit or your stop loss use it wisely
I add the top and bottom finder - here I advise to use also another indicator to verify the spots , the last one always be the bottom but in dump it will show few bottom until it find the true bottom
I add bullish area zone and bearish area zone with colors which is optional if you want to see the trend that you are now
add pivot system with MTF for also helping to see the tops and the bottom
I suggest you to add linear channel of 200 length on top it so it will be more easy to see where the asset is going
Also see the volumes (I have many volumes indicators or any volume indicator of your choice
your Aim is to buy the lowest - and sell the highest so patience sometime can save you allot of money
most of mistakes is because we want to win and we enter either too early or too late .
BB 120 + 60TEMA + 5/10ema w/8EMA TriggerClean and simple chart layout
Bollinger Bands 120 --- Showcases long term breakouts and break downs.
60 Exponential Moving Average --- High, Close, Low (Bold Red,Yellow,Green) - Current swing support/resistance pivot area
5/10 Ema --- Golden cross for entry and short term support.
MTF Fisher showcases the 34ema and acts as a visual filter
[Autoview][BackTest] open and close expSo this model is experimental open and close model , with take profit . so far seems ok from point of repainting but I cannot say that its not repaint . so be aware on this issue if you use it in live trade ( its still work in progress)
if you want to make it as a study with alerts just change the strategy to study
The issue with all open and close models in TV that they tend to repaint if we use MTF higher then the time frame that we use . I try to put a filter in order to dump this issue but its still a work in progress
so if you find this model to be repainting please let me know .
you can use the script for other model for back testing ,just remove the model that is control of the buy and sell and put your own model instead .
Dema-tfNice Dema with TF function
design to help you to see trends better and to use it as a backbone for indicator that you choose with DEMA
can help you to see trend or filter bad signals
make the TF =to the graph timset or higher
The mTF is non repainting
candels v1So this is a candel version with different smoothing methods (EMA ,KAMA 'WMA , ALMA etc)
you have option for MTF in the setting
the length is set to 1 -change it to the size you want (20 for example)
ccid (with high low histogram)So this indicator has the following : CCI where the buy and sell signal can be either cross of the fast the slow and vice versa or cross of CCI bellow -50 and cross down CCI +50
the histogram (blue and red) is made by high low like histogram the buy and sell is based on crossing of the 0 . since its MTF type . you can toon the TF either to the time frame or use lower graph time with higher TF
since both indicator complement each other then I put them together