TradingView
Daveatt
Jun 29, 2019 8:17 AM

Supertrend collector 

Bitcoin / USTBitfinex

Description

Hello traders

This is an example of how you can add multiple indicators into a unique one
In this instance, I added two supertrend multitimeframes and draw them on a different timeframe chart

Enjoy
David

Release Notes

- Adding alerts
Comments
raja74sekhar
Wonderful indicator
Daveatt
@raja74sekhar, Thank you :)
ilesanmipepsi
Thanks for sharing this script, it's quite wonderful! I deduced a strategy from it, and backtested it from 2011 till date, lo and behold the results are mind blowing. This script now constitute my trading strategy for cryptocurrency.
Cryptopie19
Does this repaint?
Daveatt
@Cryptopie19, actually, I believe it does yes
The security calls need to be updated like this. Showing for line 32 but it will have to be replicated for lines 33-35 as well

ST1_Trend_MTF = security(tickerid, res1, Trend1[1], barmerge.gaps_off, barmerge.lookahead_on)
ST1_Tsl_MTF = security(tickerid, res1, Tsl1[1], barmerge.gaps_off, barmerge.lookahead_on)
ST2_Trend_MTF = security(tickerid, res2, Trend2[1], barmerge.gaps_off, barmerge.lookahead_on)
ST2_Tsl_MTF = security(tickerid, res2, Tsl2[1], barmerge.gaps_off, barmerge.lookahead_on)
myncrypto
Repaints :(
budthatsmyrealname
how do you make it send an alert when the trend line goes from red to green or vice versa?
Daveatt
@budthatsmyrealname, Hi there, I added them lines 52-55
Basically the calculation is made so that the Trend is equals to 1 when bullish, -1 when bearish.
budthatsmyrealname
@Daveatt, hi, thanks for the response. right now i have it set to alert me when "btc" "goes below" "supertrend" and because of that, when price just touches the supertrend line, it gives false signals. but i noticed that there shouldnt be false signals if it would alert me when the super trend line turns red or turns green because that is the official signal

is there a way to alert me right when the supertrend line changes color? or what settings should i use for accurate results?

thanks
Daveatt
@budthatsmyrealname, the alerts are set here in the code, last 4 lines
alertcondition(ST1_Trend_MTF == 1, title='Buy Alert ST1 Trend', message="Buy Alert ST1 Trend")
alertcondition(ST1_Trend_MTF == -1, title='Sell Alert ST1 Trend', message='Sell Alert ST1 Trend')
alertcondition(ST2_Trend_MTF == 1, title='Buy Alert ST2 Trend', message="Buy Alert ST2 Trend")
alertcondition(ST2_Trend_MTF == -1, title='Sell Alert ST2 Trend', message='Sell Alert ST2 Trend')

You have to set my alerts :) not the ones by default. Example : 'Buy Alert ST1 Trend' means when the price goes above the ST1

As I did an update, you'll have to remove the indicator from your chart and adding it back again making sure the version used is greater than the one used before

Hope it makes sense
More