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);
}
Benzer siparişler
Acquire existing profitable Expert Advisor with source code for client investment portfolio - Full .mq5 code (clean & commented) - 4+ years backtest (Jan 2022 - Dec 2025, 100% tick data) - ~10% monthly return - Max DD ≤15% - No grid/martingale (strictly enforced) - 1-month forward test required - Send trade history + EA details for review - Demo EA file needed for backtest replication - Open to any currency
i need the multi-chain dex bot with set up and installation i need you to help me set the copy reading wallet on binance or phantom with capital for 100 Euro to 1 Million in one year
i need to fix this it is returning invald 2025.12.25 23:08:31.011 Trades '700031908': failed prices for 0 [Invalid request] i want it fixed i use Ai to chek and this is what it report
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
I need an MQL5 indicator that identifies reversals without repainting or placing signals with an offset. The goal is to minimize lag and reduce whipsaw trades. Desired results are similar to the attached image. Requirements: - No repainting - No signal offset - Emphasis on reducing lag - MQL5 compatible - Clear, concise code If you have the expertise to create a reliable, high-performance indicator, let's discuss
I'm looking for a skilled trader/developer to share a proven scalping strategy on M1-M5 timeframes without using Martingale, Grid trading, or Hedge. Requirements: - Minimum trade duration: 2 minutes - Lot size: <20 - Proof of skill: Provide MT4/MT5 trade history report (PDF/HTML) - No High Frequency Trades - GMT+1 timezone, flexible hours - Price negotiable, performance-based compensation possible If you're a
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
I have an indicator i need automated i use it manually and it plots arrows. Can you automate it for my Ninjatrader8? Do you need to see file? Expert Ninjatrader Developer can Bid for this project
Hi! I need a trading bot/robot to automate my trades. I don't need much complicated bot. I want it to enter, exit trade and can do this in matter of second or multiple times in a second. Should be able to adjust, put SL/TP in the same menu. Would appreciate your ideas! Please write to me before anything else