یہ حکمت عملی قیمت فریکٹل تھیوری پر مبنی ایک رجحان پر مبنی تجارتی نظام ہے ، جو مارکیٹ فریکٹل ڈھانچے کی نشاندہی کرتا ہے اور خودکار تجارت کے لئے فکسڈ پوائنٹ ٹرگر شرائط کو منافع لینے کی ترتیبات کے ساتھ جوڑتا ہے۔ بنیادی حکمت عملی میں خطرہ کنٹرول کے ل long اسی طرح کے منافع لینے کی سطح کے ساتھ ساتھ نیچے فریکٹلز کے اوپر طویل انٹری پوائنٹس اور اوپر فریکٹلز کے نیچے مختصر انٹری پوائنٹس کا تعین کرنا شامل ہے۔
بنیادی منطق میں مندرجہ ذیل اہم اقدامات شامل ہیں:
یہ حکمت عملی ایک مکمل تجارتی نظام کی تعمیر کے لئے فریکٹل تھیوری اور مومنٹم بریکآؤٹ تصورات کو جوڑتی ہے۔ اس کی طاقت معروضی اور اعلی آٹومیشن میں ہے ، حالانکہ اسے مارکیٹ کی موافقت کے کچھ چیلنجوں کا سامنا کرنا پڑتا ہے۔ متحرک پیرامیٹر ایڈجسٹمنٹ اور مارکیٹ کے ماحول کی پہچان جیسے اصلاحاتی اقدامات کے ذریعے ، حکمت عملی کی استحکام اور منافع کو مزید بڑھا سکتا ہے۔ براہ راست تجارت میں ، سرمایہ کاروں کو اپنے رسک رواداری اور سرمایہ کے سائز کی بنیاد پر پیرامیٹرز کو ایڈجسٹ کرنا چاہئے۔
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Fractal Buy/Sell Strategy with 107 Pips Target", overlay=true) // 输入参数 trigger_pips = input.int(107, title="Entry Distance (Pips)") // 入场点距离底分型或顶分型的距离 take_profit_pips = input.int(107, title="Take Profit (Pips)") // 止盈点数 pip_value = syminfo.mintick * 10 // 点值(每点等于多少价格单位) // 计算分型 is_bottom_fractal = low[1] < low[2] and low[1] < low[0] // 判断是否为底分型 is_top_fractal = high[1] > high[2] and high[1] > high[0] // 判断是否为顶分型 // 存储分型位置 var float last_bottom_fractal = na var float last_top_fractal = na // 更新分型值 if is_bottom_fractal last_bottom_fractal := low[1] if is_top_fractal last_top_fractal := high[1] // 计算开盘价格 bottom_trigger_price = na(last_bottom_fractal) ? na : last_bottom_fractal + trigger_pips * pip_value top_trigger_price = na(last_top_fractal) ? na : last_top_fractal - trigger_pips * pip_value // 交易逻辑:底分型多单和顶分型空单 if not na(last_bottom_fractal) if close <= bottom_trigger_price strategy.entry("Buy", strategy.long) strategy.exit("Take Profit", from_entry="Buy", limit=bottom_trigger_price + take_profit_pips * pip_value) if not na(last_top_fractal) if close >= top_trigger_price strategy.entry("Sell", strategy.short) strategy.exit("Take Profit", from_entry="Sell", limit=top_trigger_price - take_profit_pips * pip_value) // 绘制分型和触发价格 plotshape(series=is_bottom_fractal, style=shape.triangleup, location=location.belowbar, color=color.green, title="Bottom Fractal") plotshape(series=is_top_fractal, style=shape.triangledown, location=location.abovebar, color=color.red, title="Top Fractal") plot(bottom_trigger_price, title="Buy Trigger", color=color.green, linewidth=1) plot(top_trigger_price, title="Sell Trigger", color=color.red, linewidth=1)