Specifiche

//+------------------------------------------------------------------+
//| EURUSD Daily Strategy EA                                         |
//+------------------------------------------------------------------+
extern int MA_Fast = 50;
extern int MA_Slow = 200;
extern int RSI_Period = 14;
extern double RiskReward = 2.0;
extern double StopLossMultiplier = 1.5;

void OnTick() {
   if (TimeCurrent() != iTime(NULL, PERIOD_D1, 0)) return;
   
   double maFast = iMA(NULL, PERIOD_D1, MA_Fast, 0, MODE_SMA, PRICE_CLOSE, 1);
   double maSlow = iMA(NULL, PERIOD_D1, MA_Slow, 0, MODE_SMA, PRICE_CLOSE, 1);
   double rsi = iRSI(NULL, PERIOD_D1, RSI_Period, PRICE_CLOSE, 1);
   
   if (maFast > maSlow && rsi < 70 && !PositionCheck(SHORT)) {
      OpenBuy();
   }
   if (maFast < maSlow && rsi > 30 && !PositionCheck(LONG)) {
      OpenSell();
   }
}

void OpenBuy() {
   double atr = iATR(NULL, PERIOD_D1, 14, 1);
   double sl = Ask - StopLossMultiplier * atr;
   double tp = Ask + RiskReward * StopLossMultiplier * atr;
   OrderSend(Symbol(), OP_BUY, 0.1, Ask, 3, sl, tp);
}

