MT4/EA Programmer for Automated Trading

Termos de Referência

i am working on specific trading strategy using high leverage future - i can get basic code but need help editing code, testing code, and making sure EA piece is working - i want 100% automation on this trading account - can you help?

MT4/EA Programmer for Automated Trading

Project goal

Implement and optimize an automated trading strategy for MetaTrader 4 using detailed EA code provided by an AI partner.


Scope of work

- Set up the provided EA code on MetaTrader 4

- Configure automated trading based on strategy rules including leverage, stop-loss, position sizing, and entry/exit signals

- Ensure efficient trades execution for Solana, NQ (NASDAQ-100 E-mini Futures), and Bitcoin

- Optimize EA performance for high-frequency and swing trades on 1m, 5m, and 15m charts

- Support simulated trading with $100K test accounts on partner platforms

- Troubleshoot and refine the trading system based on live and backtested results

here is a sample - // WEB Million Dollar Trading Strategy - Sample Code for Developer Evaluation


// Input parameters

input double StopLossPercent = 1.0;       // Stop-loss as a percentage of capital

input double Leverage = 10;              // Initial lower leverage until capital builds

input double LotSize = 0.1;              // Example lot size for Solana trades


// Function to calculate stop-loss in points based on account equity

double CalculateStopLossPoints(double entryPrice) {

    double equity = AccountEquity();

    double stopLossValue = equity * (StopLossPercent / 100.0);

    double stopLossPoints = stopLossValue / (LotSize * MarketInfo(Symbol(), MODE_TICKSIZE));

    return stopLossPoints;

}


// Function to place a buy order

void PlaceBuyOrder() {

    double entryPrice = MarketInfo(Symbol(), MODE_ASK);

    double stopLossPoints = CalculateStopLossPoints(entryPrice);

    double stopLoss = entryPrice - stopLossPoints * Point;


    int ticket = OrderSend(Symbol(), OP_BUY, LotSize, entryPrice, 3, stopLoss, 0, "WEB Trade", 0, 0, clrGreen);

    if (ticket < 0) {

        Print("OrderSend failed with error #", GetLastError());

    }

}


// Function to place a sell order

void PlaceSellOrder() {

    double entryPrice = MarketInfo(Symbol(), MODE_BID);

    double stopLossPoints = CalculateStopLossPoints(entryPrice);

    double stopLoss = entryPrice + stopLossPoints * Point;


    int ticket = OrderSend(Symbol(), OP_SELL, LotSize, entryPrice, 3, stopLoss, 0, "WEB Trade", 0, 0, clrRed);

    if (ticket < 0) {

        Print("OrderSend failed with error #", GetLastError());

    }

}


// Expert Advisor start function

void OnTick() {

    if (ConditionsForBuy()) {

        PlaceBuyOrder();

    }

    if (ConditionsForSell()) {

        PlaceSellOrder();

    }

}


// Placeholder for buy condition logic

bool ConditionsForBuy() {

    // Simple moving average crossover as an example

    double fastMA = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, 0);

    double slowMA = iMA(NULL, 0, 50, 0, MODE_SMA, PRICE_CLOSE, 0);

    return (fastMA > slowMA);

}


// Placeholder for sell condition logic

bool ConditionsForSell() {

    double fastMA = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, 0);

    double slowMA = iMA(NULL, 0, 50, 0, MODE_SMA, PRICE_CLOSE, 0);

    return (fastMA < slowMA);

}

Respondido

