Specifiche


ZigZag بر اساس اسیلاتور مورد نیاز است

ایده شاخص

یک نشانگر ZigZag ایجاد کنید که بر اساس مقادیر شدید تعیین شده با استفاده از نوسانگرها ساخته شده است.  می‌تواند از هر نوسان‌گر نرمال‌شده کلاسیکی که دارای مناطق خرید و فروش بیش از حد است استفاده کند.  الگوریتم ابتدا باید با نشانگر WPR اجرا شود، سپس به طور مشابه امکان ترسیم زیگزاگ با استفاده از نشانگرهای زیر را اضافه کنید:

  • CCI
  • چایکین
  • RSI
  • نوسانگر تصادفی

الگوریتم و اصطلاحات

مرحله اول ساخت زیگزاگ است:

  1. منطقه بیش از حد خرید به عنوان شمعدان تعیین می شود که در آن مقدار نشانگر  مقدار > Lmax  (Lmax=-20) است.
  2. منطقه فروش بیش از حد به عنوان شمعدان تعیین می شود، که در آن مقدار نشانگر  Value <Lmin  (Lmin=-80) است.
  3. مقادیر Lmax و Lmin باید در پارامترهای نشانگر گنجانده شوند.
  4. یک نقطه زرد باید در نقطه بالای شمعدان در منطقه بیش از حد خرید اضافه شود - این نقطه H است.
  5. یک نقطه سبز باید در نقطه پایین شمعدان در منطقه فروش بیش از حد اضافه شود - این نقطه L است.
  6. اگر حداقل یک نقطه L بین دو نقطه H وجود دارد، یک نقطه LL را در فاصله بین دو نقطه H جستجو کنید.  کندل با کمترین قیمت پایین، نقطه LL خواهد بود.  به طور کلی، نقطه LL لزوما یک نقطه L نیست.  جستجوی شمعدان با کمترین قیمت پایین.
  7. اگر حداقل یک نقطه H بین دو نقطه L وجود دارد، یک نقطه HH را در فاصله بین دو نقطه L جستجو کنید.  کندل با بالاترین قیمت بالا نقطه HH خواهد بود.  به طور کلی، نقطه HH لزوما یک نقطه H نیست.  جستجو برای شمعدان با بالاترین قیمت بالا.
  8. نقاط LL و HH را برای رسم زیگ زاگ وصل کنید.  رنگ پیش فرض زرد است.  مرحله اول تمام شد.




مرحله دوم رنگ زیگزاگ است:

  1. سه نقطه HH متوالی را جستجو کنید که شرایط زیر را دارند: هر نقطه HH یافت شده باید بالاتر از نقطه قبلی باشد.
  2. اگر شرایط یکسانی برای دو نقطه LL یافت شده بین نقاط HH وجود دارد، یعنی اگر LL دوم بالاتر از اولین باشد، تمام پایه های ZigZag بین این پنج نقطه را با رنگ قرمز رنگ کنید.
  3. اگر بعد از این پنج اکستروم زیگ زاگ، نقاط HH و LL دیگری پیدا شد و به ترتیب بالاتر از HH و LL های قبلی قرار گرفتند، علاوه بر این، 2 پایه زیگ زاگ را آبی رنگ کنید.
  4. تا زمانی که شرایط حفظ شود ادامه دهید.  این یک روند صعودی را نشان می دهد.
  5. به طور مشابه، نقاط کاهش LL را جستجو کنید و عملیات را تکرار کنید که در صفحات 1-4 توضیح داده شده است.  این پاها باید قرمز رنگ شوند تا روند نزولی را مشخص کنند.



مرحله سوم اضافه کردن گزینه ای برای تعیین نوع نوسان ساز است که بر اساس آن زیگزاگ ساخته می شود: CCI, Chaikin, RSI, Stochastic Oscillator.

  1. بنابراین، اولین پارامتر نوع نوسانگر است که باید با یک شمارش تنظیم شود.  مقدار پیش فرض WPR است.
  2. پارامترهای Lmax و Lmin را برای هر نوع اضافه کنید.  این پارامترها باید دارای مقادیر پیش فرض باشند.
  3. نام پارامترهای حداکثر و حداقل باید حاوی نام نشانگر باشد، مانند WPRmax، CCImax، STOmax و غیره.

مرحله 4 اضافه کردن یک پنل گرافیکی برای مدیریت پارامترهای نشانگر است.

  1. پانل باید دارای چک باکس هایی با انواع اسیلاتورها باشد که امکان جابجایی سریع بین نوسانگرها را فراهم می کند.
  2. پانل باید با یک کلیک حداقل و حداکثر شود.
  3. ما همچنین به امکان جابجایی پانل روی نمودار نیاز داریم
  4. و برای حذف نشانگر از نمودار با استفاده از گزینه های روی پانل.


