Seasonality Forex Indicator
I want you to design a MT4 forex indicator based on seasonality.

Conditions:
1. The indicator uses monthly candles only
2. The indicator identifies the current month, e.g June, and goes back in history 10 year for the same month:
a. Year 1 = June 2020
b. Year 2 = June 2019
c. Year 3 = June 2018
d. Year 4 = June 2017 … continue this to year 10.
3. e.g if the current month is July, the indicator will go back in history 10 year for the same month:
a. Year 1 = July 2020
b. Year 2 = July 2019
c. Year 3 = July 2018
d. Year 4 = July 2017 … continue this to year 10.
4. For each year, use the monthly candle.
5. If the month’s candle for any year is bullish show green.
6. If the month’s candle for any year is bearish show red.
7. Do the same for all the currency symbol listed above.
8. Bull % column = ((number of green in a row for a currency pair)/10) *100
9. Bear % column = ((number of red in a row for a currency pair)/10) *100
10. Entry column = If Bull % > Bear %, then use the formula (Month0 High > Month1 High, && Month2 High > Month1 High)
a. If this is true for any currency pair, then let the cell color be green.
b. Send a buy entry pop-up notification for the currency pair.
11. Entry column = If Bull % < Bear %, then use the formula (Month0 Low < Month1 Low, && Month2 Low > Month1 Low)
a. If this is true for any currency pair, then let the cell color be red.
b. Send a sell entry pop-up notification for the currency pair.
Ordini simili
I need a reliable, clean-coded Expert Advisor built for both MetaTrader 4 and MetaTrader 5 platforms. Main trading behavior: The EA follows buy and sell arrows produced by my custom indicator. Whenever a buy arrow shows up on the chart: if a sell position is currently open → close that sell immediately and enter a buy trade in its place. Whenever a sell arrow appears: if a buy position exists → close the buy and
I need a AI signal generating bot for forex trading that use the latest ai technology to track real time forex market, analyse and give signals. The bot should operate such that when i put it in a chart it will analyse the market, after several minutes it will display whether the trade is buying or selling. It should display the one minute, five minute,15minute, 30 minute, one hour, 4 hours and daily time frame
step by step and structure this into a full IEEE 830 / ISO/IEC/IEEE 29148 style Requirements Specification. This format will include: Introduction System Overview Functional and Performance Requirements Traceability Matrix (linking requirements to test cases) Verification and Validation Compliance Standards 1. Introduction 1.1 Purpose The purpose of this document is to define the technical requirements for the
//+------------------------------------------------------------------+ //| Simple Robo Trader MT5 | //| Works on any pair & timeframe | //+------------------------------------------------------------------+ #property strict // Input settings input double LotSize = 0.01; input int FastMA = 10; input int SlowMA = 30; input int RSIPeriod = 14; input int StopLoss = 200; // in points input int TakeProfit = 400;// in
I am looking for an experienced MQL5 developer to convert a complex TradingView Pine Script (will provide the script from tradingview) into a fully automated MT5 Expert Advisor -bot. The TradingView script includes: Market Structure (BOS, CHoCH, Swing BOS) Strong / Weak High & Low Equilibrium (Premium / Discount zones) Volumetric Order Blocks Fair Value Gaps (FVG / VI / OG) Accumulation & Distribution zones Equal
// Add this to your EA after ExportState() function void SendToBase44(const string state, const string dir, double entry, double sl, double tp) { string url = " https://preview-sandbox--ee0a32a725b788974de435e8cef40b7a.base44.app/api/functions/receiveEAState "; string headers = "Content-Type: application/json\r\n"; string json = "{" "\"symbol\":\""+_Symbol+"\","