Supertrend
Supertrend//Author - Rajandran R
//www.marketcalls.in
study("Supertrend V1.0 - Buy or Sell Signal", overlay = true)
Factor=input(2, minval=1,maxval = 100)
Pd=input(7, minval=1,maxval = 100)
Up=hl2-(Factor*atr(Pd))
Dn=hl2+(Factor*atr(Pd))
TrendUp=close >TrendUp ? max(Up,TrendUp ) : Up
TrendDown=close TrendDown ? 1: close< TrendUp ? -1: nz(Trend ,1)
Tsl = Trend==1? TrendUp: TrendDown
linecolor = Trend == 1 ? green : red
plot(Tsl, color = linecolor , style = line , linewidth = 2,title = "SuperTrend")
plotshape(cross(close,Tsl) and close>Tsl , "Up Arrow", shape.triangleup,location.belowbar,green,0,0)
plotshape(cross(Tsl,close) and close<Tsl , "Down Arrow", shape.triangledown , location.abovebar, red,0,0)
//plot(Trend==1 and Trend ==-1,color = linecolor, style = circles, linewidth = 3,title="Trend")
plotarrow(Trend == 1 and Trend == -1 ? Trend : na, title="Up Entry Arrow", colorup=lime, maxheight=60, minheight=50, transp=0)
plotarrow(Trend == -1 and Trend == 1 ? Trend : na, title="Down Entry Arrow", colordown=red, maxheight=60, minheight=50, transp=0)
Super-Trend-fibIn this model we have fib Donchian channel with super trend alerts (B=buy) S =sell
and trailing volume system up trend alert and down trend alert
so have fun
MTF Bollinger Bands, SuperTrend, TEMA Wave and ATR Stop LossThis script is a combination of useful overlay indicators that can be used for day trading or swing trading. You can use it for long term positions as well, but some tweaking may be required. I also added the multi time frame possibility for the majority of settings. This indicator gives you a lot of opportunities and trade setups. Default settings are made for day trading, using intraday time frames.
This script can display the following:
4 independent Bollinger Bands (MTF)
4 independent SuperTrends (MTF)
6 independent TEMAs (MTF)
ATR Stop loss for longs / shorts
Default settings display 3 Bollinger Bands, 2 TEMAs(I have found these two TEMAs particullarly useful, see screenshots below) and a signle SuperTrend.
Do not forget to always use a proper stop loss and risk management.
Here you can see the script in action in different markets:
BTC - BitMex - Setup before the drop from 7400 USD
BTC - BitMex - Setup before the drop from 8400 USD
BTC - BitMex - Setup before the pump to 7800 USD
BTC - BitMex - Setup before the pump to 6800 USD
🕟𝕄🕗𝕋🕛𝔽 Madness MTF Grid by 🇨🇷🇾🇵🇹🇴🇷🇹🇭🇾🇭🇲🇸Here is a short description. This indicator being free will not have documentation for ALL things. Just the basics. There are 5 indicators included in it which I will not go into how each one works. There is ALOT of info on all the indicators included in here, just use google for that.
📊For each "row" of colored bands this represents one indicator. This is meant to be used on the 15m (or less) timeframe, and it looks up into higher TF's. It is meant to be maximized, so have this open in one tab and the chart on another. Dual Monitors are best. All options and Time frames are fully configurable inputs.
📈Indicators from top to bottom are:
1.)Polarity Filtration - 6 Timeframes
2.) Price Volume Trend - 4 Timeframes
3.) Stochastic RSI - 4 Timeframe Grid, and Current Timeframe in lines/ribbons
4.) MACD Crossovers - 8 Timeframes
5.)SuperTrend - 4 Timeframes
⏲Inside each larger "band" there are smaller rows. Each of these small rows represents one timeframe (30m, 60, 2h, 4h, etc) What timeframes you choose for them is completely configurable althought the current setup is already ideal to trade on 15m
⏲For these smaller rows the ones on top are highest timeframe(i.e. 4h) and the bottom small rows are lowest timeframe
⏲So each small row is like being able to check that indicator many timeframes at once. This will help you determine overall trends without switching to different timeframes on your chart all the time
📈The last piece of the puzzle is the background color. This background color is whether the chart is going up or down on the 1 hour heiken Ashi candle chart. Heiken ashi always shows up or down based on how they draw the candles, so its another useful trend indicator
👍If you enjoy MTF Madness all I ask in return is that you like the indicator and follow me on tradingview (profile here: www.tradingview.com)
❓If you have any questions, join us in the telegram chat in my signature!
SuperTrend+fibI took the script from here so credit to the author
made some slight modification and add fib to make the buy point more stable
have fun
p.s
it can be improve further with addition of some extra, I did not check if it repaint as it not my code
Super-Trend-reversefisher fiterall the code is made here
I just change liitle the buy and sell point and add reverse fisher for reducing bad signals. the script can be made better if I add more stuff but for the time being seems ok
have fun
Supertrend A/D BreakoutModified Hoffman A/D:
1. uses standard supertrend to determine up/down direction (previous version used ema crossover)
2. uses improved A/D candlestick patterns
I'm optimistic about this one
TRBTrue Range Bands; the 'Supertrend', also known as a volatility stop, using a 14 period length and 3x multiplier.
VMA's (T=1h, 2h, 4h, 8h)Plots four VMA's (Variable/Volatility Moving Average) in multiple static resolutions (1h, 2h, 4h, 8h), ideal for support/resistance/stops on predictably trending symbols like BTCUSD.
Example:
Supertrend blind followingThis strategy is showing what would be if you just follow supertrand indicator. As we know, supertrand doesn't appear immediately and we need to wait the next bar for decision about entering. So you can see what will happen if you take position after supertrend finally formed. This indicator is extremely dangerous without another tools and can give very serious drawdown. Take care of yourself...
andrei_SHAB B/SAbility to add alert on the 'andrei_SHAB strategy' ...
Supertrend strategy with Atr modified to the Bollinger Bands and base on the Heikin Ashi candles ... It is not repaint
andrei_SHAB strategySupertrend strategy with Atr modified to the Bollinger Bands and base on the Heikin Ashi candles ... It is not repaint
Supertrend MTF - multi time frameThis script allows to see the Supetrend of an higher timeframe (in the example above H4 vs Daily)
Add it to you favorites.
It is useful as:
- Higher timeframe trend detector (eg. price below higher timeframe Supertrend -> bullish trend )
- Filter, in combinations with other techniques (eg. price below higher timeframe Supertrend -> only short)
- Signal with the current Supetrend: (eg. when higher timeframe Supetrend and actual timeframe one are both in selling position then take sell trade)
If you find the work useful, please feel free to donate: paypal.me
Any feedback is welcome.
BottomFinder MTF Madness - 5x MTF Grid IndicatorsHello Again Trading View!
Bottom Finder Team here bringing another delicious indicator, this time to help spot those trends! This version is closed for Beta Testing with our subscribers only for the next few weeks. After beta improvements it will be released free to anyone who signs up as a free member on our site.
This is meant to be used on the 15m timeframe, and it looks up into higher TF's. It is meant to be maximized, so have this open in one tab and the chart on another. Dual Monitors are best. All options and Time frames are fully configurable inputs.
Indicators from top to bottom are:
1.)Polarity Filtration - 6 Timeframes
2.)Price Volume Trend - 4 Timeframes
3.)Stochastic RSI - 4 Timeframe Grid, and Current Timeframe in lines/ribbons
4.)MACD Crossovers - 8 Timeframes
5.)SuperTrend - 4 Timeframes
And last...
6.)Background Color indicator is up/down (green/red) price on 1 Hour Heiken Ashi candle chart.
No more swapping back and forth between timeframes!
For access to this and many other exclusive indicators - you can visit our telegram and ask about becoming a subscriber. All our paid indicators have a reasonable lifetime cap price. Once you reach it, indicator is yours for life - no more subscription.
Indicator SuperTrend AllIndicator SuperTrend All:
An indicator that is an aggregate of other SuperTrend Values (Buy/Sell)
Indicator SuperTrend AllIndicator SuperTrend All:
A composite of using values from individual SuperTrends
SuperTrend_ChannelThis set up created to understand support and resistance as per ATR (Average True Range)
Existing setup of supertrend modified to Channel set up
It is created for study purpose , Buying or selling not suggested as per this
Thank you