یہ حکمت عملی رشتہ دار طاقت انڈیکس (آر ایس آئی) اور اوسط حقیقی رینج (اے ٹی آر) چینل پر مبنی ہے ، جو 5 منٹ اور 15 منٹ کے ٹائم فریم کے لئے موزوں ہے ، جو سپر اسکیلپنگ حکمت عملی کی قسم سے تعلق رکھتا ہے۔ یہ آر ایس آئی اشارے کے ذریعہ لمبی / مختصر سمت کے اندراج کے مقامات کا تعین کرتا ہے اور اے ٹی آر چینل کو اسٹاپ نقصان اور منافع حاصل کرنے کے لئے استعمال کرتا ہے ، جس سے اعلی تعدد کی تجارت کا احساس ہوتا ہے۔
یہ حکمت عملی ہائی فریکوئنسی اسکیلپنگ ٹریڈنگ کی قسم سے تعلق رکھتی ہے۔ یہ تیزی سے تجارت کے لئے آر ایس آئی اشارے اور اے ٹی آر چینل کے ذریعے اندراج اور خارجی مقامات طے کرتا ہے۔ فوائد اچھے رسک کنٹرول کے ساتھ تیز منافع ہیں ، جو رجحان کے ساتھ تجارت کے لئے موزوں ہیں۔ تاہم ، کثرت سے تجارت کی حمایت کرنے کے لئے کافی سرمایہ کے ساتھ قریب سے مارکیٹ کی نگرانی کی ضرورت ہے۔ مجموعی طور پر ، یہ حکمت عملی رجحان کی تجارت کے لئے اچھی کارکردگی کا مظاہرہ کرتی ہے اور اصلاح کے ذریعہ منافع بخش ہونے میں مزید بہتری آسکتی ہے۔
/*backtest start: 2023-11-20 00:00:00 end: 2023-11-27 00:00:00 period: 30m basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 strategy("Super Scalper - 5 Min 15 Min", overlay=true) // Create Indicator's shortSMA = ema(close, 21) longSMA = ema(close, 65) rsi = rsi(close, 14) atr = atr(14) // Specify conditions longCondition = open < close-atr shortCondition = open > atr+close GoldenLong = crossover(shortSMA,longSMA) Goldenshort = crossover(longSMA,shortSMA) plotshape(shortCondition, title="Sell Label", text="Sell", location=location.abovebar, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0) plotshape(longCondition, title="Buy Label", text="Buy", location=location.belowbar, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0) plotshape(Goldenshort, title="Golden Sell Label", text="Golden Crossover Short", location=location.abovebar, style=shape.labeldown, size=size.tiny, color=color.blue, textcolor=color.white, transp=0) plotshape(GoldenLong, title="Golden Buy Label", text="Golden Crossover Long", location=location.belowbar, style=shape.labelup, size=size.tiny, color=color.yellow, textcolor=color.white, transp=0) // Execute trade if condition is True if (longCondition) stopLoss = low - atr * 2 takeProfit = high + atr * 5 strategy.entry("long", strategy.long, 1, when = rsi > 50) if (shortCondition) stopLoss = high + atr * 2 takeProfit = low - atr * 5 strategy.entry("short", strategy.short, 1, when = rsi < 50) // Plot ATR bands to chart plot(atr+close) plot(close-atr) // Plot Moving Averages plot(shortSMA, color = color.red) plot(longSMA, color = color.yellow)