// Buy/Sell Signals longCondition = ta.crossover(emaShort, emaLong) // 50 EMA crosses above 200 EMA shortCondition = ta.crossunder(emaShort, emaLong) // 50 EMA crosses below 200 EMA
if (longCondition) strategy.entry("Buy", strategy.long)
if (shortCondition) strategy.close("Buy") strategy.entry("Sell", strategy.short)
// Close short position on a new long signal if (longCondition and strategy.position_size < 0) strategy.close("Sell") strategy.entry("Buy", strategy.long)
// Close long position on a new short signal if (shortCondition and strategy.position_size > 0) strategy.close("Buy") strategy.entry("Sell", strategy.short)
// Optional: Risk management riskPercentage = input(1, title="Risk % per Trade", minval=0.1, maxval=10) capital = strategy.equity risk = capital * (riskPercentage / 100)
لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.