Spécifications
Heloo my friends,
I have an indicator and I want to put new simple conditions for BUY and SELL signal and make expert advisor.
Rules For Buy Signal
------- Bollinger Bands Rules - the user chooses the option (yes / no) ------------
1 Signal candle - it touches the Bottom Bollinger Band line (yes / no) - the user chooses the option
2 Minimum distance to the Upper Bollinger bands line in relation to the signal candle size - the user enters the minimum distance size in percent
- if I put 0.4 it means that distance to Upper BollingerBand Line is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to Bollinger Band UP bands is than 40 points for Buy signal
3 Maximum distance to the Upper Bollinger bands - same as the previous explanation
----------- Maximum number of same candle in a row - - the user chooses the option (yes / no) ------------
Maximum number (external input) of Berish candles in a row in the last x candle (external input) for Buy Signal
-------------------- Size of signal candle ------------------------------
SizeSignalCandleMax = 5 (if I put 5 it means that the size of signal candle is highest in the last 5 bars)
----------- Fractal Rules - the user chooses the option (yes / no) ------------
For Buy Signal Looking Only Fractal above of the High of signal candle
The distance to the nearest fractal in relation to the signal candle size - the user enters the minimum distance size in percent
= if I put 0.4 it means that distance to nearest fractal is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to nearest fractal is than 40 points
The value of nearest fractal is in the shadow of the signal candle (Shadow of BUY candle = High - Close of signal candle) - the user chooses the option (yes / no)
= If Not means that Nearest Fractal is not in the shadow of the candle
Rules For Sell Signal
------- Bollinger Bands Rules - the user chooses the option (yes / no) ------------
1 Signal candle - it touches the Upper Bollinger Band line (yes / no) - the user chooses the option
2 Minimum distance to the Bottom Bollinger bands line in relation to the signal candle size - the user enters the minimum distance size in percent
- if I put 0.4 it means that distance to Upper BollingerBand Line is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to Bollinger Band UP bands is than 40 points for Buy signal
3 Maximum distance to the Bottom Bollinger bands - same as the previous explanation
----------- Maximum number of Bulish candle in a row - - the user chooses the option (yes / no) ------------
Maximum number (external input) of Bulish candles (Close>Open) in a row in the last x candle (external input) for Buy Signal
-------------------- Size of signal candle - the user chooses the option (yes / no) ------------------------------
SizeSignalCandleMax = 5 (if I put 5 it means that the size of signal candle is highest in the last 5 bars)
----------- Fractal Rules - the user chooses the option (yes / no) ------------
For Sell Signal Looking Only Fractal Below of the Low of signal candle
The distance to the nearest fractal in relation to the signal candle size - the user enters the minimum distance size in percent
= if I put 0.4 it means that distance to nearest fractal is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to nearest fractal is than 40 points
The value of nearest fractal is in the shadow of the signal candle (Shadow of SELL signal candle = Close - Low of signal candle) - the user chooses the option (yes / no)
= If Not means that Nearest Fractal is not in the shadow of the candle
Indicator sometimes have massage "array out of range error" .
Solve this problem something like;
int OnCalculate(const int rates_total,
const int prev_calculated....
int limit =MathMax(rates_total-prev_calculated,2)
or other way.
Also I have alert every tick but I want only once alert per signal.
Custom indicator inputs
------ Boingbands ---------------
UseBollingerBands = user choise true of false
BollingerBandsperiod = custom input (applay to close)
TuchBollingerBands = 0 or 1 (0 not tuch BB , 1 = tuch BB)
MinDistanceBB = custom input (size in procent of main candle (high - low)) for min distance
= if I put 0.4 it means that distance to BollingerBand is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to Bollinger Band UP bands is than 40 points for Buy signal
= distance formula for UP signal something like (UP BollingerBand value - High (of signal candle))/(High - Low of candle)
= distance formula for DOWN signal something like (Low (of signal candle) - DOWN BollingerBand value)/(High - Low of candle)
MaxDistanceBB = custom input (size in procent of main candle (high - low)) for max distance do BB
--- NumberOfSameCandleInaRow --
UseNumberOfSameCandleInaRow = true
NumberOfCandleForAnalyse = 20
MaxNumberOfBerishCandle = 9 (use only for Buy Signal)
MaxNumberOfBulishCandle = 9 (use only for SellSignal)
Example
If I put
MaxNumberOfCandleForAnalyse = 21
MaxNumberOfBerishCandle = 4 (use only for Buy Signal)
It means that I am looking Buy Signal that have max 9 BerishCandle in a Row in last 21 candle
------------------------------------------
UseSizeSignalCandle = the user chooses the option (yes / no)
SizeSignalCandleMax = 5 (if I put 5 it means that the size of signal candle is highest in the last 5 bars)
------------- Fractal -------------
UseFractal = true of false
NumberOfCandleForAnalyseFractal = 50 (looking for last 50 candles)
MinDistanceFractal = custom input (size in procent of main candle (high - low)) for min distance
= if I put 0.4 it means that distance to Nearest Fractal is 40% percent of candle size (high i low) - if size of main candle is 100 points- min distance to Fractal is than 40 pints
= For Buy Signal Looking Only Fractal above of the High of signal candle
= For Sell Signal Looking Only Fractal Below of the Low of signal candle
FractalInShadowOfTheCandle = Yes / No
= If No means that Nearest Fractal is not in the shadow of the signal candle (shadow for Buy 0 High - Close ; Close - Low for Sell)
When I confirm that indicator is OK then make expert advisor.
Indicator and Expert must be in MQL4 file format not in .exe format.
--------------- Creating an expert advisor --------------
Creating an expert advisor with the signal of the indicator we have made
Creating an expert advisor
Main Inputs
the user chooses the option what to use (lots or percent)
Open One Order
Lots =0.1; (user put)
MaximumRisk =0.02; (user put in percent) 0.02 means 2% risk
All order are pending order. It should be For Sell Signal are Sell Stop or Buy Stop for Buy Signal
PendingOrder = custom input in percent of size of signal candle (size in procent of main candle (high - low)). Like Fibonaci
= For Sell signal if I put 0.05 (means 5% percent of signal candle size) it means that I open a trade 5point below of the Low of signal candle (if size of signal candle is 100 points)
= For Buy signal if I put 0.05 (means 5% percent of signal candle size) it means that I open a trade 5 point above of the High of signal candle (if size of signal candle is 100 points)
TakeprofitLevel = custom input in percent of size of signal candle (size in procent of main candle (high - low)). Like Fibonaci levels
= For Sell signal if I put 1.9 (means 190% percent of signal candle size) it means that I take profit 190 point below of the Low of signal candle (if size of signal candle is 100 points). Risk/Reward 1,9
= For Buy signal if I put 1.9 (means 190% percent of signal candle size) it means that I take profit 190 point above of the High of signal candle (if size of signal candle is 100 points)
StopLoss = custom input in percent of size of signal candle (size in procent of main candle (high - low))
= For Sell signal if I put 0.05 (means 5% percent of signal candle size) it means that StopLoss is 5 point Above of the High of signal candle (if size of signal candle is 100 points)
= For Buy signal if I put 0.05 (means 5% percent of signal candle size) it means that StopLoss is 5 point Below of the Low of signal candle (if size of signal candle is 100 points)
UseStopLossLevels = the user chooses the option (yes or no)
StopLossLevel1 = 1.00 custom input in percent of size of signal candle (size in procent of main candle (high - low))
StopLoss1 = -0.60 custom input in percent of size of signal candle (size in procent of main candle (high - low)) Like Fibonaci retracment
= Above means = For Buy signal if I put 1.00 (means 100% percent of signal candle size) it means that signal is 100 point Above of the High of signal candle (if size of signal candle is 100 points)
= and expert put new Stopp Loss na 60 points below of the high of signal candle
= Above means = For Sell signal if I put 1.00 (means 100% percent of signal candle size) it means that signal is 100 point below of the Low of signal candle (if size of signal candle is 100 points)
= and expert put new Stopp Loss na 60 points Above of the Low of signal candle
StopLossLevel2 = 1.90 custom input in percent of size of signal candle
StopLoss2 = break even
MaxSpread = 0.10 custom input in percent of size of signal candle (0.10 means 10% of signal candle in points)
MaxPeriodOfTime = 7 - max number of candle need to open order. If not open cancel pending order
Important: if signal before opening order touching High of candle For Sell Signal cancel pending order
if signal before opening order touching Low of candle For Buy Signal cancel pending order
Expert must be working in the same time in same currency pairs (in separate windows)
Important: All distance (pending order, stop loss, take profit, BB, fractal ....) are in percent of main size of signal candle in points from high or low of the signal candle (depending on BUY or SELL signal)
I will put some pictures to see this rules if you have job.
Répondu
1
Évaluation
Projets
370
42%
Arbitrage
145
17%
/
41%
En retard
124
34%
Gratuit
Publié : 38 codes
2
Évaluation
Projets
144
38%
Arbitrage
67
15%
/
48%
En retard
55
38%
Gratuit
3
Évaluation
Projets
87
39%
Arbitrage
3
0%
/
33%
En retard
29
33%
Gratuit
4
Évaluation
Projets
148
59%
Arbitrage
16
38%
/
13%
En retard
25
17%
Gratuit
Publié : 1 code
5
Évaluation
Projets
66
30%
Arbitrage
2
0%
/
0%
En retard
0
Gratuit
6
Évaluation
Projets
4
25%
Arbitrage
2
0%
/
100%
En retard
1
25%
Gratuit
Commandes similaires
DESCRIPTION: I require an experienced MQL5 developer to build a fully automated, multi‑engine, multi‑asset trend‑following trading system for MetaTrader 5. The system includes: Multiple TrendEngine instances (one per symbol) A PortfolioController that manages all engines Volatility‑regime detection Dual‑timeframe confirmation ATR‑based breakout logic ATR‑based stop management Micropyramiding Risk‑weighted satellites
Description: I need a semi-automatic Expert Advisor (EA) developed for MetaTrader 5 (Hedging account, optimized for Exness Cent accounts) to manage my manual trades on Gold (XAUUSD) using a positive pyramiding trend-following strategy. Detailed Specifications: 1. Multi-Basket Management (Crucial): The EA does NOT open the initial trade. It waits for me to open a manual trade (Buy or Sell). If I open another manual
Live chart [ expert is not executing trades on xauusd ] , Deleting Existing Parameter not in use , Live Chart Adjustments Only , No Need to Change anything else , expert will be live testing Throughout
El 3aksiyat 0
35+ USD
//@version=6 indicator("منظومة El_3aksiiya 0 المتكاملة", overlay=true, max_labels_count=500, max_boxes_count=500, max_lines_count=500) // الألوان color_accum = color.new(#0000FF, 85) color_manip = color.new(#FFFF00, 80) color_dist = color.new(#FFC0CB, 80) color_elliot = #FF8C00 color_fib = #FFFF00 color_entry = #00FFFF color_tp = #00FF00 rsiVal = ta.rsi(close, 14) // نموذج AMD var int barCount = 0 if
Prepare expert for xauusd live chart [ expert is not executing trades on xauusd ] . Deletion and cleaning code . Trailing Stop Rule to follow the given method . Live Chart Only
SNIPER X AI
30 - 120 USD
I need help in building a Robot SNIPER X AI — FINAL BUILD Trading System Type AI Scalping + Sniper Entry Expert Advisor Platforms MetaTrader 4 MetaTrader 5 Supported Brokers � exness.com � justmarkets.com � deriv.com Universal MT4/MT5 broker support FINAL CORE FEATURES ✅ AI Scalping Engine ✅ Sniper Entries ✅ Auto Buy/Sell ✅ EMA Trend Detection ✅ RSI Momentum Filter ✅ Smart Stop Loss ✅ Dynamic Take Profit ✅ Trailing
Hello, I am looking for a serious and experienced MQL5 developer who also has practical trading experience , not only programming skills. The goal is to develop a professional-grade Expert Advisor / semi-automated trading system suitable for prop firm trading , with a strong focus on: ✅ Quality ✅ Robustness ✅ Risk control ✅ Realistic execution ✅ Professional backtesting ✅ Prop firm-friendly logic This is not a simple
//+------------------------------------------------------------------+ //| $10 Smart Scalping Bot for MT5 | //| EURGBP + AUDUSD + XAGUSD Optimized | //+------------------------------------------------------------------+ #property strict #include <Trade/Trade.mqh> CTrade trade; //========================= INPUTS ================================== input double LotSize = 0.01; input int FastEMA = 20; input int SlowEMA =
1. Project Overview & Strategic Objective We are seeking an elite, senior-level MQL developer to design and engineer a bulletproof, proprietary MT4 non-standard bar generation application. The primary objective of this project is to build an independent, institutional-grade charting infrastructure to permanently eliminate third-party plugin dependency risks (highlighted by legacy solutions like AZ-INVEST going
Hello, I am looking to develop a commercial-grade Expert Advisor for MT5 specifically optimized for XAUUSD (Gold). The underlying logic should be an intelligent, trend-filtered cost-averaging grid system focused on capital preservation. The EA must include the following functional architecture: 1. Core Strategy Structure: - Must feature a multi-strategy logic entry module. I want to use a combination of 3-4 standard
Informations sur le projet
Budget
30 - 60 USD
Délais
de 5 à 10 jour(s)