Auftrag beendet
Ausführungszeit 17 Stunden
Bewertung des Kunden
Very good, fast work. Will use again in future.
Spezifikation
#property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Red #property indicator_color2 LimeGreen //---- extern bool Show_Alert = true; //---- buffers double upArrow[]; double downArrow[]; string PatternText[5000]; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { SetIndexStyle(0, DRAW_ARROW, 0, 1); SetIndexArrow(0, 234); SetIndexBuffer(0, downArrow); //---- SetIndexStyle(1, DRAW_ARROW, 0, 1); SetIndexArrow(1, 233); SetIndexBuffer(1, upArrow); return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { ObjectsDeleteAll(0, OBJ_TEXT); return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { double Range, AvgRange; int counter, setalert; static datetime prevtime = 0; int shift; int shift1; int shift2; int shift3; int shift4; double mid1, mid2, mid3, mid4, shift1percent, V1, V2; string pattern, period; int setPattern = 0; int alert = 0; int arrowShift; int textShift; double O, O1, O2, C, C1, C2, L, L1, L2, H, H1, H2; //---- if(prevtime == Time[0]) { return(0); } prevtime = Time[0]; //---- switch(Period()) { case 1: period = "M1"; break; case 5: period = "M5"; break; case 15: period = "M15"; break; case 30: period = "M30"; break; case 60: period = "H1"; break; case 240: period = "H4"; break; case 1440: period = "D1"; break; case 10080: period = "W1"; break; case 43200: period = "MN"; break; } //---- for(int j = 0; j < Bars; j++) { PatternText[j] = j; } //---- for(shift = 0; shift < Bars; shift++) { setalert = 0; counter = shift; Range = 0; AvgRange = 0; for(counter = shift; counter <= shift + 9; counter++) { AvgRange = AvgRange + MathAbs(High[counter] - Low[counter]); } Range = AvgRange / 10; shift1 = shift + 1; shift2 = shift + 2; shift3 = shift + 3; shift4 = shift + 4; mid1 = Low[shift1]+((High[shift1]-Low[shift1])/2); mid2 = Low[shift2]+((High[shift2]-Low[shift2])/2); mid3 = Low[shift3]+((High[shift3]-Low[shift3])/2); mid4 = Low[shift4]+((High[shift4]-Low[shift4])/2); shift1percent = (High[shift1]-Low[shift1])/100 ; O = Open[shift1]; O1 = Open[shift2]; O2 = Open[shift3]; H = High[shift1]; H1 = High[shift2]; H2 = High[shift3]; L = Low[shift1]; L1 = Low[shift2]; L2 = Low[shift3]; C = Close[shift1]; C1 = Close[shift2]; C2 = Close[shift3]; V1 = Volume[shift1]; V2 = Volume[shift2]; if((mid1 < mid2) && (mid1 < mid3) && (mid1 < mid4) && (C < (mid1-1*shift1percent)) && (V1 > V2) && (O > C) ) { // ObjectCreate(PatternText[shift], OBJ_TEXT, 0, Time[shift1], // High[shift1] + Range*1.5); // ObjectSetText(PatternText[shift], DoubleToStr(V2,5), 10, // "Times New Roman", Red); downArrow[shift1] = High[shift1] + Range*0.5; if(setalert == 0 && Show_Alert == true) { pattern = "Down Jump Bar"; setalert = 1; } } if((mid1 > mid2) && (mid1 > mid3) && (mid1 > mid4) && (C > (mid1+1*shift1percent)) && (V1 > V2) && (O < C) ) { // ObjectCreate(PatternText[shift], OBJ_TEXT, 0, Time[shift1], // High[shift1] + Range*1.5); // ObjectSetText(PatternText[shift], DoubleToStr(V2,5), 10, // "Times New Roman", Red); upArrow[shift1] = Low[shift1] - Range*0.5; if(setalert == 0 && Show_Alert == true) { pattern = "Up Jump Bar"; setalert = 1; } } if(setalert == 1 && shift == 0) { Alert(Symbol(), " ", period, " ", pattern); setalert = 0; } } // End of for loop return(0); } //+------------------------------------------------------------------+Looking to turn this Indi into an EA. EA enters trade when an opposing arrow is formed, red down arrow is a sell trade, green up arrow a buy trade. Stop loss is placed above/below recent high/low. EA will exit a trade when an opposing arrow is formed to that of the direction of the trade and trade in the opposite direction. Take Profits will be handled manually. Lot size will be equal to 1% of Equity/Stop loss pips. Please let me know if you need further information. MW.
Bewerbungen
1
Bewertung
Projekte
624
38%
Schlichtung
40
23%
/
65%
Frist nicht eingehalten
93
15%
Frei
Veröffentlicht: 4 Artikel, 19 Beispiele
2
Bewertung
Projekte
18
61%
Schlichtung
1
0%
/
100%
Frist nicht eingehalten
6
33%
Frei
Ähnliche Aufträge
Self sufficient Trading robot
30+ USD
1. The idea of the trading system is as follows : market entries are performed when MACD's main and signal lines intersect in the current trend direction . 2. Trend is determined based on the Exponential Moving Average with the specified period (InpMATrendPeriod). If the current EMA value is greater than the previous one, the trend is seen as growing (ema_current > ema_previous). Alternatively, if current EMA is
I am looking for a highly experienced developer with proven AI / Machine Learning expertise applied to financial markets to work with me on building an AI-driven trading EA for MT5 . This is NOT a traditional indicator-based EA and NOT a signal provider role. The objective is to build an AI/ML system that generates trade signals , which will then be executed automatically by an MT5 Expert Advisor . I am specifically
Zaki boot
30+ USD
//+------------------------------------------------------------------+ //| XAUUSD Safe Scalp - TP $2 / SL 60 points | //+------------------------------------------------------------------+ #include <Trade\Trade.mqh> CTrade trade; // ===== Inputs ===== input double LotSize = 0.01; input int StopLoss = 60; // points input double DollarTP = 2.0; // ربح بالدولار input int MAPeriod = 50; input
1. **Indicator Integration**: The EA should be developed utilizing the Bheurekso pattern indicator. 2. **Sell Signals**: The EA must execute a sell order upon the appearance of any of the following bearish signals or a down arrow that appears on the chart: - Bearish Engulfing - Bear Cross - Bearish Dark Cloud - Bearish Shooting Star - Bearish Harami - Bearish Evening Star - Bearish Hanging Man 3. **Buy
Looking for an experienced MQL5 developer to analyze and reverse-engineer the trading logic of an existing scalping Zone Recovery EA using Moving Averages and Bollinger Bands, and then rebuild it
I will do with my pleasure you don't take tension i will see it . Will buy your profitable/sell indicator+source code (non repaint) ksbbssnsn ksksnsnsn isksnsns isjsjsdb isksnsns ksksjsbs jdkdjdj jdjdj idjsjdn ocmfnfb onsndodm oksnsdbbd
Need clean well comented EA, with source code, after delivery need 7 days for testing, if need further support or modify, developer should do it, The Rsi, atr, based, with volatility filter
MT4 and MT5 copier
100+ USD
hello great developer I’m looking for an experienced developer to build a high-speed trade copier that works both ways between MT4 and MT5 . The copier must support: MT4 → MT5 MT5 → MT4 MT5 → MT5 (example: Blueberry MT5 → FTMO MT5) The system will run on my own VPS (local copier, not cloud-based). Key Requirements Real-time / fast execution (low latency) Two-way copying (MT4 ↔ MT5) Support for multiple brokers
Create trading alerts straight to phone
30 - 200 USD
European Central Bank (ECB) Interest Rate Decision The European Central Bank left interest rates unchanged at its first policy meeting of 2026, in line with expectations. source: https://www.mql5.com/en/economic-calendar/european-union/ecb-interest-rate-decision '407332776' : added order #481999464 sell 0.01 BTCUSDm at market
I’m looking for developer to build an AI-assisted trading system for Metatader 5 . You to deliver, working MT5 module, AI module (Python or compatible), source codes for both This phase is focused strictly on core logic and AI integration , not UI or dashboards. Kindly reach out only if you have experience on AI integration and prove of past work
Projektdetails
Budget
10 - 30 USD
Ausführungsfristen
von 1 bis 3 Tag(e)