Looking for A developer to Create Complex and MultiSymbol Divergence EA with News Filter

MQL4 Experts

Specification

I will share the strategy and commence work with anyone that could correct this stochastic divergence function and has a good track record.                                                         bool CheckStochasticDivergence() {
    // Get the current swing high/low in price
    double currentPriceHigh = iHigh(_Symbol, _Period, 0);
    double currentPriceLow = iLow(_Symbol, _Period, 0);

    // Loop through the last X candles to find the previous swing high/low in price
    double prevPriceHigh = currentPriceHigh;
    double prevPriceLow = currentPriceLow;
    double currentStochK = iStochastic(_Symbol, _Period, KPeriod, DPeriod, Slowing, MODE_SMA, 0, MODE_MAIN, 0);
    double prevStochKHigh = currentStochK;
    double prevStochKLow = currentStochK;

    for (int i = 1; i <= CandlesToRetrace; i++) {
        if (iHigh(_Symbol, _Period, i) > prevPriceHigh) {
            prevPriceHigh = iHigh(_Symbol, _Period, i);
        }
        if (iLow(_Symbol, _Period, i) < prevPriceLow) {
            prevPriceLow = iLow(_Symbol, _Period, i);
        }
        double stochKValue = iStochastic(_Symbol, _Period, KPeriod, DPeriod, Slowing, MODE_SMA, 0, MODE_MAIN, i);
        if (stochKValue > prevStochKHigh) {
            prevStochKHigh = stochKValue;
        }
        if (stochKValue < prevStochKLow) {
            prevStochKLow = stochKValue;
        }
    }

    // Check for bullish divergence
    if (currentPriceLow < prevPriceLow && currentStochK > prevStochKLow) {
        return true; // Bullish divergence
    }
    // Check for bearish divergence
    else if (currentPriceHigh > prevPriceHigh && currentStochK < prevStochKHigh) {
        return true; // Bearish divergence
    }
    else {
        return false; // No divergence
    }
}

Responded

1
Developer 1
Rating
(10)
Projects
25
28%
Arbitration
1
0% / 0%
Overdue
1
4%
Loaded
2
Developer 2
Rating
(68)
Projects
79
9%
Arbitration
33
9% / 55%
Overdue
6
8%
Loaded
3
Developer 3
Rating
(339)
Projects
457
52%
Arbitration
22
50% / 27%
Overdue
5
1%
Loaded
4
Developer 4
Rating
(188)
Projects
308
15%
Arbitration
20
40% / 35%
Overdue
16
5%
Busy
5
Developer 5
Rating
(16)
Projects
24
17%
Arbitration
2
0% / 50%
Overdue
1
4%
Free
6
Developer 6
Rating
(119)
Projects
169
38%
Arbitration
9
78% / 22%
Overdue
15
9%
Free
7
Developer 7
Rating
(58)
Projects
82
54%
Arbitration
9
33% / 33%
Overdue
7
9%
Free
8
Developer 8
Rating
(87)
Projects
107
24%
Arbitration
8
38% / 25%
Overdue
8
7%
Working
9
Developer 9
Rating
(32)
Projects
35
54%
Arbitration
0
Overdue
1
3%
Free
10
Developer 10
Rating
(58)
Projects
178
71%
Arbitration
4
100% / 0%
Overdue
1
1%
Working
11
Developer 11
Rating
(23)
Projects
45
20%
Arbitration
24
29% / 46%
Overdue
12
27%
Free
12
Developer 12
Rating
(13)
Projects
17
12%
Arbitration
7
14% / 57%
Overdue
4
24%
Free
13
Developer 13
Rating
(197)
Projects
201
27%
Arbitration
0
Overdue
3
1%
Free
14
Developer 14
Rating
(455)
Projects
515
33%
Arbitration
26
38% / 46%
Overdue
7
1%
Loaded
15
Developer 15
Rating
(168)
Projects
192
11%
Arbitration
37
38% / 35%
Overdue
5
3%
Working
16
Developer 16
Rating
(5)
Projects
6
0%
Arbitration
1
100% / 0%
Overdue
0
Free
17
Developer 17
Rating
(3)
Projects
4
0%
Arbitration
0
Overdue
0
Free
18
Developer 18
Rating
Projects
1
0%
Arbitration
1
100% / 0%
Overdue
0
Free
19
Developer 19
Rating
(41)
Projects
88
14%
Arbitration
30
30% / 53%
Overdue
36
41%
Working
Similar orders
I'd like an EA that would give me a signal by arrow on where to enter a position to catch a spike on 1 and 5 minute timeframe, on deriv synthetics boom and crash, buy signals on and sell signals on crash. I'd also like the EA to highlight areas of support and resistance for me. In addition, I would like a notification sent to my MT5 whenever a spike signal comes up. If possible, a blue chart background would do
I have two EA (1. Quantium Ticks 2. Bagaceira), worked fine previously, but stop once the latest MT4 was issued. Can someone re-programme two EA to be compactable with the latest MT4 ( I believe it is 1420+) . Kind Regards, Aivars
Hi, I need to improve the code of an indicator that is too heavy when used with iCustom inside another indicator or EA, in order to make it run faster as possible. I'll provide indicator after job acceptance. I request final source code mql5 file. Thank you Regards
i give you mql4 code file add new moving avarage and then buy and sell both trade when ma in beetween band only buy when ma below band moving avarage only sell when ma above both band example in attached file also need tgt in percentage
Hi chaps, I am looking for an EA which has the following conditions for long/short conditions (this will be applied to a 30m chart FYI): ==Long Entry== Time is > NYOpenTime (configurable) Price has gapped up by (X%) from the last candle of the previous session This will be calculated onTick - so as soon as a gap of X% is spotted Open > Close by X% Price is in an uptrend as confirmed by EMA of length X (configurable)
I have a hedging strategy idea I would like coded but it is complicated and advanced, I have two EAs I would like the idea coded to. I would like the coder to be professional and fast. The hedging strategy consists of opening multiple orders mixed of buys & sells. Please be experienced and don't waste my time or yours
JUDE 100+ USD
Make me money for me and guide me through the trading explaining the chart to me helping me to sell buy and trading with you showing massage that there is a new trade
I am looking for an experienced Forex trading expert to help me configure, set up, and run a fully automated trading account. I am new to Forex trading and am eager to learn, so I am seeking someone who can not only set up the account but also provide guidance and education throughout the process
I have an EA that works with GRID, very simple strategy. THE JOB - This current EA is not closing both sides when TP is reached so would like to make this function work. The strategy : The Expert will start and generate a position of buy\sell at the same time when added to chart. The frist and last positions are considered scalping positions with a smaller TP just for the purpose of generating IB comisisons. After
I need a martingale EA to trade with my indicator. I will send you a model EA for you to follow how the martingale system should work. or you can come up with your martingale concept. Need EA in one hour since this is easy

Project information

Budget
300+ USD
For the developer
270 USD
Deadline
to 5 day(s)