محاسبات: نشانگر برای کار با نمودارها و بهینه سازی استفاده می شود.  بنابراین الگوریتم باید سریع باشد و زمان بر نباشد.

کار به صورت مرحله ای پذیرفته می شود، بنابراین هر مرحله باید به ترتیب درست انجام شود


Con risposta

1
Sviluppatore 1
Valutazioni
(295)
Progetti
474
39%
Arbitraggio
104
40% / 23%
In ritardo
79
17%
Occupato
Pubblicati: 2 codici
2
Sviluppatore 2
Valutazioni
(19)
Progetti
31
32%
Arbitraggio
8
50% / 25%
In ritardo
3
10%
In elaborazione
3
Sviluppatore 3
Valutazioni
(43)
Progetti
66
12%
Arbitraggio
12
58% / 42%
In ritardo
1
2%
Gratuito
4
Sviluppatore 4
Valutazioni
(574)
Progetti
945
47%
Arbitraggio
309
58% / 27%
In ritardo
125
13%
Gratuito
5
Sviluppatore 5
Valutazioni
(14)
Progetti
17
18%
Arbitraggio
2
0% / 100%
In ritardo
3
18%
Gratuito
6
Sviluppatore 6
Valutazioni
(77)
Progetti
243
74%
Arbitraggio
7
100% / 0%
In ritardo
1
0%
Gratuito
Pubblicati: 1 articolo
7
Sviluppatore 7
Valutazioni
(11)
Progetti
16
31%
Arbitraggio
5
40% / 40%
In ritardo
4
25%
Gratuito
Ordini simili
Vfox 30 - 100 USD
My robot will be powerful seller and buyer at same time and the name of it is vfox is red and yellow it will be easy to get the graph singles and make profit
I am seeking an experienced MQL5 developer to build a high-precision Gold (XAUUSD) scalping Expert Advisor. The objective is to achieve a Profit Factor (PF) of 2.0 or higher with a focus on institutional logic rather than retail lagging indicators.The EA must be designed to pass a "100% Real Ticks" backtest (Exness/Dukascopy data) over a 30-day period with a $500 initial deposit.Core Requirements & Strategy
Chin 30 - 300 USD
i want to add the 30m time frame in the ema section high ema is 1h low ema is 5m i want u to add a mid ema so i can use 3 time frames
I’ve been following your profile and I'm interested in your expertise with the ATAS API and C# development. I have a clear technical scope for a high-performance M1 indicator focused on Binary Options and Scalping. ​The core logic is based on institutional Order Flow convergence: ​Stacked Imbalances: 300% ratio with a minimum of 3 consecutive levels. ​Delta/Price Divergence: Filtering for market exhaustion (New Highs
I'm looking to have a tradingview strategy translated to work on ninjatrader. Right now I'm using webhooks together with the platform Crosstrade to automate the strategy and have the trades take place on Tradingview. Let me know if that's something you can help me out with
Hello, Please read the full specification before applying. This project is NOT about building an EA from scratch. I already have a fully working MT5 Expert Advisor. The EA already includes a dashboard, risk management, and some protection systems, but it needs a few more features . So I need an experienced MQL5 developer to modify my existing MT5 EA by replacing the current entry logic with a new breakout strategy
can you help me with editing the existing ATR Trailing Stop Indicator to include a logic to include additional script, where my ninZaRenko bars when it closes above OR below the dynamic stop line, I will be out of trade. Please remember, in this Indicator, now when the price touches the stop line, I am stopped out .. . I want to edit the script, in lieu of the price touch, I like to update this logic to when the bar
TORUNZ 😎 30+ USD
The robot should use different indicators for a example smart money indicator and market structure structure and break indicators in order for it to enter the market, it should also be able to tell false breakouts is the Bollinger indicator, and if the market is confirmed to be profitable,the robot should rebuy or resell the market according to the predictions made, it should execute the trades if the market reverses
I need an advisor created that opens a position with 0.10 lot size when a bull cross arrow appears on the m5 time frame and closes the trade after exactly one candle stick, the ea does the same thing over and over, a bull cross appear on m5 timeframe, and it opens 1 position with 0.10 lot size, and closes it after one candlestick on m5... If possible, provide a demo version
MT4 EA TO TAKE TRADES FROM (A) HYDRA TREND RIDER AND (B) IQ GOLD GANN LEVELS ON MQL5.COM The MT4 version of these two indicators can be found on the mql5.com website with the following links: Hydra Trend Rider: https://www.mql5.com/en/market/product/111010?source=Site +Profile+Seller IQ Gold Gann Levels: https://www.mql5.com/en/market/product/134335?source=Site +Profile+Seller (1) ENTRY (a) Hydra Trend Rider

Informazioni sul progetto

Budget
30+ USD