2961 lượt xem
This screens for Supertrend reversal's in 10 different securities. The main logic for the screener is taken from "Simple Custom Screener in Pinescript" by QuantNomad with his permission. If the label color is not visible due to the text in it being white colored, then choose a different color from settings. Also added a simple supertrend to it.
Terminology explanation:
Confirmed Reversal: Supertrend reversal that happened in the last bar and cannot be repainted.
Potential Reversal: Supertrend reversal that might happen in the current bar but can also not happen depending upon the timeframe closing price.
Uptrend/Downtrend : Shows all the tickers that are either currently in uptrend or downtrend.
Terminology explanation:
Confirmed Reversal: Supertrend reversal that happened in the last bar and cannot be repainted.
Potential Reversal: Supertrend reversal that might happen in the current bar but can also not happen depending upon the timeframe closing price.
Uptrend/Downtrend : Shows all the tickers that are either currently in uptrend or downtrend.
Phát hành các Ghi chú:
.
Bình luận
up_label := up01 ? up_label + '🟩 ' + t1 + '🟩 \n' : up_label
dn_label := dn01 ? dn_label + '🟥' + t1 + '🟥 \n' : dn_label
Add to Chart operation failed, reason: Script could not be translated from: ["White", "Black", "Red", "Green"
ine 10: Using argument with the same name 'title'
line 11: Using argument with the same name 'title'
line 12: Using argument with the same name 'title'
line 13: Using argument with the same name 'title'
line 4: Using argument with the same name 'title'
line 5: Using argument with the same name 'title'
line 6: Using argument with the same name 'title'
line 7: Using argument with the same name 'title'
line 8: Using argument with the same name 'title'
line 9: Using argument with the same name 'title'
t1 = input(title="Ticker1", title=input.symbol, defval="BINANCE:BTCUSDT" )
to
t1 = input(title="Ticker1", type=input.symbol, defval="BINANCE:BTCUSDT" )
and it should be fixed