سلائنگ شاٹ سسٹم + یہاں تک کہ بہتر سسٹم.
مجھے یہ ای میل موصول ہوئی ہے کہ ایک ٹرینڈ فالونگ سسٹم 1000 ڈالر میں فروخت ہوتا ہے لیکن میں اس دن اسے صرف 500 ڈالر میں حاصل کر سکتا ہوں!!!
میں اس ویڈیو کو دیکھ رہا ہوں جس میں یہ حیرت انگیز نظام دکھایا گیا ہے جس کا کوڈ سمجھنے میں مجھے ایک منٹ لگ سکتا ہے۔
میں نے اسے کوڈ کیا ہے۔ اور ارے... یہ کوئی برا نظام نہیں ہے۔ یہ ان لوگوں کے لئے اچھا ہے جنھیں انٹری سگنل کی ضرورت ہو سکتی ہے تاکہ وہ ٹرینڈنگ موڈ میں آئیں ، اور انہیں ٹرینڈنگ موڈ میں رکھیں جبکہ ایک مقررہ اسٹاپ فراہم کریں۔
تو میں نے سوچا کہ میں کمیونٹی کو بہت منصفانہ قیمت بچاؤں گا صرف $500 ایک نظام کے لیے جس میں کچھ EMA
مرکزی چارٹ کے لئے نیچے دیئے گئے لنک کو دیکھیں جس میں دوسرا نظام دکھایا گیا ہے!!!
بیک ٹسٹ
/*backtest start: 2021-05-06 00:00:00 end: 2022-05-05 23:59:00 period: 15m basePeriod: 5m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //Created by ChrisMoody on 10-05-2014 //Known as SlingShot Method that keeps Traders on Trending Side of Market. study("CM_SlingShotSystem", overlay=true) sae = input(true, title="Show Aggressive Entry?, Or Use as Alert To Potential Conservative Entry?") sce = input(true, title="Show Conservative Entry?") st = input(true, title="Show Trend Arrows at Top and Bottom of Screen?") def = input(false, title="Only Choose 1 - Either Conservative Entry Arrows or 'B'-'S' Letters") pa = input(true, title="Show Conservative Entry Arrows?") sl = input(true, title="Show 'B'-'S' Letters?") //EMA Definitions emaSlow = ta.ema(close, 62) emaFast = ta.ema(close, 38) //Aggressive Entry or Alert To Potential Trade pullbackUpT() => emaFast > emaSlow and close < emaFast pullbackDnT() => emaFast < emaSlow and close > emaFast //Conservative Entry Code For Highlight Bars entryUpT() => emaFast > emaSlow and close[1] < emaFast and close > emaFast entryDnT() => emaFast < emaSlow and close[1] > emaFast and close < emaFast //Conservative Entry True/False Condition entryUpTrend = emaFast > emaSlow and close[1] < emaFast and close > emaFast ? 1 : 0 entryDnTrend = emaFast < emaSlow and close[1] > emaFast and close < emaFast ? 1 : 0 //Define Up and Down Trend for Trend Arrows at Top and Bottom of Screen upTrend = emaFast >= emaSlow downTrend = emaFast < emaSlow //Definition for Conseervative Entry Up and Down PlotArrows codiff = entryUpTrend == 1 ? entryUpTrend : 0 codiff2 = entryDnTrend == 1 ? entryDnTrend : 0 //Color definition for Moving Averages col = emaFast > emaSlow ? color.lime : emaFast < emaSlow ? color.red : color.yellow //Moving Average Plots and Fill p1 = plot(emaSlow, title="Slow MA", style=plot.style_linebr, linewidth=4, color=col) p2 = plot(emaFast, title="Slow MA", style=plot.style_linebr, linewidth=2, color=col) //fill(p1, p2, color=silver, transp=50) if sl and codiff strategy.entry("SELL", strategy.short) else if sl and codiff2 strategy.entry("BUY", strategy.long)