Tarea técnica
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
// Initialization logic
Print("Trading bot initialized.");
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
// Cleanup code
Print("Bot deinitialized.");
}
//+------------------------------------------------------------------+
//| Expert tick function (main trading logic) |
//+------------------------------------------------------------------+
void OnTick()
{
// Basic Order Book Analysis (mockup example)
double bidPrice = MarketInfo(Symbol(), MODE_BID);
double askPrice = MarketInfo(Symbol(), MODE_ASK);
double spread = askPrice - bidPrice;
// Define trading conditions based on spread (market-making)
if(spread < 0.001) // Example condition
{
// Place a buy order if spread is small
double lotSize = 0.1;
double slippage = 3;
double stopLoss = bidPrice - 50 * Point;
double takeProfit = bidPrice + 50 * Point;
int ticket = OrderSend(Symbol(), OP_BUY, lotSize, askPrice, slippage, stopLoss, takeProfit, "Buy Order", 0, 0, Blue);
if(ticket < 0)
{
Print("Error opening buy order: ", GetLastError());
}
}
// Basic risk management (adjust according to strategy)
// Example: Close positions after a set condition (for demo)
if(AccountFreeMarginCheck(Symbol(), OP_BUY, 0.1) < 100)
{
// Close any open buy orders if margin is low
for(int i = OrdersTotal() - 1; i >= 0; i--)
{
if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES))
{
if(OrderType() == OP_BUY)
{
OrderClose(OrderTicket(), OrderLots(), Bid, 3, Red);
}
}
}
}
}
Han respondido
1
Evaluación
Proyectos
167
25%
Arbitraje
23
9%
/
78%
Caducado
16
10%
Trabaja
2
Evaluación
Proyectos
313
28%
Arbitraje
34
26%
/
65%
Caducado
10
3%
Trabaja
3
Evaluación
Proyectos
8
13%
Arbitraje
3
0%
/
33%
Caducado
2
25%
Libre
Ha publicado: 1 ejemplo
4
Evaluación
Proyectos
35
46%
Arbitraje
0
Caducado
0
Libre
Ha publicado: 3 ejemplos
5
Evaluación
Proyectos
258
61%
Arbitraje
4
50%
/
25%
Caducado
10
4%
Libre
6
Evaluación
Proyectos
195
42%
Arbitraje
13
8%
/
54%
Caducado
9
5%
Libre
Ha publicado: 3 ejemplos
7
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
8
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
9
Evaluación
Proyectos
31
19%
Arbitraje
4
50%
/
25%
Caducado
4
13%
Libre
10
Evaluación
Proyectos
19
11%
Arbitraje
8
38%
/
38%
Caducado
2
11%
Trabajando
11
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
12
Evaluación
Proyectos
259
30%
Arbitraje
0
Caducado
3
1%
Libre
Ha publicado: 2 ejemplos
13
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
14
Evaluación
Proyectos
3550
88%
Arbitraje
73
40%
/
15%
Caducado
268
8%
Libre
15
Evaluación
Proyectos
635
33%
Arbitraje
42
38%
/
45%
Caducado
11
2%
Ocupado
16
Evaluación
Proyectos
231
61%
Arbitraje
3
33%
/
33%
Caducado
6
3%
Libre
Ha publicado: 1 ejemplo
17
Evaluación
Proyectos
9
56%
Arbitraje
0
Caducado
0
Libre
18
Evaluación
Proyectos
80
6%
Arbitraje
46
11%
/
54%
Caducado
7
9%
Trabaja
19
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
20
Evaluación
Proyectos
945
47%
Arbitraje
309
58%
/
27%
Caducado
125
13%
Libre
Solicitudes similares
I need a MetaTrader 5 Expert Advisor (EA) for Forex trading. Account size: $1000 Requirements: 1. The EA should work only on Forex pairs. 2. Automatic Buy and Sell trades. 3. Lot size starting from 0.04. 4. Stop Loss and Take Profit settings. 5. Only one trade at a time. 6. Works on pairs like EURUSD, GBPUSD, USDJPY etc. 7. Risk management suitable for a $1000 account. 8. Easy settings for lot size, SL, TP and risk
I want to design an EA that can identify key Supports and Resistances. This should be able to work on any timeframe from 1 minute to 1 hour (i.e 1 minute, 5 minutes, 15 minutes and 1 hour time frames.) The EA should be able to determine a Fibonacci retracement from a support and the next resistance point in an uptrend and vice versa (i.e the EA should be able to determine a Fibonacci retracement from a resistance and
Product Requirements Document (PRD) Project Title: Liquidity Sniper Semi-EA (Fibonacci & SMC Based) Platform: MetaTrader 5 (MQL5) Target Asset: XAUUSD (High Volatility) / M5 Timeframe 1. EA Operating Concept (Semi-Automated) Human-Machine Collaboration: The trader manually draws a standard Fibonacci Retracement object on the M15 chart to define the market structure (setting the 1.0 and 0.0 anchor points). EA's Role
Short Description: I am seeking an experienced MQL4 developer to build a high-frequency Asymmetric Salami Grid EA . This is a sophisticated volatility harvester, not a basic martingale. Key Features to Implement: Virtual Grid Execution: No pending orders; all logic handled in-memory via OnTick . Asymmetric Lot Sizing: Trend-side degression vs. Counter-trend progression . Salami Partial Liquidation: XX% of profits
I am seeking an experienced MQL5 developer to build a high-precision Gold (XAUUSD) scalping Expert Advisor. The objective is to achieve a Profit Factor (PF) of 2.0 or higher with a focus on institutional logic rather than retail lagging indicators.The EA must be designed to pass a "100% Real Ticks" backtest (Exness/Dukascopy data) over a 30-day period with a $500 initial deposit.Core Requirements & Strategy
Title: Design and Development of an Automated Forex Trading Robot Using MQL5 and Machine Learning Techniques Abstract: This project focuses on the design and development of an automated Forex trading robot that integrates MQL5 programming and machine learning techniques. The system aims to predict market movements and execute trades automatically, minimizing human error and emotional trading. By leveraging historical
Chin
30 - 300 USD
i want to add the 30m time frame in the ema section high ema is 1h low ema is 5m i want u to add a mid ema so i can use 3 time frames
I’ve been following your profile and I'm interested in your expertise with the ATAS API and C# development. I have a clear technical scope for a high-performance M1 indicator focused on Binary Options and Scalping. The core logic is based on institutional Order Flow convergence: Stacked Imbalances: 300% ratio with a minimum of 3 consecutive levels. Delta/Price Divergence: Filtering for market exhaustion (New Highs
Hello, Please read the full specification before applying. This project is NOT about building an EA from scratch. I already have a fully working MT5 Expert Advisor. The EA already includes a dashboard, risk management, and some protection systems, but it needs a few more features . So I need an experienced MQL5 developer to modify my existing MT5 EA by replacing the current entry logic with a new breakout strategy
Telegram signals copier
30+ USD
Copying third party from telegram. I have quite a number of them There is many different of them, I will consolidate all of them and send you Usually is a price range, so when hit the range will trigger Option for both fix or scale with equity I would like to have both, option to choose to follow the SL/TP signal provided or not This copier will trigger my DCA bot function. So don’t need set max position limit and
Información sobre el proyecto
Presupuesto
30 - 200 USD
Plazo límite de ejecución
de 1 a 50 día(s)