İş tamamlandı
Tamamlanma süresi: 11 gün
Hello! I’m French and I need a reliable MQL5 developer to convert my TradingView strategy into a fully automated EA for FTMO.
Scope: AlphaWave (dynamic stop logic) + ADX filter with thresholds per asset (BTC=25, SOL=35), risk-based position sizing, session filters (all trades except weekends + configurable time windows), BTC TP at RR=2, SOL exit via AlphaWave stop only, no BE, FTMO-safe lot/SL validation.
Budget: For this first project I offer $70 fixed. If the result is solid and well-delivered, I will have frequent follow-up projects at significantly higher rates.
Deliverables: clean and well-commented source code, exposed inputs, proper error handling/logs, and strict confidentiality (no disclosure or reuse of my strategy).
I already have a complete specification with screenshots ready.
Yanıtlandı
Arabuluculuk
20
45%
/
30%
Arabuluculuk
105
40%
/
24%
Yayınlandı: 2 kod
Benzer siparişler
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;