# Define inputs
input lookback = 1;
input minVolumeMultiplier = 1.5;

# Calculate engulfing condition
def engulfingBullish = close > open and open < close and close > open;
def volumeMultiplier = volume / Average(volume, lookback);

# Plotting the bubble if engulfing condition is met with high volume
plot engulfingWithHighVolume = engulfingBullish and volumeMultiplier >= minVolumeMultiplier;

# Mark the candle with a bubble
AddChartBubble(engulfingWithHighVolume, high, "Bullish Engulfing", color.green, yes);
免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。