// Exit conditions exitLong = crossunder(close, fastMA) or (strategy.position_size > 0 and close < (1 - stopLossPct/100) * strategy.position_avg_price) or (strategy.position_size > 0 and close > (1 + takeProfitPct/100) * strategy.position_avg_price) exitShort = crossover(close, fastMA) or (strategy.position_size < 0 and close > (1 + stopLossPct/100) * strategy.position_avg_price) or (strategy.position_size < 0 and close < (1 - takeProfitPct/100) * strategy.position_avg_price)
// Execute trades if enterLong strategy.entry("Long", strategy.long)
if enterShort strategy.entry("Short", strategy.short)
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.