指定
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.
反馈
1
等级
项目
370
42%
仲裁
145
17%
/
41%
逾期
124
34%
空闲
发布者: 38 代码
2
等级
项目
144
38%
仲裁
67
15%
/
48%
逾期
55
38%
空闲
3
等级
项目
87
39%
仲裁
3
0%
/
33%
逾期
29
33%
空闲
4
等级
项目
148
59%
仲裁
16
38%
/
13%
逾期
25
17%
空闲
发布者: 1 代码
5
等级
项目
66
30%
仲裁
2
0%
/
0%
逾期
0
空闲
6
等级
项目
4
25%
仲裁
2
0%
/
100%
逾期
1
25%
空闲
相似订单
1. Shift the Time Gate (Critical) Current start time: 08:30 New required start time: 08:35:01 The EA is currently triggering trades too early (between 08:25 – 08:30 ), which is causing incorrect entries. Please ensure the EA cannot enter any trade before 08:35:01 . 2. Change Order Execution Logic The current code is using Pending Orders . Please remove pending order logic completely . Replace it with Direct Market
Project Title Freedom ORB – Fully Automated MT5 Expert Advisor (ORB + Structure + Liquidity) (MT5) Project Description I require a fully automated MT5 Expert Advisor based on a structured Opening Range Breakout (ORB) model with market structure and liquidity confirmation. The EA must: Detect ORB session range Wait for breakout (close-based) Wait for retrace Confirm M1 structure + displacement Execute trade
Gold - Quick Scalper EA with TP, SL
30 - 40 USD
I’m looking for a trading bot where I can use a balance of £1000 to make regular entries making £20-£40 per entry. obviously, I want to have minimum loss with a lot more profit being made
I need a developer to code an indicator for tradingview to plot trends. There is already a similar free indicator available in Tradingview but it's not 100% correct. You can use it as starting point. We need to avoid plotting containment trends that are not significant. To understand this there will be many examples that will be provided at a later stage. I have coded an MT5 version for this indicator and can be used
I’m hiring an experienced MQL5 developer to finish and fix an existing project (NOT building from scratch). I have: An existing MT5 EA (.mq5 + .ex5) that is based on my TradingView logic A TradingView indicator version used for signals/alerts The EA works but has logic/consistency issues and needs improvements + cleanup Goal Make the EA reliable and consistent: Ensure entries/exits match the intended logic Fix
Good day to you, I am looking for someone who can convert the actual LuxAlgo smart money concepts indicator from pine script to mql5 and give me the source code what works the same as original indicator
I have a High-Frequency Trading EA and I need a full conversion and optimization for MT5. The goal is to ensure stable execution and reliable performance on real accounts (IC Markets Raw and similar ECN brokers). I need an experienced and reputable MQL5 developer to: Convert the existing strategy to MT5 with full fidelity to the original trading logic (entries, SL, breakeven, trailing, pending orders). Optimize the
I need a professional MT5 Expert Advisor (fully automated trading robot) for scalping on M1 timeframe. 1. General Requirements Platform: MetaTrader 5 Type: Fully automated EA (no manual confirmation) Timeframe: M1 only Symbols: XAUUSD, BTCUSD, USDCAD Must support running on multiple charts simultaneously Clean, optimized, and low-latency execution logic 2. Strategy Logic (Scalping Model) The EA should use: Trend +
Indicator strategy included
1000+ USD
Hello, I'll be willing to pay upto 1000$ depending on the quality of the final product. This job includes bringing a strategy as well as coding it (or something ready made) I’m looking for a reliable indicator that places buy/sell signals directly on the chart. The key requirement is that signals must appear only after candle close and must not repaint under any condition. From an accurcy perspective we can discuss
I would like to create a robot with the smart money concepts, that integrates order block,FVG,supply & demand ,read the market structure,liquidity and also trade with the session and also after a liquidity sweep a market structure is needed to verify the reversal and a retracement to the order block and sometimes fair value Gap
项目信息
预算
30 - 60 USD
截止日期
从 5 到 10 天