hi im looking for a programmer to help me with create ea based on telegram signal. i have telegram signal that i would like to filler out signals and reverse it. Filter will be composed of three conditions.
First Condition. EA will look for telegram signal sent in the last 20 minutes, if the first and second signal are identical/same, the ea will open trade. the trade will be reversed.
For example, at 0800AM, telegram signal is BUY gold @ 1234.5
at 0810AM, second telegram signal is BUY gold @ 1234.5
Ea will open reverse order, EA will open Sell gold @ 1234.5
If, the signal is not identical or beyond time filter (20minutes) ea will not open trade. for example the second signal was Buy gold @ 1234.6, since its not identical, EA will not open trade. if the signal was more than 20 minutes from first signal,
ea will not open trade.
Second Condition. this could be same with the first condition or can be integrated. If the telegram send two identical signal @ the same time (means strong signal). Ea will open trade.
For example, @ 0800AM, telegram signal is BUY gold @ 1234.5
second signal at same time (0800AM) is BUY gold @ 1234.5
EA will open reverse order, EA will open Sell gold @ 1234.5
Third condition. EA will compare signal sent by telegram in the last 20 minutes. If the second SELL signal is higher than the first SELL signal in the last 20 minutes. EA will open BUY order (reverse).
if the second BUY signal is lower than the first signal, EA will open SELL order (reverse).
For example, @ 0800AM, telegram signal is BUY gold @ 1234.5
@ 0810AM. telegram signal is BUY gold @ 1234.4 (less than the first signal). EA will open SELL order.
IF the second signal is BUY gold @ 1234.6, EA will not open trade
Second example, @ 0800am, Telegram signal is SELL gold @ 1234.5
@ 0810am, telegram signal is SELL gold @ 1234.6 (greater than the first signal). EA will open BUY order.
If the second signal is SELL gold @ 1234.4, EA will not open trade.
Orders will be closed base on three conditions
1. stop loss, if the stop loss is hit, orders will be closed
2. trailing stop, orders will be trailed and close if the stop loss is hit.
3. orders will be closed by telegram signal, just be mindful that the trades are in reverse.
for example, I have open Buy position, if the telegram signal is BUY, this will be a reverse signal and should close my buy position.
additional request/filter
1. EA should support symbol mapping, for example, GOLD=XAUSD, CL=CRUDE
2. stop loss and trailing stop will be based on points. for example +10 points for 1234.5 is 1235.5, +10 points for 75.50 is 75.60
3. add time filter, EA will only trade on specific time. for example. ea will trade between 8-10am. should be able to add more time filter, like, trade between 8-10, paused for 1 hour and trade again 11-12.
4. TIME, Default 20minutes. this is the time which EA will filter out telegram signals
Pedidos semelhantes
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
I need an MT5 Expert Advisor for XAUUSD (Gold) running on an Exness account. STRATEGY LOGIC The exact entry and exit rules will be provided in writing before development starts. Please quote for a single rule-based strategy with clearly separated logic, so the rules can be adjusted later without rewriting the whole EA. RISK MANAGEMENT (this is the priority of the project) - Risk per trade as a percentage of account
Modification of Trade_Panel_7 7.05 Objective . I have this utility “Trade_Panel_7 7.05” with which I open and close positions. Please refer to attached “Trade Panel Modification.jpg”. It shows an input parameter “Volume Step”. This parameter has the initial value of 0.02 as shown. This feature needs to be amended. Present Status . Value of lot size is increased by this “Volume Step”. I have built a whole series of
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
I need a custom MetaTrader 5 indicator designed specifically for XAUUSD gold trading. The indicator should identify potential buy and sell opportunities, display clear entry and exit signals on the chart, provide alerts, and help identify market trends and possible reversals
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {