작업 종료됨
실행 시간 3 일
고객의 피드백
Developer understands my requirement specification and also developed the product with accurate. Resolved all my queries is additional advantage
피고용인의 피드백
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.
명시
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
응답함
1
등급
프로젝트
1
0%
중재
3
0%
/
67%
기한 초과
0
무료
2
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
3
등급
프로젝트
6
17%
중재
1
0%
/
0%
기한 초과
0
작업중
4
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
5
등급
프로젝트
228
80%
중재
22
27%
/
50%
기한 초과
11
5%
무료
게재됨: 24 기고글, 1882 코드
6
등급
프로젝트
945
47%
중재
309
58%
/
27%
기한 초과
125
13%
무료
7
등급
프로젝트
473
40%
중재
103
41%
/
23%
기한 초과
78
16%
바쁜
게재됨: 2 코드
8
등급
프로젝트
9
11%
중재
11
18%
/
64%
기한 초과
4
44%
무료
9
등급
프로젝트
1
0%
중재
0
기한 초과
0
무료
비슷한 주문
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 have an existing MT5 Expert Advisor (“E-Core”). I need an experienced MQL5 developer to integrate a structured risk management upgrade and a higher timeframe trend filter into the current code. Two files will be provided: 1️⃣ E-Core Source Code (Current Version) 2️⃣ Update Instructions File (contains exact inputs, functions, and logic to integrate) The developer must: Integrate the update logic
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 am looking for a highly experienced Pine Script v5 developer to build a professional, non repaint price action indicator for TradingView. or a ready made one so i can purchase. This is a structured two phase project. The goal is to create a clean, intelligent price action tool that works for both fast intraday trading and swing trading. Only apply if you have strong Pine experience and understand liquidity
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
I am looking someone to create an EA based on my MACD Histo indicator / strategy from Pinescript. I will send it to you for you to replicate. The EA shall have: - Divergence length in bars, min and max values. - Pivot Logic - Entry on close of divergence confirmation bar. - Dynamic lot size dependent on SL/TP, in monetary value. - SL / TP in percent away from entry, separate values for long and short. - Time, day and
Hello, I have a breakout EA with reversal logic. I own the full source code for both MT4 and MT5 versions. I need the modifications implemented for both MT4 and MT5 versions. I need several modifications: – Multiple reversals with configurable parameters – Breakeven functionality – Entry only after candle close beyond range + offset – Time-based activation – Alternative offset calculation logic – Automatic close at
simple automated trading system with adaptive risk management and trend-based execution. The EA manages trades with dynamic position handling and built-in stability filters. Designed for single-position trading and disciplined execution 30 usd budget
프로젝트 정보
예산
30+ USD