An Expert Advisor based on Ichimoku Kinko Hyo, ATR and Choppiness index

MQL5 전문가 통합

명시

Ind V5 TV Strategy Requirements:
Instruments: Forex pairs, Crypto and Stocks across exchanges
TimeFrame: Multi-Time Frame comparisons, details below
Indicators: Ichimoku Cloud, ATR & Choppiness Index
Trade times: First Order: Day of Week Start Time, Day of Week First Order time, Day of Week Last Order Time and
Day of Week Square Off Time
Intraday TF: 1 min, 3 mins, 9 mins, 27 mins and 81 mins
Position Size (Lots): Flat lot size
Acronyms:
TK: Conversion Line
KJ: Base Line
CS: Lagging Span
FSSA: Leading Span A (0 Offset)
FSSB: Leading Span B (0 Offset)
PSSA: Leading Span A (51 Offset)
PSSB: Leading Span B (51 Offset)
CSSA: Leading Span A (25 Offset)
CSSB: Leading Span B (25 Offset)
CSC: Respective candle of Lagging Span (51 Offset) (Ex: 1 min TF, Current time:10:59, CS time:10:34)
TAR: Price of Target instrument TF
REF: Price of Reference instrument in Higher TF
Time Frame pair
TAR (for positions, Chart time frame) REF (for reference/confirmation only)
1 mins 3 mins
Step 1:
Type 1:
1. Long:
{TAR [(ABS(Open - Close)/(High - Low) > 0.1) OR (Close >= Low + (High - Low) * 0.8543)]
AND [ABS(Open - Close)/(High - Low) > 0.03819]
AND [(High - Low)/Close =< 0.003819] (Last 3 candles)
AND
{TAR [CS >= Close CSC AND TK >= KJ AND Close > TK AND Close >= Low + ((High - Low) * 0.5052) AND
FSSA > FSSB AND Close > CSSA AND Close > CSSB AND Low =< CSSA AND (Previous Close =<
Previous CSSA OR Previous Close =< Previous CSSB)] OR
TAR [CS >= Close CSC AND TK >= KJ AND Close > TK AND Close >= Low + ((High - Low) * 0.5052) AND
FSSA > FSSB AND Close > CSSA AND Close > CSSB AND Previous Close =< Previous TK]}
AND
{REF [(ABS(Open - Close)/(High - Low) > 0.1) OR (Close >= Low + (High - Low) * 0.8543)]
AND [ABS(Open - Close)/(High - Low) > 0.03819]
AND [(High - Low)/Close =< 0.003819] (Last 3 candles)}
AND
{REF [CS >= CSC Close AND TK >= KJ AND Close > TK AND FSSA > FSSB] OR
Copyrighted material/property; all rights reserved to Suniel More
1
REF [CS >= CSC Close AND Close >= KJ AND TK >= KJ AND ((CS > PSSA AND CS < PSSB) OR (CS <
PSSA AND CS > PSSB))] OR
REF [CS >= CSC Close AND Close >= KJ AND CS > PSSA AND CS > PSSB AND (ABS(CS - (Highest of
PSSA and PSSB)) / TAR ATR) < 3.8 AND FSSA < FSSB] OR
REF [CS >= CSC Close Close >= KJ AND CS < PSSA AND CS < PSSB AND (ABS(CS - (Lowest of PSSA
and PSSB)) / TAR ATR) < 3.8 AND FSSA < FSSB]}}
2. Short:
{TAR [(ABS(Open - Close)/(High - Low) > 0.1) OR (Close >= High - (High - Low) * 0.8543)]
AND [ABS(Open - Close)/(High - Low) > 0.03819]
AND [(High - Low)/Close =< 0.003819] (Last 3 candles)}
AND
{TAR [CS =< Close CSC AND TK =< KJ AND Close < TK AND Close =< High - ((High - Low) * 0.5052) AND
FSSA < FSSB AND Close < CSSA AND Close < CSSB AND High >= CSSA AND (Previous Close >=
Previous CSSA OR Previous Close >= Previous CSSB)] OR
TAR [CS =< Close CSC AND TK =< KJ AND Close < TK AND Close =< High - ((High - Low) * 0.5052) AND
FSSA < FSSB AND Close < CSSA AND Close < CSSB AND Previous Close >= Previous TK]}
AND
{REF [(ABS(Open - Close)/(High - Low) > 0.1) OR (Close >= High - (High - Low) * 0.8543)]
AND [ABS(Open - Close)/(High - Low) > 0.03819]
AND [(High - Low)/Close =< 0.003819] (Last 3 candles)}
AND
{REF [CS =< CSC Close AND TK =< KJ AND Close < TK AND FSSA < FSSB] OR
REF [CS =< CSC Close AND Close =< KJ AND TK =< KJ AND ((CS > PSSA AND CS < PSSB) OR (CS <
PSSA AND CS > PSSB))] OR
REF [CS =< CSC Close AND Close =< KJ AND CS > PSSA AND CS > PSSB AND (ABS(CS - (Highest of
PSSA and PSSB)) / TAR ATR) < 3.8 AND FSSA > FSSB] OR
REF [CS =< CSC Close AND Close =< KJ AND CS < PSSA AND CS < PSSB AND (ABS(CS - (Lowest of
PSSA and PSSB)) / TAR ATR) < 3.8 AND FSSA > FSSB]}
Step 2:
Order Firing: Refer behavior section below for details
1. TP (TAR)
a. Futures TP, TP Quantity = Total Quantity * 85%, remainder for Profit trailing
Long: High + (ATR * TP)
Short: Low - (ATR * TP)
2. SL (TAR)
a. Futures
Long: Higher of (Ref High - (ATR * SL)) OR (TK KJ)
Short: Lower of (Ref Low + (ATR * SL)) OR (TK KJ)
Behavior:
1. No new positions per chart until the existing position is not closed completely.
Copyrighted material/property; all rights reserved to Suniel More
2
TP/SL
Values
CI < 60 CI > 60
TP 1.38 0.8543
SL 1.38 0.8543
2. Breakout has to be achieved in the next immediate candle after the reference candle is confirmed, place
Market order when (Long: Price = High + 1 minimum tick size, Short: Price = Low - 1 minimum tick size) is
breached. If the price is not triggered in the next immediate candle, reset order and restart looking for new
opportunities.
3. If in any Time frame when the reference candle was formed if CI > 60 TP and SL values will be different
4. If CI > 60 in TAR and REF then invalid setup
5. TP and SL values need to be round to min tick of the respective instrument
6. TP will need to be tracked in real time prices
7. SL tracking has to be done at candle closing and NOT in real time price movements
a. SL needs to Market order only
8. Once TP is achieved TSL will need to be tracked on candle close by updating TSL to be latest TK value
a. TSL will need to be Market order only
9. All highlighted values above will need to be configurable including indicator parameters
10. TP and SL Handling:
Close SL Futures
Long Close =< SL
Short Close >= SL
Real Time TP Futures
Long LTP >= TP
Short LTP =< TP
Close TSL Futures
Long Close =< TSL
Short Close >= TSL

