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
等级
(302)
项目
467
18%
仲裁
29
48% / 24%
逾期
30
6%
已载入
2
开发者 2
等级
(22)
项目
21
10%
仲裁
2
50% / 50%
逾期
0
空闲
3
开发者 3
等级
(138)
项目
170
53%
仲裁
10
80% / 0%
逾期
0
工作中
发布者: 1 代码
4
开发者 4
等级
(2250)
项目
2837
62%
仲裁
118
46% / 25%
逾期
428
15%
空闲
5
开发者 5
等级
(15)
项目
34
24%
仲裁
3
0% / 33%
逾期
2
6%
工作中
6
开发者 6
等级
(21)
项目
28
36%
仲裁
2
50% / 50%
逾期
2
7%
工作中
7
开发者 7
等级
(21)
项目
30
57%
仲裁
0
逾期
1
3%
空闲
8
开发者 8
等级
(13)
项目
16
13%
仲裁
3
0% / 33%
逾期
1
6%
已载入
发布者: 1 代码
9
开发者 9
等级
(12)
项目
9
33%
仲裁
3
0% / 67%
逾期
2
22%
工作中
10
开发者 10
等级
(2597)
项目
3277
67%
仲裁
77
48% / 14%
逾期
342
10%
空闲
发布者: 1 代码
11
开发者 11
等级
(84)
项目
115
70%
仲裁
5
80% / 0%
逾期
11
10%
工作中
12
开发者 12
等级
(72)
项目
80
10%
仲裁
35
9% / 54%
逾期
6
8%
空闲
13
开发者 13
等级
(161)
项目
219
58%
仲裁
3
33% / 33%
逾期
6
3%
工作中
发布者: 1 代码
14
开发者 14
等级
(1)
项目
1
0%
仲裁
0
逾期
0
空闲
相似订单
Reverse engineering EA 30 - 100 USD
Hello all programmers, I need reverse engineering EA, unfortunately I have only .exe5 file so based on historical data you need to create a source of code or maybe you know another way
The objective is to develop a highly configurable grid trading bot. The bot will operate based on a pre-defined set of price levels (a "grid"), supporting a modular suite of trading strategies, advanced risk management, and dynamic parameter adjustments based on performance and market conditions. 2. Core Trading Strategies The user can individually enable or disable any of the following strategies Neutral (Limit): A
Hi i wanted to see what you will charge me to make a simple indicator in TOS which i can plot on my activity and positions section. Firstly I want a custom column where we can calculate the difference between the trade price and the current price of a stock, or future or option. so we we have the value in that column. Example NVDA - Trade price 140 - Mark is 190 so this new colum will show +50 and option we bought at
I want a scalping MT5 trading bot that will be placing trades without any signal indicator. Conditions will be as follows; it will be opening both buy stop and sell stop at the same time being separated by a gap of 20 points from the entry. If for instance a buy stop is hit, then the sell stop should be closed immediately, and a stop loss is placed immediately where the sell stop was. Ones the buying position gets
Looking to create a bot trading forex, stock or crypto. (Very flexible) Just need to show me how it's a winning track record with real past results to show, if you have a winning profitable strategy/bot please reach out
Charity EA 30 - 35 USD
REQUIREMENTS SPECIFICATION Using the 1-hour chart, draw a Horizontal Line at the opening price of the given candle and another Horizontal Line at the closing price of the same candle, then drop to 5-minutes chart and wait for the first candle to close. ENTRY CONDITION ONE: If that first 5-minute candle closes above the Upper Horizontal Line, enter a Buy trade. If it closes below the Lower Horizontal Line, enter a
I would like to have an Expert Advisor created with the following parameters. This Expert Advisor should analyze the higher time frame and the medium time frame, and based on that, open positions on the lower time frame. For this reason, I would like to work with developers who have experience in multi-timeframe analysis. I have a PDF file that explains the entire trading logic. In addition, I have compressed the
I'm interested in acquiring a reliable, consistently profitable Expert Advisor (EA) for MetaTrader 5 (MT5). The EA should be thoroughly tested both through historical backtesting and real-time live trading and built on a transparent, logical strategy rather than being a black box. I'm open to different types of trading approaches, provided they are stable, well-explained, and have demonstrated consistent performance
I'm looking to acquire a ready-made, consistently profitable Expert Advisor (EA) for MetaTrader 5 (MT5). The EA should be well-tested in both backtesting and live trading conditions and based on a clear, logical trading strategy (not a black box). I'm open to a variety of strategies as long as they are stable, explainable, and show consistent results
I am looking for a profitable trading bot (Expert Advisor) for MT5. The bot should have: Consistent performance with proven backtest and preferably live results Strong risk and money management features Easy setup and user-friendly inputs Please share your proposals with details and pricing

项目信息

预算
150+ USD
开发人员
135 USD
截止日期
 5 天