Job finished
Execution time 3 days
Feedback from customer
Developer understands my requirement specification and also developed the product with accurate. Resolved all my queries is additional advantage
Feedback from employee
It's been a pleasure to work on your project. I'll be happy to help you. Thanks for your confidence and I hope the EA brings you great results. =It's been a pleasure working on your project.
Specification
Hi, I have a Pine Script which got backtested in Trading View based on that i need a EA bot in MT5.
//@version=5
strategy("Wyckoff Springs & Upthrusts Strategy [Auto PipSize, Fixed Lot 1]", overlay = true, default_qty_type = strategy.fixed, default_qty_value = 200)
type piv
float p
int b
bool act = true
int c = 0
// Inputs
pivlen = input.int(6, 'Pivot Length')
reqVol = input.bool(false, 'Require Volume Confirmation')
volThresh = input.float(1.5, 'Volume Threshold')
rangePeriod = input.int(20, 'Trading Range Period')
tpPips = input.int(50, "Take Profit (Pips)")
// === Auto Detect Pip Size ===
var float pipSize = na
if (syminfo.type == 'forex')
pipSize := 0.0001
else if (syminfo.ticker == 'XAUUSD' or syminfo.ticker == 'GOLD' or syminfo.ticker == 'XAUUSDtv')
pipSize := 0.1
else if (syminfo.type == 'index' or syminfo.type == 'crypto')
pipSize := 1.0 // Adjust if needed
else
pipSize := 0.01 // Default fallback
// Optional: Display pip size
label.new(bar_index, high, "PipSize: " + str.tostring(pipSize), yloc=yloc.abovebar, color=color.new(color.blue, 85))
// === Core Logic ===
var longPivs = array.new<piv>()
var shortPivs = array.new<piv>()
pl = ta.pivotlow(pivlen, pivlen)
ph = ta.pivothigh(pivlen, pivlen)
avgVol = ta.sma(volume, rangePeriod)
meetsThresh = volume >= avgVol * volThresh
highRange = ta.highest(rangePeriod)
lowRange = ta.lowest(rangePeriod)
// SPRING DETECTION (LONG)
if not na(pl)
longPivs.unshift(piv.new(low[pivlen], bar_index[pivlen]))
for p in longPivs
if p.act
if low < p.p and close > p.p and p.c <= 3 and low <= lowRange and (reqVol ? meetsThresh : true)
springLow = low
tpLevel = close + (tpPips * pipSize)
strategy.entry("Spring Long", strategy.long)
strategy.exit("TP/SL Long", "Spring Long", stop=springLow, limit=tpLevel)
p.act := false
else if low < p.p
p.c += 1
// UPTHRUST DETECTION (SHORT)
if not na(ph)
shortPivs.unshift(piv.new(high[pivlen], bar_index[pivlen]))
for p in shortPivs
if p.act
if high > p.p and close < p.p and p.c <= 3 and high >= highRange and (reqVol ? meetsThresh : true)
upthrustHigh = high
tpLevel = close - (tpPips * pipSize)
strategy.entry("Upthrust Short", strategy.short)
strategy.exit("TP/SL Short", "Upthrust Short", stop=upthrustHigh, limit=tpLevel)
p.act := false
else if high > p.p
p.c += 1
// Plotting Trading Range
plot(lowRange, 'Range Low', color = color.red)
plot(highRange, 'Range High', color = color.green)
Is anyone helped me to provide this requirement?
How to know this script converted as same means test for last month 24-Feb-2025 to 24-Mar-2025 in Gold commodity on 5M it's will give $12K as P/L
Responded
1
Rating
Projects
1
0%
Arbitration
3
0%
/
67%
Overdue
0
Free
2
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
3
Rating
Projects
6
17%
Arbitration
1
0%
/
0%
Overdue
0
Working
4
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
5
Rating
Projects
228
80%
Arbitration
22
27%
/
50%
Overdue
11
5%
Free
Published: 24 articles, 1882 codes
6
Rating
Projects
945
47%
Arbitration
309
58%
/
27%
Overdue
125
13%
Free
7
Rating
Projects
473
40%
Arbitration
103
41%
/
23%
Overdue
78
16%
Busy
Published: 2 codes
8
Rating
Projects
9
11%
Arbitration
11
18%
/
64%
Overdue
4
44%
Free
9
Rating
Projects
1
0%
Arbitration
0
Overdue
0
Free
Similar orders
Expert Advisor
30 - 2000 USD
Necesito un Expert Advisor simple para MT4 basado en una estrategia de scalping con sistema grid/martingala. 1. Lógica General El EA debe abrir una operación inicial (con opción de seleccionar dirección manual: Comprar / Vender / Ambas). Si la operación entra en drawdown, debe abrir posiciones adicionales basadas en una distancia fija en pips (pip step). Cada nueva posición debe aumentar el tamaño del lote según un
I need an EA
30+ USD
I need an EA that is performing well. I am interested in purchasing it, but only genuine sellers should reply. It must have verified live performance and past trading history
Hello, I'm looking to find out the cost of creating a mobile trading robot. I've tried to describe it as thoroughly as possible in the following document. I look forward to your response. I'd like to know the costs, delivery time, and how you plan to implement it before making a decision
I am offering a ready-to-use trading system that connects MetaTrader 4 signals with automated trading on Polymarket. The system is already fully developed and working. What the system does: The bot copies signals from a custom MT4 indicator and executes trades automatically on Polymarket prediction markets. How it works: A custom MT4 indicator generates BUY or SELL signals using buffers. When a signal appears, it is
DO NOT RESPOND TO WORK WITH ANY AI. ( I CAN ALSO DO THAT ) NEED REAL DEVELOPING SKILL Hedge Add-On Rules for Existing EA Core Idea SL becomes hypothetical (virtual) for the initial basket and for the hedge basket . When price hits the virtual SL level , EA does not close the losing trades. Instead, EA opens one hedge basket in the opposite direction. Original basket direction Hedge basket direction (opposite) Inputs
Billionflow
30 - 100 USD
Trading specifications: Indicators: Bollinger band ( Period 40, Deviation 1 apply to close) Moving Average (Exponential ) Period 17 applied to high Moving Average ( Exponential ) Period 17 applied to low But Signal enter a buy trade when prices crosses the lower band of the bollinger band up and also crosses the moving average channel of high and low the reverse is true for sell signal
Hello, I am a user of the "BUY STOP SELL STOP V6" trading bot, which is an advanced Grid System bot. The bot is primarily designed for Gold (XAUUSD), but I want it to work on all currency pairs. "The bot contains a privacy/protection code that prevents it from running on other accounts or being modified on any platform, as it has a client account number lock mechanism" --- Bot Description & Current Settings Bot Type
I need Ea that executes trade based on trading view indicator called Market Structure CHoCH/BOS (Fractal) [LuxAlgo] I need developer to recreate the indicator as an Ea in MQL5 The core of the system will be a structured Market Structure engine that detects CHOCH (Change of Character) and BOS (Break of Structure) Signals will be confirmed once the indicator gave ( the bos/choch) no need to wait candle close
Looking to purchase a Good forex or gold/ BTC trading EA and it's source code. Must be compatible with low budget like less than $500 accounts, Must need no manual intervention and run fully automated. If you are interested in selling me the source code, please share the Read only account access where the EA has already been running on, so i can check past performance and get an idea on how it works or runs. Dont
Hello, I’m looking for an experienced MQL4/MQL5 developer to work with me on an ongoing basis. My clients request services such as: Converting TradingView Pine Script indicators/strategies into MT4 or MT5 Expert Advisors Converting MT4 EAs to MT5 (and MT5 to MT4) Compiling and fixing existing MQL4 / MQL5 EA code Adding simple features like alerts, SL/TP, lot size, and basic money management This job is for
Project information
Budget
30+ USD