응답함

1
개발자 1
등급
(182)
프로젝트
300
15%
중재
20
40% / 35%
기한 초과
15
5%
로드됨
2
개발자 2
등급
(20)
프로젝트
19
11%
중재
2
50% / 50%
기한 초과
0
무료
3
개발자 3
등급
(90)
프로젝트
110
37%
중재
8
88% / 0%
기한 초과
0
무료
4
개발자 4
등급
(2076)
프로젝트
2634
61%
중재
113
45% / 26%
기한 초과
418
16%
작업중
5
개발자 5
등급
(10)
프로젝트
25
28%
중재
1
0% / 0%
기한 초과
1
4%
로드됨
6
개발자 6
등급
(12)
프로젝트
15
40%
중재
2
50% / 50%
기한 초과
0
작업중
7
개발자 7
등급
프로젝트
1
100%
중재
0
기한 초과
0
무료
8
개발자 8
등급
(10)
프로젝트
12
0%
중재
0
기한 초과
1
8%
로드됨
9
개발자 9
등급
(9)
프로젝트
8
38%
중재
2
0% / 100%
기한 초과
2
25%
작업중
비슷한 주문
Job Description: We are seeking an experienced EA programmer to create an EA that utilizes SnR + Trendlines + Multi timeframe confluence Project Requirements: - Support and Resistance, Open Close levels/kissing candles/Rejection block, Support broken becomes Resistance(SbR), Resistance broken becomes Support(RbS), Quasimodo Levels, Asian Range, London Killzone, London Open, New York Killzone, New York Open
Job Description: We are seeking an experienced EA programmer to create an EA that utilizes SnR + Trendlines + Multi timeframe confluence Project Requirements: - Support and Resistance, Open Close levels/kissing candles/Rejection block, Support broken becomes Resistance(SbR), Resistance broken becomes Support(RbS), Quasimodo Levels, Asian Range, London Killzone, London Open, New York Killzone, New York Open
Starting from scratch, I need a solution to develop my own crypto trading and exchange platform. This platform should compare prices across various exchanges like Coinbase, Binance, KuCoin, and Unocoin, as well as different cryptocurrencies. The solution must identify opportunities to buy on one platform and sell on another for a profit, transferring funds to my personal wallet instantly for security. The bot should
Need EA programmer to create an MT4 EA that will be able to leverage trades in favour of the market direction ,the EA should be able to operate to any broker. The EA must trade on a clear trend not when the Market is ranging. More will be explained once your application has been accepted for the job
Hello I have my own candlestick pattern that I manually trade looking for someone who could automate it its based off visual seeing the candle and not math hopefully we could chat with each other and testing it rigorously to ensure its exactly like my system willing to pay 1k to 5k even 10 depending on how hard the job is... Thank You, Victor
Starting from scratch, I need a solution to develop my own crypto trading and exchange platform. This platform should compare prices across various exchanges like Coinbase, Binance, KuCoin, and Unocoin, as well as different cryptocurrencies. The solution must identify opportunities to buy on one platform and sell on another for a profit, transferring funds to my personal wallet instantly for security. The bot should
3 indicators to entry and exit Displays indicator state. Alerts and grid trades control, lots and hedge Trade management modules that will work across pairs and time frames. Make breaking news in vertical lines and e-mail alert
Hello please my budget 50$ and I will not choose any developer until you complete the work with a full trial version as I want I am ready for any discussion or clarification. I need new EA Range breakout EA and fix my RsiMA EA Range breakout new EA The orders must be pending stop orders, BUY STOP, SELL STOP Input menu Comment Magic number Lot = Fixed TP in points 0 = OFF SL in points 0 = OFF
Can someone please send me an offer of an MT4 EA based on this indicator: https://www.mql5.com/en/code/50636?utm_campaign=codebase.list&amp ;utm_medium=special&utm_source=mt4terminal Open and close position on "change Color" Settings in settings window needed: 1)Dropdown for decision of Lot Size: fix or variable 1a)Variable risk in % of cash: Value in % combine with the difference between entry an SL 1b)Lot-Size as
Range breakout 30+ USD
I need a 1st 3hour candle range breakout ea. With take profit and Stop loss levels in points. That Range clearly shown in colour shades. I need that ea ASAP

프로젝트 정보

예산
150+ USD
기한
 5 일

고객

넣은 주문1
중재 수0