Is there a scan for bull and bear for this script? Thanks for your helpYour question: Can Paris's MTF Supertrend found here:
https://usethinkscript.com/threads/supertrend-indicator-by-mobius-for-thinkorswim.7/#post-367
be configured with alerts for when all time frames go green?
Sure:
1. copy and save this script to your study tab:2. paste this code snippet to the bottom of that study:Code:# ALERTS FOR MTF SUPER TREND when all timeframes go green def BullishConsensus = FirstAgg and SecondAgg and ThirdAgg and FourthAgg and FifthAgg; def BearishConsensus = !FirstAgg and !SecondAgg and !ThirdAgg and !FourthAgg and !FifthAgg; def BullishFlip = BullishConsensus and !BullishConsensus[1]; def BearishFlip = BearishConsensus and !BearishConsensus[1]; Alert(BullishFlip, "MTF SuperTrend → BULLISH", Alert.BAR, Sound.Ring); Alert(BearishFlip, "MTF SuperTrend → BEARISH", Alert.BAR, Sound.Bell);