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
Benzer siparişler
Un stratégie très puissant qui me fait gagner beaucoup d'argent . Veillez rejoindre pour en bénéficier avec moi On est toujours ensemble .Le trading est bien facile avec des stratégies et le paramétrage des indicateurs de temps.On est toujours dedans depuis très longtemps
Bonjour j’ai besoin d’un expert pas un coder IA pour me coder un script qui lis les signaux dans un canal privé Telegram et les répliques dans mon canal personnel
J'utilise un indicateur de tendance sur différentes unités de temps. Je souhaite être prévenu (SMS, mail, ou autre à définir) lors d'inversions de tendance pour réagir - ou pas - de manière discrétionnaire
Spécifiez vos exigences de spécification ici point par point. Essayez de décrire vos besoins de manière brève et claire, afin que votre développeur potentiel soit en mesure d'évaluer correctement sa complexité et son coût, ainsi que le temps d'exécution requis. Une mauvaise description ou une description trop générique aura pour conséquence un manque d’intérêt pour votre commande, ou que vous passerez beaucoup de
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;
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