یہ حکمت عملی تجارتی سگنل پیدا کرنے کے لئے مختلف ادوار کے ساتھ دو تیزی سے چلنے والے اوسط (ای ایم اے) کے کراس اوور کا استعمال کرتی ہے۔ جب تیز ای ایم اے سست ای ایم اے سے اوپر عبور کرتی ہے تو ، یہ خرید کا اشارہ پیدا کرتی ہے ، اور جب تیز ای ایم اے سست ای ایم اے سے نیچے عبور کرتی ہے تو ، یہ فروخت کا اشارہ پیدا کرتی ہے۔ یہ حکمت عملی مختلف مالیاتی آلات اور ٹائم فریموں پر لاگو کی جاسکتی ہے ، جیسے 2 گھنٹے کے ٹائم فریم پر سونا سب سے زیادہ موثر ہوتا ہے اور روزانہ چارٹ پر بٹ کوائن سب سے زیادہ موثر ہوتا ہے ، وغیرہ۔
ایم اے سی ڈی کراس اوور حکمت عملی رجحان کی پیروی پر مبنی ایک آسان حکمت عملی ہے۔ اس کے فوائد سادگی ، عملی اور وسیع اطلاق ہیں ، جبکہ اس کے نقصانات رجحان کے الٹ اور پیرامیٹر کے انتخاب کو سمجھنے میں دشواری ہیں۔ رجحان فلٹرنگ ، انٹری اور ایگزٹ پوائنٹس کو بہتر بنانے ، پیرامیٹر کی اصلاح ، اور دیگر اشارے کو جوڑنے کے ذریعے ، اس حکمت عملی کی کارکردگی کو بہتر بنایا جاسکتا ہے ، جو مزید تحقیق اور جانچ کے قابل ہے۔
/*backtest start: 2023-04-12 00:00:00 end: 2024-04-17 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy('Advance EMA Crossover Strategy', overlay=true, precision=6) //****************************************************************************// // CDC Action Zone is based on a simple EMA crossover // between [default] EMA12 and EMA26 // The zones are defined by the relative position of // price in relation to the two EMA lines // Different zones can be use to activate / deactivate // other trading strategies // The strategy can also be used on its own with // acceptable results, buy on the first green candle // and sell on the first red candle //****************************************************************************// // Define User Input Variables xsrc = input(title='Source Data', defval=close) xprd1 = input(title='Fast EMA period', defval=12) xprd2 = input(title='Slow EMA period', defval=26) xsmooth = input(title='Smoothing period (1 = no smoothing)', defval=1) fillSW = input(title='Paint Bar Colors', defval=true) fastSW = input(title='Show fast moving average line', defval=true) slowSW = input(title='Show slow moving average line', defval=true) plotSigsw = input(title='Plot Buy/Sell Signals?', defval=true) //****************************************************************************// //Calculate Indicators xPrice = ta.ema(xsrc, xsmooth) FastMA = ta.ema(xPrice, xprd1) SlowMA = ta.ema(xPrice, xprd2) //****************************************************************************// // Define Color Zones and Conditions BullZone = FastMA > SlowMA and xPrice > FastMA // Bullish Zone BearZone = FastMA < SlowMA and xPrice < FastMA // Bearish Zone //****************************************************************************// // Strategy Entry and Exit Conditions if (BullZone and not BullZone[1]) strategy.entry("Buy", strategy.long) // Buy on the transition into BullZone if (BearZone and not BearZone[1]) strategy.close("Buy") // Sell on the transition into BearZone //****************************************************************************// // Display color on chart plotcolor = BullZone ? color.green : BearZone ? color.red : color.gray barcolor(color=fillSW ? plotcolor : na) //****************************************************************************// // Plot Fast and Slow Moving Averages plot(fastSW ? FastMA : na, color=color.red, title="Fast EMA", linewidth=2) plot(slowSW ? SlowMA : na, color=color.blue, title="Slow EMA", linewidth=2) //****************************************************************************// // Plot Buy and Sell Signals plotshape(series=plotSigsw and BullZone and not BullZone[1], location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal") plotshape(series=plotSigsw and BearZone and not BearZone[1], location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal") //****************************************************************************//