[PX] MTF Fractal Level This script identifies multi-timeframe fractal level, which can be used as support and resistance.
If you are looking for someone to develop your own indicator or trading strategy, don't hesitate to get in touch with me here on TradingView or below.
Contact:
www.pascal-simon.de
info@pascal-simon.de
Cari dalam skrip untuk "mtf"
Ichimoku Anchor EntriesThis is an ichimoku MTF entries based on baseline and MA
Requested by user Yusufali
xbtsys1 the signal system from
The stategy based on modified rsi for long and hull mtf for short
two take profit (1 =3.5% the other 15%) you can modify them as you wish
rebuy after loss% (set to 15% )
Thanks to Xavis for his work and ideas
Supertrend Heatmap Multi timeframesHey everybody
A follower asked me if the heatmap is only applicable to detect Moving Averages crosses... I told him I'll publish a script answering his question. Here's your answer my friend: HELL NOOOOOOOOOOO !!!!
My heatmap works with any indicator and any timeframe.
In this script, I did it with a collection of supertrend in different timeframes but the possibilities are limitless. I shared in the past my Supertrend collector displaying multiple supertrends in different timeframes
In case you don't like this kind of display, here's an alternative again. You can call me the HEATMAP guy or the ALTERNATIVE INDICATOR guy from now on .... (Dave is fine too)
Please take a look here and you'll understand right away how to read this heatmap Example with the Daily Supertrend
Basically, there is a line per timeframe and whenever the supertrend changes color in a given timeframe, it will get updated into the heatmap as well !! #amazing #awesome #so#coool#bro
Obviously, I won't post the heatmaps for all the indicators in the world, I'm very sure I'll get the same amount of likes and engagement but it's not challenging for me and... to be honest it won't be interesting at some point for you guys. I'm sharing this one because this is an alternative to the supertrend collector and I feel it could interest many of you.
PS
You're a lot (and I really mean a lot asking me about the Algorithm Builder), I don't communicate too much because I'm writing the documentation and I'll be finished by the end of this week.
Love you all (even the trolls)
Dave
____________________________________________________________
Be sure to hit the thumbs up
- If you want to suggest some indicators that I can develop and share with the community, please use my personal TRELLO board
- I'm an officially approved PineEditor/LUA/MT4 approved mentor on codementor. You can request a coaching with me if you want and I'll teach you how to build kick-ass indicators and strategies
Jump on a 1 to 1 coaching with me
- You can also hire for a custom dev of your indicator/strategy/bot/chrome extension/python
- if you like my work and wants to buy me some coffee :
- BTC TipJar: 3MKDve7stWTe1io99oFxeQXvP8XB4zCQ8m
- LTC TipJar: MC5oeBAhw9BLqyi65TR3J1Lid8io9uHADw
trend hybridThis indicator based on two part
first part is the lower of the famous Darvas top
the upper part is made from EMA trend as replacement for th ethe top of the Darvas box
By similar logic we can decide to go long or short as the Darvas box but herfe by using the Ema trend line which is MTF type we can find better optimum for shorting or longing
So it a simple indicator but can ce very usefull to see trends if properly done
MVA collector cryptoHello Traders
This indicator draw multiple Simple Moving Averages multi-timeframes at once
I use it to define take profit zones for my crypto trading
Hope you'll like it
Enjoy
Dave
Two MVA Cross MTFHello traders
This is a script to apply the crossover/crossunder of moving average multi-timeframes on a different timeframe chart
In this example, we see two moving averages in the 2H timeframe being detected on a m30 chart
Enjoy
Dave
Don-xSimple indicator that nased on two donochian bases each calculated slight different with MTF , where we based a faster of 240 min over slower of daily one on each other and we put on lower time frame (30 min, 1 hour or 2 hour )
hence we can see the bullish trend (green ) or bearish trend (green ) more easy
can be used as by its own (slight lag ) or with other indicators to see where the asset direction is
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
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
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 )
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.