İş tamamlandı
Tamamlanma süresi: 17 saat
Müşteri tarafından geri bildirim
Very good, fast work. Will use again in future.
İş Gereklilikleri
#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.
Yanıtlandı
1
Derecelendirme
Projeler
624
38%
Arabuluculuk
40
23%
/
65%
Süresi dolmuş
93
15%
Serbest
Yayınlandı: 4 makale, 19 kod
2
Derecelendirme
Projeler
18
61%
Arabuluculuk
1
0%
/
100%
Süresi dolmuş
6
33%
Serbest
Benzer siparişler
Make me a Money Machine
30+ USD
(15M + 1H Support & Resistance + Liquidity Wick + Trailing SL) 🎯 Objective Develop an MT5 Expert Advisor (MQL5) for XAUUSD (Gold) based on 15-minute liquidity rejection at H1/M15 Support & Resistance zones , with candle-close based trailing stop loss . 📊 On-Chart Display Detected Support & Resistance zones Trade direction Current SL & trailing level Active session 🔐 Risk Rules Only one trade per signal No
Hi, im not looking into developing a new EA. I am looking into purchasing an existing EA that can deliver such results like: mq5 source, 4 year backtest 2021‑2025 report, equity curve, trade list, strategy description, and 1‑month demo access. i need a concrete prove of experience functioning existing EA working perfectly and as contained on my description, then we can't strike a deal. Thank you
I’m looking for an experienced EA developer to develop a hedging Expert Advisor for XAUUSD , designed with the primary objective of maximizing broker commission rebates while maintaining overall account profitability . The EA should: Trade XAUUSD only Use a hedging strategy (frequent buy/sell positions) Be optimized for high trading volume to “milk” broker commissions Still aim to keep the net account profitable or
1.Session high low will use GMT time as range. I am not sure how the EA will handle the DST. When GMT+1 is xx:00 - xx:00 When GMT is xx:00 - xx:00 above is Asia range. When GMT+1 is xx: 00 - xx:00 When GMT is xx:00 - xx:00 Above is London range. Entry windows one for London Session and one for NY Session Emas for bias Fractals indicator for invalidation We will discuss more later
I need profitable EA ready made
300 - 3000 USD
Hello all developers! I need a profitable EA ready made, I am paying good, but only serious offer please. In first message please send me backtesting resaults and demo version. If you will not do this your application will be rejected, no exceptions. Source of code of course required
AGREGAR SISTEMA DE MARTINGALA
30 - 45 USD
Buen día. Busco un desarrollador para agregar sistema de Martingala a un Bot de MT4, sin poseer el código fuente, solo el archivo EX4. Mas detalles en mensaje privado, agradezco la atención prestada
Simlple Custom Indicator
30 - 40 USD
I need an MQL5 indicator that identifies reversals without repainting or placing signals with an offset. The goal is to minimize lag and reduce whipsaw trades. Desired results are similar to the attached image. Requirements: - No repainting - No signal offset - Emphasis on reducing lag - MQL5 compatible - Clear, concise code If you have the expertise to create a reliable, high-performance indicator, let's discuss
Modify my EA to scale in once profitable
30 - 50 USD
want a highly profitable EA; price is not an issue, as long as you can prove it and send me a demo for me to test. You need to prove yourself first. The EA needs a year of stable backtesting
Hello all developers! I am looking for a ready-made, profitable Expert Advisor designed for prop firm trading . The EA must be tested, stable, and compliant with prop firm rules. Only serious, proven offers with real results are welcome
MT5 EA Development Project
70+ USD
I am looking for a skilled EA developer to program an automated trading system. The project will involve integrating a proprietary indicator that I will provide, along with clear instructions outlining how trades should be handled. The EA must operate solely on the 1-minute (M1 / 60-second) chart and react only to the indicator’s signals. Key requirements: Trade entries must be triggered exclusively by the indicator
Proje bilgisi
Bütçe
10 - 30 USD
Son teslim tarihi
from 1 to 3 gün