명시


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. و برای حذف نشانگر از نمودار با استفاده از گزینه های روی پانل.


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

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


응답함

1
개발자 1
등급
(298)
프로젝트
478
40%
중재
105
40% / 24%
기한 초과
82
17%
로드됨
게재됨: 2 코드
2
개발자 2
등급
(19)
프로젝트
31
32%
중재
8
50% / 25%
기한 초과
3
10%
작업중
3
개발자 3
등급
(43)
프로젝트
66
12%
중재
12
58% / 42%
기한 초과
1
2%
무료
4
개발자 4
등급
(574)
프로젝트
945
47%
중재
309
58% / 27%
기한 초과
125
13%
무료
5
개발자 5
등급
(14)
프로젝트
17
18%
중재
2
0% / 100%
기한 초과
3
18%
무료
6
개발자 6
등급
(78)
프로젝트
246
74%
중재
7
100% / 0%
기한 초과
1
0%
무료
게재됨: 1 기고글
7
개발자 7
등급
(11)
프로젝트
16
31%
중재
5
40% / 40%
기한 초과
4
25%
무료
비슷한 주문
i need someone that can make me an EA really easy with the martingala system?, I am looking for something that doesn't exceed 5 trades for the martingale, I think I did it, but it only works for propfirms, So i need to develop it on ninja trader I have identified a very very simple strategy but it only works on propfirms, with only two propfirm accounts, i absolutely need account A and account, And they have to open
Hi, I’m looking for an experienced MT5/MQL5 developer to assess and potentially develop a custom trade copier. The requirement is to copy trades from Vantage Web Copy Trading to an MT5 account in real time. Core requirements: Source: Vantage Web Copy Trading Destination: MT5 Instrument: XAUUSD only Copy trade opening and closing Copy partial closures No SL/TP required MT5 account can be with Vantage or another
Swing Breaks & AMD Expert Advisor The Swing Breaks & AMD Expert Advisor is an automated trading system designed around two core market-structure concepts: Swing Breaks and the AMD (Accumulation, Manipulation, Distribution) model . The EA is designed to analyze price action, identify meaningful swing structures, detect potential breaks of those structures, and evaluate the surrounding market behavior for possible AMD
I'm looking for a swing trading EA that takes 1-3 trades / week, holds these positions from a few days up to about 1.5 weeks. Symbol : any Strategy : any Timeframe : any Platform : MT4 only The catch : you would need to come up with the STRATEGY AND do the CODING The must have's : c onstant monthly returns, low drawdown I will backtest the trial version of your .ex4 file for 20+ years with 99.9% tick data accuracy
I'm a ninja trader day trader and I have worked with a company called Legendary Trader and use their indicated and automated strategies to trade. I rencenly have been playing with a free indicator I was able to download that uses CCI & ATR calculations to define the market being in an up or down trend. I have found in reviewing historical data that taking a trade when the signal flips from bull to bear sentiment or
PROJECT OVERVIEW I need a production-grade, modular Expert Advisor for MetaTrader 5 built to institutional coding standards. This is not a simple indicator-crossover bot. The system must be object-oriented, fully commented, and structured so individual modules can be replaced or disabled without breaking the build. Broker: IC Markets Raw. Primary symbol: XAUUSD. Secondary validation: EURUSD, GBPUSD, USDJPY, AUDUSD
Access and confidentiality restrictions: You will receive only a separately named copy of the Commander . Existing trading EAs, presets, account credentials, Telegram credentials and proprietary entry/exit code will not be shared. The Commander intelligence must be developed using: Defined signal/input interfaces Anonymized historical logs and replay data Mock EA signals and test harnesses Documented authority and
need an EA or indicator done , based on any strategy but with the following specific risk management parameters ; were i am able to do at least 2RR(standard reward-risk ratio for every trade) , fair win rate that is at leat 50% , EA should be able to generate at least 2 trades and above per week , favourable sharpe ratio . total drawdown of not more than 8% any given month and not over 3% any given day , would
I need an MQL5 trading robot for Forex. It should open and close trades based on my strategy rules. Please include money management, stop loss, take profit, and lot size settings. The EA should be stable, easy to edit, and tested before delivery. I will share the exact entry and exit rules with the developer
I need a professional programmer who can code this top tier professional synthetic index EA structure perfectly to my laptop extra perfectly payment after successful job very urgent needed here in Nigeria at onitsha Here is my contact you can message me on my WhatsApp 09121052987/ direct call 09038568050

프로젝트 정보

예산
30+ USD