Marker Zeaper🦾

MQL5 Experten

Spezifikation

Here is a script for forex trading AI tool requirements 

_MT4 Version_
```
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
int start()
{
   // Define the number of positions
   int numPositions = 50; // adjust this value from 5 to 100

   // Define the symbol and stop levels
   string symbol = _Symbol; // current symbol
   double stopLevel = 0.01; // adjust this value

   // Define bulk operations buttons
   int bulkCloseAll = 0;
   int bulkCloseProfitable = 0;
   int bulkCloseSell = 0;
   int bulkCloseBuy = 0;

   // Define stop loss and take profit buttons
   double stopLoss = 0.0;
   double takeProfit = 0.0;

   // Define adjustable lot size
   double lotSize = 0.1;

   // Loop through each position
   for (int i = 0; i < numPositions; i++)
   {
      // Calculate the stop price for buy and sell
      double buyStopPrice = Ask + (i * stopLevel);
      double sellStopPrice = Bid - (i * stopLevel);

      // Place buy stop order
      int ticket = OrderSend(symbol, OP_BUYSTOP, lotSize, buyStopPrice, 3, stopLoss, takeProfit, "Buy Stop", 0, 0, Green);

      // Place sell stop order
      ticket = OrderSend(symbol, OP_SELLSTOP, lotSize, sellStopPrice, 3, stopLoss, takeProfit, "Sell Stop", 0, 0, Red);
   }

   // Bulk operations buttons
   if (bulkCloseAll == 1) {
      CloseAllOrders();
   }
   if (bulkCloseProfitable == 1) {
      CloseProfitableOrders();
   }
   if (bulkCloseSell == 1) {
      CloseSellOrders();
   }
   if (bulkCloseBuy == 1) {
      CloseBuyOrders();
   }

   return(0);
}

//+------------------------------------------------------------------+
//| Close all orders function                                         |
//+------------------------------------------------------------------+
void CloseAllOrders()
{
   for (int i = 0; i < OrdersTotal(); i++) {
      OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, Green);
   }
}

//+------------------------------------------------------------------+
//| Close profitable orders function                                  |
//+------------------------------------------------------------------+
void CloseProfitableOrders()
{
   for (int i = 0; i < OrdersTotal(); i++) {
      if (OrderProfit() > 0) {
         OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, Green);
      }
   }
}

//+------------------------------------------------------------------+
//| Close sell orders function                                        |
//+------------------------------------------------------------------+
void CloseSellOrders()
{
   for (int i = 0; i < OrdersTotal(); i++) {
      if (OrderType() == OP_SELL) {
         OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, Green);
      }
   }
}

//+------------------------------------------------------------------+
//| Close buy orders function                                         |
//+------------------------------------------------------------------+
void CloseBuyOrders()
{
   for (int i = 0; i < OrdersTotal(); i++) {
      if (OrderType() == OP_BUY) {
         OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, Green);
      }
   }
}
```

_MT5 Version_
```
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
{
   // Define the number of positions
   int numPositions = 50; // adjust this value from 5 to 100

   // Define the symbol and stop levels
   string symbol = Symbol(); // current symbol
   double stopLevel = 0.01; // adjust this value

   // Define bulk operations buttons
   int bulkCloseAll = 0;
   int bulkCloseProfitable = 0;
   int bulkCloseSell = 0;
   int bulkCloseBuy = 0;

   // Define stop loss and take profit buttons
   double stopLoss = 0.0;
   double takeProfit = 0.0;

   // Define adjustable lot size
   double lotSize = 0.1;

   // Loop through each position
   for (int i = 0; i < numPositions; i++)
   {
      // Calculate the stop price for buy and sell
      double buyStopPrice = SymbolInfoDouble(symbol, SYMBOL_ASK) + (i * stopLevel);
      double sellStopPrice = SymbolInfoDouble(symbol, SYMBOL_BID) - (i * stopLevel);

      // Place buy stop order
      int ticket = OrderSend(symbol, OP_BUYSTOP, lotSize, buyStopPrice,
```

Bewerbungen

1
Entwickler 1
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
2
Entwickler 2
Bewertung
(144)
Projekte
186
41%
Schlichtung
24
58% / 21%
Frist nicht eingehalten
13
7%
Frei
Ähnliche Aufträge
Spikes EA 30 - 200 USD
Got you 🔥 You want a clear link name + eye-catching brand name (I’m guessing for trading or a forex page since you’ve been working on bots and strategies). Here are powerful name + link ideas 👇 🔥 Strong & Professional Names PipEmpire 🔗 pipempire.com 🔗 pipempirefx.com GoldWave Traders 🔗 goldwavetraders.com SmartEdge FX 🔗 smartedgefx.com QuantumPips 🔗 quantumpips.com CapeCapital FX (since you're in Cape Town
Tradovate API to mt5 50 - 60 USD
Obtain indicator signals from tradovate use them to generate and control EA in mt5 Indicators include delta, volume , bid ask above x, big orders absorption. Stacked imbalance and failed auction. When their is confluence it make for entry and exit
hello people, i have this bot, it works, however i would like my own version similar as the developer isn't reliable and some things don't work Bitcoin Scalping Robot MT4 | Buy Trading Robot (Expert Advisor) for MetaTrader 4 i would like similar strategy with the addition of autolot sizes, obvs i have the set file
Hello, professional programmers! I'd like to request a special service. I need a trading bot like the one in the video, one that works on real accounts. My only request is that I don't pay any money until the bot is built and tested. Thank you very much
MT5 Manual Trade Panel 250 - 600 USD
MT5 Manual Trade Panel with Risk % Lot Calculation & User License System 11 hours ago MQL5 Experts Forex Trading robot/indicator debugging C++ Strategy modules Panels and dialog boxes Hello, I need a professional MT5 manual trading assistant panel (NOT auto trading EA). MAIN IDEA: A clean manual trading panel similar to TradingView long/short position tool inside MT5, designed mainly for Gold scalping (M5 /
Ai robot 30 - 50 USD
1️⃣ System Architecture An AI robot typically consists of the following subsystems: 🔹 1. Perception Layer Collects environmental data using: RGB / Depth cameras LiDAR Ultrasonic sensors IMUs (Inertial Measurement Units) Microphones Data is processed using: Computer Vision (e.g., object detection, SLAM) Signal processing Sensor fusion algorithms 🔹 2. Cognition / Intelligence Layer Implements AI models such as
As we were discuss privetly I would like also modification where the ea would close all charts under certain conditions and also to close positions. otherwise seems okay based on description but firstly would need to see demo version but cant download it
I'm looking for a good MT5 EA that is not martingale , Must work on real account, Looking mainly for Gold or Major Forex pairs or BTC. Willing to purchase the full source code if you have a woking EA that fits the criteria Must work on small standard accounts below 1000$ capital or cent accounts Looking to test it before purchase, or if you can show me a read only access account that would be great
Trailing Stop Based on Thresholds . Other Necessary Filters already Coded . Live Chart Only . The strategy already coded - needs a fresh new draft . To Start from Signal Trigger
MT5 backtestest helper 30 - 200 USD
Sure 😊 — here’s a simple file-style write-up about your robot that you ordered on MetaTrader 4. You can copy it into Word or save it as a document. Title: My Trading Robot on MetaTrader 4 Introduction I recently ordered a trading robot on MetaTrader 4 to help me trade in the financial markets. A trading robot, also known as an Expert Advisor (EA), is a program that automatically analyzes the market and places trades

Projektdetails

Budget
30+ USD