Creation of a Trend Trading Expert Advisor using MA and Stochastic indicator

작업 종료됨

실행 시간 6 일
고객의 피드백
Great work yet again! Saad is exceptional and does amazing work. Always delivers as promised.
피고용인의 피드백
Great collaborating with you once again. Looking forward to future projects.

명시

This expert advisor will rely heavily on catching the trend. The trading will take place mainly on the 4 hour chart.

This strategy consists of four indicators, which are:
1. 5 Period Exponential Moving Average (closed)

2. 15 Period Exponential Moving Average (closed)

3. 50 Period Exponential Moving Average (closed)

4. Stochastic indicator K=13 D=5 Smooth=5 (13,5,5) 80/20 Levels


Mechanics
There are only two, yet very important rules for the EA to follow when trading.

1. The K% line on the stochastic indicator MUST be above the D% line when taking a BUY & the K% line MUST be below the D% line when taking a SELL.

2. Both the 5 & 15 EMA MUST cross the 50 EMA going upwards to create a BUY signal OR downwards for a SELL signal.

*Both of these conditions must be met before a trade signal is generated.*


See below for some examples: 

In this example, we can see the K% is above the D% (as shown by the bottom green arrow). We can also see the 5 & 15 EMA have crossed the 50 EMA (as indicated by the upper green arrow). Once both the 5 & 15 EMA’s have crossed the 50 EMA going upwards, the EA would have taken a BUY.



In this example, we can see the K% is below the D% (as shown by the bottom red arrow). We can also see the 5 & 15 EMA have crossed the 50 EMA (as indicated by the upper red arrow). Once both the 5 & 15 EMA’s have crossed the 50 EMA going downwards the EA would have taken a SELL.



Starting lots let's use 0.25

Allow lot size to be fixed or dynamic based on the balance.

Allow breakeven function and martingale function using a grid function and allow this to be enabled or disabled.

For martingale and grid, please allow the distance to be modifiable.

Please allow the martingale factor of increase to be modifiable (example, 1.3 increase each time a new trade is opened)

Allow a maximum amount of orders to be opened for martingale (4)


Default TP will be set at 250 points and modifiable.

SL: Allow it to be a fixed amount set to 500 points

We will use points, not pips 

News filter (Will be discussed and negotiated)

Allow a time filter for the bot to turn on or off during certain hours and to trade certain days of the week.

Once the order is done, I would like the source code.

Please let me know if you have any questions or concerns.


응답함

1
개발자 1
등급
(22)
프로젝트
21
10%
중재
4
25% / 75%
기한 초과
0
무료
2
개발자 2
등급
(62)
프로젝트
90
29%
중재
24
13% / 58%
기한 초과
7
8%
작업중
3
개발자 3
등급
(274)
프로젝트
403
28%
중재
40
40% / 50%
기한 초과
1
0%
무료
4
개발자 4
등급
(51)
프로젝트
71
37%
중재
4
25% / 75%
기한 초과
1
1%
무료
게재됨: 1 코드
5
개발자 5
등급
(435)
프로젝트
641
53%
중재
34
62% / 21%
기한 초과
6
1%
작업중
6
개발자 6
등급
(16)
프로젝트
35
23%
중재
4
0% / 50%
기한 초과
2
6%
작업중
7
개발자 7
등급
(455)
프로젝트
721
34%
중재
35
71% / 9%
기한 초과
23
3%
무료
8
개발자 8
등급
(160)
프로젝트
208
61%
중재
10
80% / 0%
기한 초과
0
무료
게재됨: 1 코드
9
개발자 9
등급
(6)
프로젝트
8
0%
중재
8
13% / 88%
기한 초과
0
무료
10
개발자 10
등급
(3)
프로젝트
4
25%
중재
0
기한 초과
0
무료
11
개발자 11
등급
(2675)
프로젝트
3414
68%
중재
77
48% / 14%
기한 초과
342
10%
무료
게재됨: 1 코드
12
개발자 12
등급
(72)
프로젝트
80
10%
중재
38
8% / 58%
기한 초과
6
8%
무료
비슷한 주문
Indicador Maximas e Minimas + Super Trend O Indicador MAX/MIN é um indicador de análise técnica para o MetaTrader 5 , desenvolvido para ajudar você a identificar regiões importantes de preço e possíveis oportunidades de compra e venda. O que ele faz MAX/MIN: identifica máximas e mínimas relevantes do mercado e mostra os preços no gráfico. HH / HL / LH / LL: ajuda a visualizar a estrutura do mercado, mostrando quando
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {
1. Title Development of a Custom MQL5 Expert Advisor for XAUUSD (MetaTrader 5) 2. Requirements Specification Overview: I am looking for an experienced MQL5 developer to build a robust, fully custom Expert Advisor (EA) for MetaTrader 5 tailored for trading Gold (XAUUSD). Core Specifications & Features: Asset & Timeframe: Designed specifically for XAUUSD. Timeframe should be selectable directly from the EA inputs
Cerco uno sviluppatore MQL5 esperto per sviluppare da zero un Expert Advisor completamente nuovo per XAUUSD su MT5. Non desidero un semplice Expert Advisor basato su indicatori fissi. Desidero un sistema di trading dinamico e adattivo, in grado di adattare il proprio comportamento alle mutevoli condizioni di mercato di XAUUSD. Lo sviluppatore dovrebbe essere libero di combinare qualsiasi tecnica ritenuta opportuna
I am looking for a Senior MQL5 Developer to create a new MetaTrader 5 Expert Advisor from scratch. I will provide a complete Requirements Specification containing objective entry, exit and risk-management rules. This is not a request to copy or decompile an existing product. Project requirements: Clean and modular MQL5 source code. Exact implementation of the supplied strategy. One signal evaluation per configured
NinjaTrader 8 / NinjaScript Phase 1 build: convert an existing Auction Market Theory (AMT) strategy into objective, alert-only decision-support logic. Not a bot, no auto-execution — trades stay manual. Covers NQ/MNQ, ES, CL, MGC using 30-min TPO/Volume Profile context with 5-min confirmation: one 5-min close outside VAH/VAL = acceptance, close back inside = rejection. Dashboard shows bias, auction state, location

프로젝트 정보

예산
55+ USD
기한
 5 일