// Strong Bullish and Bearish Conditions for Scalping strongBullish = rsiValue > 70 and macdLine > signalLine and close > emaValue and volumeSignal strongBearish = rsiValue < 30 and macdLine < signalLine and close < emaValue and volumeSignal
// Alerts for Scalping alertcondition(buySignal, title="Long Trade Alert", message="Strong Bullish Signal: Consider LONG Trade") alertcondition(sellSignal, title="Short Trade Alert", message="Strong Bearish Signal: Consider SHORT Trade")
// Additional Alerts for Confirmation confirmationBullish = ta.crossover(macdLine, signalLine) and rsiValue > 50 and close > emaValue and volumeSignal confirmationBearish = ta.crossunder(macdLine, signalLine) and rsiValue < 50 and close < emaValue and volumeSignal
alertcondition(confirmationBullish, title="Confirmation Bullish Alert", message="Confirmation Bullish Signal: Consider LONG Trade") alertcondition(confirmationBearish, title="Confirmation Bearish Alert", message="Confirmation Bearish Signal: Consider SHORT Trade")
In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publication is governed by House rules. You can favorite it to use it on a chart.
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.