void OpenSell() {
   double atr = iATR(NULL, PERIOD_D1, 14, 1);
   double sl = Bid + StopLossMultiplier * atr;
   double tp = Bid - RiskReward * StopLossMultiplier * atr;
   OrderSend

File:

JPEG
IMG_5302.jpeg
514.6 Kb
JPEG
IMG_5303.jpeg
457.2 Kb

Con risposta

1
Sviluppatore 1
Valutazioni
(393)
Progetti
546
40%
Arbitraggio
30
57% / 3%
In ritardo
57
10%
Gratuito
Pubblicati: 11 codici
2
Sviluppatore 2
Valutazioni
(103)
Progetti
165
24%
Arbitraggio
23
9% / 78%
In ritardo
16
10%
In elaborazione
3
Sviluppatore 3
Valutazioni
(75)
Progetti
108
51%
Arbitraggio
25
24% / 52%
In ritardo
9
8%
In elaborazione
4
Sviluppatore 4
Valutazioni
(16)
Progetti
35
23%
Arbitraggio
4
0% / 50%
In ritardo
2
6%
In elaborazione
5
Sviluppatore 5
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
6
Sviluppatore 6
Valutazioni
(4)
Progetti
5
0%
Arbitraggio
1
0% / 100%
In ritardo
1
20%
Gratuito
7
Sviluppatore 7
Valutazioni
(60)
Progetti
87
29%
Arbitraggio
24
13% / 58%
In ritardo
7
8%
In elaborazione
8
Sviluppatore 8
Valutazioni
(6)
Progetti
8
0%
Arbitraggio
8
13% / 88%
In ritardo
0
Gratuito
9
Sviluppatore 9
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
10
Sviluppatore 10
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
11
Sviluppatore 11
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
12
Sviluppatore 12
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
13
Sviluppatore 13
Valutazioni
(250)
Progetti
256
30%
Arbitraggio
0
In ritardo
3
1%
Gratuito
Pubblicati: 2 codici
14
Sviluppatore 14
Valutazioni
(3)
Progetti
1
0%
Arbitraggio
5
0% / 100%
In ritardo
0
Gratuito
15
Sviluppatore 15
Valutazioni
(1278)
Progetti
1698
49%
Arbitraggio
52
71% / 12%
In ritardo
37
2%
In elaborazione
16
Sviluppatore 16
Valutazioni
(3)
Progetti
3
67%
Arbitraggio
0
In ritardo
0
Gratuito
17
Sviluppatore 17
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
18
Sviluppatore 18
Valutazioni
(43)
Progetti
49
29%
Arbitraggio
4
25% / 25%
In ritardo
0
Gratuito
19
Sviluppatore 19
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
20
Sviluppatore 20
Valutazioni
(1928)
Progetti
3549
88%
Arbitraggio
73
40% / 15%
In ritardo
268
8%
Gratuito
21
Sviluppatore 21
Valutazioni
Progetti
1
0%
Arbitraggio
1
0% / 100%
In ritardo
1
100%
Gratuito
22
Sviluppatore 22
Valutazioni
(1)
Progetti
2
0%
Arbitraggio
1
0% / 100%
In ritardo
0
Gratuito
Pubblicati: 2 codici
23
Sviluppatore 23
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
24
Sviluppatore 24
Valutazioni
(25)
Progetti
29
21%
Arbitraggio
20
10% / 50%
In ritardo
8
28%
In elaborazione
Ordini simili
The indicator a bit inverted. But it doesn’t matter to me as long as the winrate make sense for investment. For brief details regarding the indicator. What should have been a sell, i inverted it into buy with sl and tp swapped(only change the name of sl and tp for visualisation , but the code still on right tp and sl) . And in script ive inverted the signal command code. But the trouble is the tp and sl cant be
All other Necessary filters already coded , Mostly it is referring to another expert copy pasting . Live Chart Optimization . Optimization from Signal Trigger Point . Apply to stay ahead . While applying please explain the correct trailing stop loss for value gap entries
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
I am looking for a professional MQL5 developer to build a structured MT5 Expert Advisor. This is NOT a martingale or high-risk grid bot. Platform: • MT5 only (MQL5 source code required) Symbols: • XAUUSD • GBPUSD • GBPJPY Timeframe: • M5 Risk Management: • Adjustable risk per trade (default 0.5% equity) • Daily drawdown protection (max 3%, auto-lock trading for the day) • Maximum 2 open trades • Minimum 120 seconds
Hello, I need a MetaTrader 5 manual trading assistant panel (NOT an auto trading EA). MAIN IDEA This tool should work like the TradingView long/short position tool inside MT5. Trader workflow: 1) Enter Risk % 2) Enter RR ratio 3) Click SET ENTRY 4) Drag Stop Loss line on chart 5) Lot size and Take Profit calculate automatically 6) Press BUY or SELL to execute trade No trailing stop, no breakeven, no automatic trade
Requirements: - Convert my written trading rules into TradingView Pine strategy - Then convert into MT5 EA - Entry must be next candle open after signal candle close - Stop loss on signal candle high/low - Position sizing: fixed % risk per trade - Portfolio risk cap across symbols - One trade per symbol at a time - Must understand backtesting differences (spread, slippage, fill logic) Important: I want to be able to
Data Integrity 500 - 1000 USD
The trading bot is an automated software system designed to monitor financial markets, execute trades, and manage risk based on predefined strategies. The bot aims to maximize profits while minimizing human intervention and emotional decision-making. Scope: Supports automated trading on selected exchanges (e.g., Binance, Bitget, Coinbase). Executes trades based on technical indicators, signals, or AI models. Provides
Would it be possible to connect Futures prop firm with Rithmic or Tradeovate platform to Ninjatrader automated trading ? If anyone can do this for me I will be happy to get started with the person right away
Saya ingin dibuatkan Expert Advisor untuk MetaTrader 5 berbasis strategi EMA 50/200 + Breakout 20 candle dengan sistem risk percentage otomatis. EA harus memiliki fitur ATR stop loss, trailing stop, break even, max spread filter, dan daily loss limit. Dilarang menggunakan martingale, grid, atau averaging. Target RR minimal 1:2 dan drawdown di bawah 20%

Informazioni sul progetto

Budget
30 - 200 USD

Cliente

Ordini effettuati1
Numero di arbitraggi0