İş tamamlandı
Tamamlanma süresi: 2 gün
Müşteri tarafından geri bildirim
Cannot Complain Very happy. Went above and beyond for me.
Will hire again if needed.
Geliştirici tarafından geri bildirim
Thank you for the order, my Friend. 5-star customer.
Şartname
I need a dynamic lot size for my expert advisor with 3 input options:
1. fixed lot size (0.01)
if my account balance is $100,000 & I want to risk 0.01 lots per trade
2. Volume based on money ($1000) Example:
if my account balance is $100,000 & I want to risk $1000 of my account per trade (0.01 volume)
3. volume based on account percent (1%) Example:
if my account balance is $100,000 & I want to risk 1% of my account per trade (0.01 volume)
Most of the code has already been done, it just doesn't do what i want it to...
Heres The Code:
input group "General Settings" // General Setting Input Grouping
enum LOT_MODE_ENUM{ // Options
LOT_MODE_FIXED, // Fixed Lots
LOT_MODE_MONEY, // Lots Based On Money
LOT_MODE_PCT_ACCOUNT // Lots Based On % Of Account
};
input LOT_MODE_ENUM LotMode = LOT_MODE_FIXED; // Lot Mode Option
input double FixedLots = 0.01; // Lots
input double Money = 1000; // Money
input double PercentOfAccount = 5; // Percent
input double AccountBalance = 100000; // your account balance
-------------------------Functions-------------------------------
// Calculate Lots
bool CalculateLots(double slDistance, double &lots){
lots = 0.0;
if(LotMode==LOT_MODE_FIXED){
lots = FixedLots;
}
else{
double tickSize = SymbolInfoDouble(_Symbol,SYMBOL_TRADE_TICK_SIZE);
double tickValue = SymbolInfoDouble(_Symbol,SYMBOL_TRADE_TICK_VALUE);
double volumeStep = SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_STEP);
double riskMoney = LotMode==LOT_MODE_MONEY ? Money : AccountInfoDouble(ACCOUNT_BALANCE) * PercentOfAccount * 0.01;
double moneyVolumeStep = (slDistance / tickSize) * tickValue * volumeStep;
lots = MathFloor(riskMoney/moneyVolumeStep) * volumeStep;
}
// Check Calculated lots
if(!CheckLots(lots)){return false;}
return true;
}
// Check Lots For Min, Max And Step
bool CheckLots(double &lots){
double min = SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MIN);
double max = SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MAX);
double step = SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_STEP);
if(lots<min){
Print("Lot Size Will Be Set To The Minimum Allowable Volume");
lots = min;
return true;
}
if(lots>max){
lots = max;
Print("Lot Size Will Be Set To The Maximum Allowable Volume");
return false;
}
lots = (int)MathFloor(lots/step) * step;
return true;
}
// Calculate Lots - Paste in between "calc sl & tp" & "Open buy positions"
double lots;
if(!CalculateLots(lastTick.bid-sl,lots)){return;}
// Calculate Lots - Paste in between "calc sl & tp" & "Open sell positions"
double lots;
if(!CalculateLots(sl-lastTick.ask,lots)){return;}
Yanıtlandı
1
Derecelendirme
Projeler
351
29%
Arabuluculuk
37
27%
/
65%
Süresi dolmuş
10
3%
Yüklendi
2
Derecelendirme
Projeler
123
31%
Arabuluculuk
7
29%
/
29%
Süresi dolmuş
5
4%
Çalışıyor
3
Derecelendirme
Projeler
90
29%
Arabuluculuk
24
13%
/
58%
Süresi dolmuş
7
8%
Çalışıyor
4
Derecelendirme
Projeler
28
36%
Arabuluculuk
7
14%
/
71%
Süresi dolmuş
2
7%
Serbest
Benzer siparişler
I currently sell a white-label XAUUSD EA, but the existing supplier owns the source code. I now need a new, independently developed EA and licensing system that my company fully owns and controls. I am not requesting decompilation or copying of proprietary code. Existing settings, presets and trading examples will be provided as reference. The developer must first identify any missing strategy rules before
UnixFirmanMln
30 - 200 USD
I am an MQL5 Developer specializing in Forex trading automation, Expert Advisors, custom indicators, and trading strategy optimization. I provide services for developing, debugging, modifying, and improving trading robots and indicators. My technical skills include MQL5, C++, Linux, algorithmic trading logic, debugging, and performance optimization. I pay close attention to trading rules, execution logic, risk
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
Mr quetta
100+ USD
Yes, that is exactly what I need. The bot should not be restricted to a fixed list of currency pairs. It should technically scan all available Quotex pairs in real time and automatically select the pair where the market conditions are strongest. The bot should analyze each pair using multiple confirmations, such as short-term price momentum, trend direction, market structure, support/resistance, candle formation
Scalping Reaction Zones + Valid Order Blocks
30 - 150 USD
Platform: TradingView Programming Language: Pine Script v6 Type: Custom Indicator Project Name: Scalping Reaction Zones + Valid Order Blocks MAIN GOAL I need a custom TradingView indicator for scalping. The indicator must detect: 1. Reaction / Explosion Zones 2. Valid Order Blocks 3. Combined Reaction Zone + Order Block zones The indicator should NOT generate: Buy signals Sell signals TP SL Entry signals Trading
Hello, I trade on HFM MT5. Need SCALPING EA for scalping, budget $30. SYMBOLS: XAUUSD (GOLD), US30, NAS100, GER40, EURUSD TIMEFRAME: M1 and M5 PLATFORM: MT5, must work on HFM VPS STRATEGY: - EMA 9 crosses EMA 21 - RSI 14: BUY only if RSI >45, SELL only if RSI <55 - Bollinger Bands: Only trade when price returns inside BB after breakout - 1 trade at a time per symbol - SL: 150 points Gold / 100 points indices (must be
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
Proje bilgisi
Bütçe
30+ USD
Son teslim tarihi
from 1 to 7 gün