Job finished
Execution time 3 days
Hi,
I need a simple 2 Moving Average Crossover EA (2MAC).
It needs to open a position if the fast MA is above/below the slow MA and close if it crosses. Please note the MAs have to cross, not the prices.
Likewise, if the position is closed it means another position should be opened... etc etc. So ultimately there is always a trade at every cross over.
It should follow standard and efficient coding conventions/structures and include all the necessary functions an EA requires for live trading.
This EA should include basic functions and configurable settings such as:
1. MA settings (like FAST MA = 9 vs SLOW MA = 18).
2. Starting Lot size and incremental increase factor (like start at 0.10 lots and if in profit based on initial investment then increase lot size by 20% to next lot = 0.12 etc.
3. Maximum draw down based on total equity (may have multiple lots opened on other pairs or time-frames).
4. Trailing Stop settings if needed.
5. Auto Break Even Stop Loss at pre-defined pips once in profit territory (should also calculate and factor in the broker commissions and spread).
6. Basic Money Management options
7. Coloured arrows (not repainted) showing positions.
8. It should be scalable and able to be optimized for strategy testing.
I will get the winning coder to add other indicators to this EA later for a set fee every time.
Thanks.
Similar orders
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
Indicador Maximas e Minimas + Super Trend O Indicador MAX/MIN é um indicador de análise técnica para o MetaTrader 5 , desenvolvido para ajudar você a identificar regiões importantes de preço e possíveis oportunidades de compra e venda. O que ele faz MAX/MIN: identifica máximas e mínimas relevantes do mercado e mostra os preços no gráfico. HH / HL / LH / LL: ajuda a visualizar a estrutura do mercado, mostrando quando
//———————————————————————————————————————————————————————————————————— 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 () {
NinjaTrader 8 / NinjaScript Phase 1 build: convert an existing Auction Market Theory (AMT) strategy into objective, alert-only decision-support logic. Not a bot, no auto-execution — trades stay manual. Covers NQ/MNQ, ES, CL, MGC using 30-min TPO/Volume Profile context with 5-min confirmation: one 5-min close outside VAH/VAL = acceptance, close back inside = rejection. Dashboard shows bias, auction state, location