指定

should set up automated trading ea from these points and attached ea.

if price simply trends up, or there is a news break or a spike, the ea triggers buys. then,
if it immediately spikes down, or simply trends down, it should close buys at profit,
after inserting a trail as a backup stop loss, or the breakeven (plus swap and
commissions).  then opens the sells, and will do this both directions, similar to oco. 

all done within the one minute candle or at the end of it. it should not be done during several candles, nor during several hours, nor several days.
 
add a user defined input for RiskPercent.

maximum number of trades that the ea can continue to open, must be based on
RiskPercent, balance, available equity, margin requirements, and number of open trades.

ea should calculate profit for up to five digits pip movements correctly and include
lot, swap, and commissions.

ea should adjust for two, three, and five digit prices.

currently, you should note that, the ea is closing trades at a loss. it is opening opposite
 trades, locking them (hedge), holding and closing them at a loss.

ea should not open opposite trades and lock them (hedge). ea is draining the balance out. 
that is not good.

ea should start working with a balance as low as $150,00., or lower, and the margin
of 1:300. 

ea must calculate lot per trade based on balance, available equity, margin
requirements, number of open trades, and the user defined lot input and RiskPercent.

basically, the ea should be able to follow consecutive ticks in the direction of profit.

if necessary, you should set up other indicators, or replace the current ones.

use these user defined inputs:
MaxSpread = 0;
UseMaxLoss = ;
MaxLoss = 0;
UseMaxPipsLoss = ;
MaxPipsLoss = 0;
LotSize = 0.01 ;
RiskPercent = 0.0 ;
slippage = 0;
StopLoss = 0 ;
TakeProfit = 0;
UseMoveToBreakeven = ;
BreakEven = 0;
BreakPips = 0;
UseTrailing = ;
TrailStop = 0 ;
TrailStep = 0 ;
MaxTrades = 0 ;
please show debug errors in ea terminal journal for at least opening, closing, and modifying orders, receiving tick data, price feeds, and broker connection status.

ファイル:

応答済み

1
開発者 1
評価
(361)
プロジェクト
644
26%
仲裁
92
72% / 14%
期限切れ
12
2%
仕事中
パブリッシュした人: 1 code
2
開発者 2
評価
(33)
プロジェクト
35
40%
仲裁
11
9% / 91%
期限切れ
4
11%
パブリッシュした人: 4 codes
3
開発者 3
評価
(43)
プロジェクト
74
50%
仲裁
5
0% / 60%
期限切れ
19
26%
4
開発者 4
評価
(73)
プロジェクト
257
53%
仲裁
16
50% / 38%
期限切れ
83
32%
5
開発者 5
評価
(17)
プロジェクト
24
33%
仲裁
5
20% / 40%
期限切れ
8
33%
6
開発者 6
評価
プロジェクト
0
0%
仲裁
1
0% / 0%
期限切れ
0
7
開発者 7
評価
(4)
プロジェクト
6
0%
仲裁
2
0% / 50%
期限切れ
4
67%
8
開発者 8
評価
(221)
プロジェクト
369
66%
仲裁
10
50% / 0%
期限切れ
46
12%
9
開発者 9
評価
(58)
プロジェクト
77
44%
仲裁
12
8% / 50%
期限切れ
12
16%
類似した注文
i need some tradingview strategy that i want to use as a tester, i have something that i am working on currently and i need someone that can provide me with tradingview strategies that doesn't have a win rate, the one with 1:1 RR it need to have low win rate like 10% or 5% profitability, i am not paying $30 for,i dont have up to that for this cause i only want to use it as a test, if anyone have any to send me please
hello i need help building a ea bot for mt5 and i have started on claude but i will need someone if a incredible experience to make my ideas come to live. please contact so we can schedule a quick call and i can share anything that concerns you for the task
I am looking for someone with real experience developing strategies, indicators, or trading tools for Quantower . The strategy itself is relatively simple. The main issue is that I need to use some of Quantower's functions and API capabilities to program the strategy, but there is limited documentation available for some of the functionality, and I do not have enough time to fully understand the API and implement
I am looking for an experienced MQL5 developer who can BOTH research trading strategies and develop a commercial-quality MetaTrader 5 Expert Advisor. This is NOT simply a coding job. The developer is free to choose the trading logic, indicators, entry method, exit method, timeframe architecture and strategy type. I do not require the EA to copy or resemble any existing commercial EA. My priority is: ROBUST LONG-TERM
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
I am looking to acquire an EXISTING and PROVEN MetaTrader 5 Expert Advisor. I am NOT looking for someone to develop a random new strategy from scratch. The objective is to find a robust EA with an existing track record, verify its performance and robustness, and purchase the MQL5 source code together with clearly defined commercial rights. MAIN REQUIREMENTS The EA should meet most or all of the following
Looking to acquire an existing, proven EA. Not looking for new strategy development. REQUIREMENTS — non-negotiable: Minimum 12 months verified LIVE history (Myfxbook or MQL5 Signals, real money — not demo, not backtest) Hard stop loss on EVERY trade, set at order placement NO martingale, NO grid, NO averaging into losers, NO lot multiplication after a loss Max historical drawdown under 30% Minimum 5 trades per
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
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
//———————————————————————————————————————————————————————————————————— 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 () {

プロジェクト情報

予算
30 USD
締め切り
最低 2 最高 3 日