// Entry Conditions buySignal = bullishTrend and rsiOversold and oscBull and highVolume sellSignal = bearishTrend and rsiOverbought and oscBear and highVolume
// Execute Trades if buySignal strategy.entry("Buy", strategy.long) if sellSignal strategy.entry("Sell", strategy.short)