Marker Zeaper🦾

MQL5 エキスパート

指定

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,
```

応答済み

1
開発者 1
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
2
開発者 2
評価
(144)
プロジェクト
186
41%
仲裁
24
58% / 21%
期限切れ
13
7%
類似した注文
Hi, I’m looking for someone with real Build Alpha experience to help set up an index-trading ruleset inside Build Alpha. Important: This work cannot be done without full access to Build Alpha . You must already own a Build Alpha licence and actively use the platform. Please do not apply if you do not currently have Build Alpha. What needs to be set up in Build Alpha 1. Session and Time Rules • Fixed GMT trading
Fix and optimize an existing Bybit trading bot so the profit target closes and reopens trades continuously (accumulation cycle) , while the withdrawal threshold pauses the bot, converts funds, withdraws profit, resets accumulation, and resumes trading . Current issue: the bot stops after hitting profit , which must be corrected. Demo video required after completion
Fix and optimize an existing Bybit trading bot so the profit target closes and reopens trades continuously (accumulation cycle) , while the withdrawal threshold pauses the bot, converts funds, withdraws profit, resets accumulation, and resumes trading . Current issue: the bot stops after hitting profit , which must be corrected. Demo video required after completion
We're looking for a highly motivated and detail-oriented individual to fill a key position in our team. The successful candidate will be responsible for driving projects forward, analyzing complex data, and collaborating with cross-functional teams to achieve business objectives. The role requires exceptional problem-solving skills, effective communication, and adaptability in a fast-paced environment. If you're a
EA DEVELOPMENT 50+ USD
Hello, I’m interested in developing an Expert Advisor (EA). I will send you the details and examples of the type of EA I need. Please log in and review them so you can understand my requirements
Mt5 alert fix 40+ USD
i have a indicator on mt5 im using it right now , you can see the performance attached Am using the Ma filter to avoid false signals I developed this indicator myself But the signals are delaying in alerting Check if you can perfect and if you Can you work on it let me know Let me know if there anything you can do to make it perfect without lagging or delaying
An Expert Advisor (EA) robot that uses market movement-based indicators is an automated program designed for platforms like MetaTrader 4 or 5 (MT4/MT5) that monitors price fluctuations and triggers trades based on predefined technical rules. These robots, often used for trend following, scalping, or breakout strategies, analyze price action, moving averages, or volatility to automatically enter and exit trades
FPi 50 - 60 USD
The main things are the Tradovate bridge to fee bid ask price as shown in the diagram Breaking news ( Not just economic releases) on vertical lines ( not necessarily from Twitter) Entries based on candle stick pattern( consecutive candle, hammer, engulfing shooting star and inside bar) and failed entry count email alert. Bid ratio, strength indicator and csi with alert from here
Scalping EA MT5 30 - 70 USD
PHẦN 1: TIẾNG VIỆT (Cho các nhóm VN) Tiêu đề: Tìm Coder Pro: Tôi có khung Quản lý vốn/Risk chặt chẽ - Bạn lo chiến thuật "Vua Scalping" phân: Tôi cần đọc mã EA. Tôi có bộ quản lý vốn và rủi ro rất chi tiết. Chiến thuật theo lệnh (Strategy) tôi để bạn Tự QUYẾT (Yêu cầu: Chuẩn bị mở rộng quy mô đa khung, vào chắc chắn và nhiều lệnh). YÊU CẦU CỤ THỂ: 1. Phần Chiến thuật (Bạn lo): * Tự động chọn chỉ báo/phương pháp. *
I already have an EA and willing to work together with a talented professional programmer so that we can make a profitable EA for the long-term. RazorQuant AI | Buy Trading Robot (Expert Advisor) for MetaTrader 5 RAZORQUANT AI v3.7 (MT5 EA) Purpose: Automated trading EA that combines classic technical filters with machine-learning signals and optional external AI (LLM) advice to decide BUY/SELL/HOLD and manage

プロジェクト情報

予算
30+ USD