1
Desenvolvedor 1
Classificação
(5)
Projetos
5
0%
Arbitragem
5
0% / 40%
Expirado
0
Livre
2
Desenvolvedor 2
Classificação
(1)
Projetos
2
0%
Arbitragem
0
Expirado
0
Livre
Publicou: 2 códigos
3
Desenvolvedor 3
Classificação
(151)
Projetos
188
57%
Arbitragem
10
80% / 0%
Expirado
0
Livre
Publicou: 1 código
4
Desenvolvedor 4
Classificação
(4)
Projetos
9
11%
Arbitragem
11
18% / 64%
Expirado
4
44%
Livre
5
Desenvolvedor 5
Classificação
(12)
Projetos
9
33%
Arbitragem
11
0% / 100%
Expirado
2
22%
Livre
6
Desenvolvedor 6
Classificação
(10)
Projetos
15
27%
Arbitragem
0
Expirado
3
20%
Livre
7
Desenvolvedor 7
Classificação
(21)
Projetos
23
70%
Arbitragem
0
Expirado
0
Carregado
8
Desenvolvedor 8
Classificação
(294)
Projetos
469
39%
Arbitragem
100
41% / 23%
Expirado
77
16%
Carregado
Publicou: 2 códigos
Pedidos semelhantes
I have an issue with my ninja script and i would like you to help me straighten things I wanted to create an indicator and i have the source code already but i am getting compiling errors on my NinjaTrader And i tried fixing the error it still same I sent 3 images here for you to understand the errors and i would like to ask if you can help me fix it so i can go ahead and compile my source code. Thanks
Good day, I would like to build an automated trading system for Ninjatrader using 2 MACD, a Supertrend, and a moving average indicator. I want the option to adjust the indicator settings, the ability to trade at three different times, and the option to receive alerts. I want to get an idea of what that will cost me. It will enter trades on all blue take one contract out at a fixed point, move the stop to break even
"Hello! I am an experienced programmer specializing in automated trading software for MetaTrader 4 (MQL4) and MetaTrader 5 (MQL5). My goal is to help traders turn their manual strategies into fully automated robots (Expert Advisors) and custom indicators. My services include: Developing Expert Advisors (EA) from scratch based on your strategy. Creating Custom Indicators and Scripts. Modifying existing EAs (adding
I have a simple strategy that need coding on tradingview Strategy using high low at seleted time and when breakout to entry buy sell. Everything will be explained on private
I am looking for an experienced MQL5 developer to modify and enhance my existing Expert Advisor, "Gold Levels Trader". The current version has a low win rate (~30%) and issues with ATR-based Stop Loss execution. I want to replace the current "pips drop/rise" logic with Fibonacci Retracement levels for entry signals, implement a Daily Drawdown Limit , and add Pending Orders functionality
I want developer who know how to create bot which immediately transfer specific crypto coin deposit to one crypto address to another specific address in just a second,, if you know about this then only comment on this post
So the things we need in algorithm of mql5 language EA in mt5 1. Depending on timeframe it can recognise the previous swing high and low 2. Timeframe is 5m,15m,1h,4h 3. It can recognise the basic Market bias that is market is bullish or bearish we can identify using (ema,rsi,basic smc bias,ict bias structure mapping) or use anything to find bias structure 4. EA should have option to change timeframe and change risk
require the development of a high-speed, fully automated trading Expert Advisor (EA) for MetaTrader 5 , optimized for live trading on both Deriv and Exness . The EA must be designed for fast execution, low latency, and reliability on real-money accounts , with full compatibility across broker-specific contract specifications, tick sizes, tick values, pricing formats, and volume rules. It should automatically detect
# Copyright 2025, MetaQuotes Ltd. # https://www.mql5.com import importlib . util mt5_spec = importlib . util . find_spec ( "MetaTrader5" ) if mt5_spec is None : mt5 = None else : import MetaTrader5 as mt5 # pyright: ignore[reportMissingImports] def main (): if mt5 is None : print ( "MetaTrader5 module not available" ) return print ( 'Python executable:' , __import__ ( 'sys' ).executable) ok = mt5
Scope of Work Develop 15 individual Expert Advisors (MT4 and/or MT5) Each EA will have: Unique trade logic and execution rules Configurable inputs (risk %, lot size, TP/SL, filters, sessions, etc.) Clean, modular, well-commented code Error-free compilation Backtest-ready functionality Core Features (Across EAs) Market & pending order execution Risk-based position sizing Time/session filters Trade limits (per day /

Informações sobre o projeto

Orçamento
30+ USD
Prazo
para 2 dias