EA will take trades at first candle close in inverse to top and bottom hit
on a specified time frame
for multiple currency pairs
with %account based entry
and TP at center and top.
Must be able to work with other EAs.
I have ownership and rights for EA
Author will be recognized....informed if EA is to be monetized and contract for profit sharing will be in place before EA is monetized should this occur.
i get source code
EA usable on multi time frames
EA usable on multi pairs
Positions based on set size ... set % of account
If % of account is used. Max trades possible does not exceed 70% usage
TP 1 % of position user defined
math for % account and % TP will round TP 1 up to nearest 0.01 lot
the result should be that TP 2 is the the remaining lot size to the nearest 0.01 without going over limit allowed.
TP 2 % of position user defined
SL is a user defined set value
SL moves with profit. The SL is a finite # of pips lost
User defines minimum range in pips from bottom to top in order to execute trade entry.
User defines time frame robot operates on for each pair.
Ability to easily change this.
Ability to move entry and exit candle to a time frame other then the time frame the bot is working on.
Firstly you need to create a channel
I would have liked to have had a flowing channel. But i think this will cause redraws and give false numbers
Market is either in an upwards channel. a downwards channel. or a sideways channel.
Channel can only change what kind it is on candle close.
The Channel plotter i am currently using is the ForexRobotz.com FRZ channel auto plotter. Freeware.... default properties.
Let me be able to change colors and stuff ok.
Effective channel draw for any time frame
Actions.
Condition for Buy trade.
Market hits bottom of channel.
Take buy position on close of candle above channel
TP 1 price crosses center point.
TP 2 price hits top
Fail safe to close TP 2 at center should it recross center.
I wish to avoid TP 2 taking due to price dance at center. Fail safe actives at center + 20
Condition for Sell trade.
Market hits top of channel.
Take sell position on close of candle below the channel.
TP 1 price crosses center point.
TP 2 price hits bottom.
Fail safe to close TP 2 at center should it recross center.
I wish to avoid TP 2 taking due to price dance at center. Fail safe actives at center - 20
Ähnliche Aufträge
Part 1: Project setup Input settings (risk, stop loss, take profit, EMA periods) Indicator initialization Trade management framework Part 2: Trading logic EMA crossover detection Buy/Sell entry rules One-trade-per-symbol check Part 3: Risk management Automatic lot size calculation Stop-loss and take-profit placement Trade execution and error handling Part 4: Final touches On-screen information Optimization
I am looking for an experienced MQL4 or MQL5 developer to build a high-frequency (HFT) latency arbitrage Expert Advisor for cryptocurrency trading between LMAX and IC Markets. I need someone who understands low-latency execution, price feeds, slippage, spreads, and fast order execution. The basic idea is that LMAX acts as the leading price feed while IC Markets is the execution broker. The EA should constantly
Institutional‑Grade Multi‑Currency MT5 EA (A2SR + SMC + Smart Recovery + Smart Grid + Liquidity + Volatility + Safety Filters) Budget: AUD $1,500 – $2,000 (flexible) 1. EA Architecture EA runs one chart per symbol (NOT one EA controlling all symbols). Each chart instance manages its own: Recovery Grid Trend Volatility Liquidity Risk Logging EA must still respect global safety rules : Correlation protection Total
merhaba forex piyasası Ticaret yapmak için belirli algoritmalarla çalışan bir probot geliştirmek için deneyimli bir geliştiriciye ihtiyacım var beklentim, uzman piyasa bilgisine sahip bir uzmanın kafa derisi ticareti yapmak ve anlık fırsatları değerlendirmek istemesidir. kendisi için tasarladığı bir danışman incelenebilir veya geliştirdiği daha iyi bir fiyat üzerinde anlaşabiliriz. detaylı bilgi için iletişime
I am not looking for someone to simply code an MT5 Expert Advisor. I already know how to create EAs and can generate simple strategies myself. What I am looking for is someone with strong quantitative research and backtesting experience who can find and validate a robust trading strategy. Objective Your job is to research and test different entry models to find one that has a real statistical edge. I do not care
I am looking for an expert MQL5 developer to build a robust, professional Expert Advisor for Gold (XAUUSD). The EA must be Event-Driven (OnTick) with no 'Sleep' functions, ensuring instant execution. Core Logic: Grid Strategy: Start with 0.02 Buy/Sell. Lot size sequence: 0.02, 0.03, 0.05, 0.09, 0.14, 0.26, 0.44, 0.75, 1.28, 2.18 (Max 10 steps). Dynamic TP: Total basket TP must update instantly upon new order
I already have the source code of an MT5 Expert Advisor. The EA is about 70% complete. I need someone to modify and complete it. Requirements: • Manage EURUSD only. • Manage manual trades only (Magic Number = 0). • Support unlimited manual positions simultaneously. • Automatically add a 10-pip Stop Loss if a position has no Stop Loss. • Automatically add a 10-pip Take Profit if a position has no Take Profit. • Do not
I am looking for an expert MQL5 developer to build a robust, professional Expert Advisor for Gold (XAUUSD). The EA must be Event-Driven (OnTick) with no 'Sleep' functions, ensuring instant execution. Core Logic: Grid Strategy: Start with 0.02 Buy/Sell. Lot size sequence: 0.02, 0.03, 0.05, 0.09, 0.14, 0.26, 0.44, 0.75, 1.28, 2.18 (Max 10 steps). Dynamic TP: Total basket TP must update instantly upon new order
I am currently using the attached Arbitrage MACD indicator. However, there are no signal alerts associated with this indicator. I would like to receive notifications on my android device the bar after a blue long arrow appears and the bar after a red short arrow appears. This is the current code: //+------------+-----------------------------------------------------+ //| v.22.04.07 | ArrZZx2.mq4 |
double GetTodayProfit() { double profit = 0; datetime today = StringToTime(TimeToString(TimeCurrent(), TIME_DATE)); HistorySelect(today, TimeCurrent()); for(int i = HistoryDealsTotal() - 1; i >= 0; i--) { ulong ticket = HistoryDealGetTicket(i); if(HistoryDealGetString(ticket, DEAL_SYMBOL) == _Symbol) { profit += HistoryDealGetDouble(ticket, DEAL_PROFIT); } } return profit; }