Creation of an Expert Advisor based on 2 bollinger bands and risk management

Tâche terminée

Temps d'exécution 3 jours
Commentaires de l'employé
Excellent client!

Spécifications

EA PROJECT BBTOM (It’s the same for sell or buy position, it’s the opposite)             ----------    Meta trader 5     ----------   MQL5   ------

2 indicators will be used: 2 bollinger bands (one small and one big) when the closed price exceeds the large bollinger band at least xxx pips and no position is already open, EA starts a first sell position.

If the closed price is higher than the small bollinger band at least xxx pips and higher than the price of the previous position at least xxx pips so EA starts an additional sell position. The position size will always be the same as first position.

EA closes all positions when the closed price exceeds the opposite large bollinger band at least xxx pips and the overall balance is positive or better or even earlier if the outstanding amount is greater than 20% of the balance. (the amount will be configurable)

The number of positions which can be opened is a maximum configurable.But if the overall balance negative outstanding amount is greater than xx% of the balance so EA closes the oldest position to remove in the maximum overall balance negative outstanding amount definied.

Here is the data that must be configurable :

1 - small bollinger bands ( example BB 10 )

2 - big bollinger bands( example BB 50)

3 - Time frame and pairs

4 - position size : % of balance and all positions will have the same size

5 - minimum gap between the closed price and the big bollinger band to start a position

6 - minimum gap between the closed price and the big bollinger band to close all positions opened

6 - minimum gap between the closed price and the small bollinger band to start an additionnal position

7 - minimum gap between two positions : it is necessary to be able to define the first gap then the successive gaps example: 300 pips between sell1 and sell2 then 230pips between sell2 and sell3, then 200pips between sell3 and sell4 …defined with an equation

8 - negative outstanding limit which causes the closure of the oldest position : %balance

9 – the maximum number of positions that can be opened at the same time

Dossiers :

Répondu

1
Développeur 1
Évaluation
(7)
Projets
18
44%
Arbitrage
3
0% / 100%
En retard
6
33%
Gratuit
2
Développeur 2
Évaluation
(393)
Projets
549
40%
Arbitrage
30
57% / 3%
En retard
57
10%
Gratuit
Publié : 11 codes
3
Développeur 3
Évaluation
(296)
Projets
475
40%
Arbitrage
105
40% / 24%
En retard
80
17%
Occupé
Publié : 2 codes
Commandes similaires
VICTOIRE MASTERCLASS 30 - 200 USD
import ccxt import pandas as pd import numpy as np import talib import time # Configuration exchange = ccxt.binance({ 'apiKey': 'VOTRE_API_KEY', 'secret': 'VOTRE_SECRET_KEY', }) # Paramètres de trading symbole = 'BTC/USDT' timeframe = '1h' montant = 100 # en USDT stop_loss = 0.98 # 2% de perte maximale take_profit = 1.03 # 3% de gain def recuperer_donnees(): ohlcv = exchange.fetch_ohlcv(symbole, timeframe
//+------------------------------------------------------------------+ //| M65 PRO ROBOT | //| Trend + RSI + Risk Management | //+------------------------------------------------------------------+ #property strict input double LotSize = 0.01; input int StopLoss = 100; // points input int TakeProfit = 200; // points input int RSI_Period = 14; int rsiHandle; int ema50Handle; int ema200Handle;
Robot treder 30+ USD
//+------------------------------------------------------------------+ //| M65 PRO ROBOT | //| Trend + RSI + Risk Management | //+------------------------------------------------------------------+ #property strict input double LotSize = 0.01; input int StopLoss = 100; // points input int TakeProfit = 200; // points input int RSI_Period = 14; int rsiHandle; int ema50Handle; int ema200Handle;
Objectif : validation du comportement , zéro stress 🧮 Gestion du risque MaxRiskPerDay = 2.0 % MaxTradesPerDay = 4 RiskPerTrade = 0.50 % MaxDailyLossHardStop = 2.0 % 📈 Trading Timeframe = M15 Symbols = EURUSD,GBPUSD AllowBuy = true AllowSell = true OneTradePerSymbol = true 📊 Indicateurs MACD_Fast = 12 MACD_Slow = 26 MACD_Signal = 9 Stoch_K = 14 Stoch_D = 3 Stoch_Slowing = 3 🛡️ Stops ATR_Period = 14

Informations sur le projet

Budget
100 - 150 USD
Délais
de 1 à 5 jour(s)