Crypto Scalping v2
Crypto Scalping v2
// === Buy and Sell Signals with ADX Trend Filter ===
buy_signal = market_structure_bullish and doji_condition and high_volume_condition
and is_trending
sell_signal = market_structure_bearish and doji_condition and high_volume_condition
and is_trending
if (sell_signal)
strategy.entry("Sell", strategy.short)
alert("Sell Signal: Market is bearish with Doji and high volume",
alert.freq_once_per_bar_close)
// Trend visualization
bgcolor(is_trending ? color.new(color.blue, 95) : color.new(color.gray, 95),
title="Trend Background")