// Calculate the highest high and lowest low over the past 24 hours (24 bars on a 1-hour chart) highLevel = ta.highest(high, 24) lowLevel = ta.lowest(low, 24)
// Long condition: Price above 38.2% Fibonacci level with high volume longCondition = close > fib382 and highVolume if (longCondition) strategy.entry("Long", strategy.long)
// Short condition: Price below 61.8% Fibonacci level with high volume shortCondition = close < fib618 and highVolume if (shortCondition) strategy.entry("Short", strategy.short)
// Plot volume for reference plot(vol24hr, color=color.purple, title="24-Hour SMA Volume") hline(volThreshold, "Volume Threshold", color=color.gray)