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);
}
Similar orders
Looking for experience profitable manual traders that will be willing to trade my live mt5 account for profit share. Requirements Must have at least 6 months of profitable months. Min 10 percent monthly Send me investor credentials for mt5 or mt4 account. Can be trading Any instruments. Must reply with mt5 credentials or will disregard
Title: Advanced Manual Hedge EA with Multiplier & Multiple Trade Support Project Requirements: I need a professional Expert Advisor (EA) for XAUUSD and Forex to manage manual trades with the following logic: Lot Multiplier: The EA must automatically detect my manual trade size. There should be a "Multiplier" input (e.g., 3.0). If I open 1.0 lot Buy, the EA must auto-place a 3.0 lot Sell Stop at the set Gap
i need a developer who can link my EA to AI and in the same time i want to make a crm and a bot for onboarding clients automatically to the telegram channel
I am looking for an experienced MQL5 developer to complete the optimization and structural refinement of an existing MT5 Expert Advisor (source code ~2.5MB). Phase 1 (audit and baseline testing) has already been completed. The remaining work focuses on correcting core system behavior without changing the strategy. Key issues identified: • Scenario gate logic is not correctly structured at the entry decision level •
IF ANYONE IS INTERESTED IN GETTING ANY KIND OF CUSTOM BOT FOR TRADING I WILL ADD THE STRATEGIES ACCORDING TO YOUR CHOICE MINE BEST BOT IS SCALPING AND HEDGING BOT YOU CAN CONTACT ME FOR SERVICES
I trade ES futures on the Ninja trader platform. I recently came across an indicator and wanted to check with you if you can build a similar indicator that works on Orenko or Ninja renko charts, and also combines support and resistance untouched. Below is the indicator, which will tell you market chop and to avoid. I want to include a support and resistance bar on the chart when there is no chop please let me know
Project Description: I have a fully working Pine Script for TradingView called MFHA 3-Step Market Structure Strategy V2 . I need it converted into MT5 , with the logic kept as close to the Pine version as possible. What I need: MT5 Indicator Exact oscillator logic Multi-timeframe logic using 4H, 15M, and 1M EMA filter MTF EMA dashboard RSI display Buy and sell visual signals Background state/flash behavior where
I am looking for an experienced MQL5 developer to continue optimization work on an existing Expert Advisor (MQ5 source file available, 2.5MB). Important: This is NOT a project to build a new EA. The task is strictly to refine and improve the current system while keeping the core strategy intact. The EA is already functional and stable. A full code audit and baseline backtesting have already been done, and key
Hello, and please read everything !!! I am looking for a developer who can recreate a strategy similar to an EA I already have. The EA works well on demo, especially during specific volatility windows (for example DE40 between 09:00 and 10:00 Frankfurt time), but on real accounts it produces constant losses even with IC Markets Raw and VPS close to the broker. 🎯 Objective The goal is to recreate and adapt this
I want a bot that runs on any timeframe, but for now, I’ll set it on 1 minute. It should watch for buy and sell signals. Each time it opens a trade, as soon as it makes a small profit like 1, 2, or 3 dollars it closes, then checks for the next signal. If it sees a buy, it buys; if it sees a sell, it sells—just repeating the cycle, over and over, until I stop it