Looking for a conversion expert to convert a pinescript indicator to an MT4 Indicator

MQL4 专家 转化中

工作已完成

执行时间4 天
客户反馈
Fake and Fraud . I do not recommend . Not cooperative and uses crooked tactics to exploit clients. I never recommend this guy.
员工反馈
Wrong customer, do not recommend.

指定


//@version=4

study("Breakout Finder", "BF", overlay = true, max_bars_back = 500, max_lines_count = 400)

prd = input(defval = 5, title="Period", minval = 2)

bo_len = input(defval = 200, title="Max Breakout Length", minval = 30, maxval = 300)

cwidthu = input(defval = 3., title = "Threshold Rate %", minval = 1., maxval = 10) / 100

mintest = input(defval = 2, title = "Minimum Number of Tests", minval = 1)

bocolorup = input(defval = color.blue, title = "Breakout Colors", inline = "bocol")

bocolordown = input(defval = color.red, title = "", inline = "bocol")

lstyle = input(defval = line.style_solid, title = "Line Style", options = [line.style_solid, line.style_dashed, line.style_dotted])

 

//width

lll = max(min(bar_index, 300), 1)

float h_ = highest(lll)

float l_ = lowest(lll)

floatchwidth = (h_ - l_) * cwidthu

 

// check if PH/PL

ph = pivothigh(prd, prd)

pl = pivotlow(prd, prd)

 

//keep Pivot Points and their locations in the arrays

varphval = array.new_float(0)

varphloc = array.new_int(0)

varplval = array.new_float(0)

varplloc = array.new_int(0)

 

// keep PH/PL levels and locations

ifph

array.unshift(phval, ph)

array.unshift(phloc, bar_index - prd)

ifarray.size(phval) > 1 // cleanup old ones

for x = array.size(phloc) - 1 to 1

ifbar_index - array.get(phloc, x) >bo_len

array.pop(phloc)

array.pop(phval)

 

ifpl

array.unshift(plval, pl)

array.unshift(plloc, bar_index - prd)

ifarray.size(plval) > 1 // cleanup old ones

for x = array.size(plloc) - 1 to 1

ifbar_index - array.get(plloc, x) >bo_len

array.pop(plloc)

array.pop(plval)

 

// check bullish cup

floatbomax = na

intbostart = bar_index

num = 0

hgst = highest(prd)[1]

ifarray.size(phval) >= mintest and close > open and close >hgst

bomax := array.get(phval, 0)

xx = 0

for x = 0 to array.size(phval) - 1

ifarray.get(phval, x) >= close

break

xx := x

bomax := max(bomax, array.get(phval, x))

if xx >= mintest and open <= bomax

for x = 0 to xx

ifarray.get(phval, x) <= bomax and array.get(phval, x) >= bomax - chwidth

num += 1

bostart := array.get(phloc, x)

ifnum<mintest or hgst>= bomax

bomax := na

 

if not na(bomax) and num>= mintest

line.new(x1 = bar_index, y1 = bomax, x2 = bostart, y2 = bomax, color = bocolorup, style = lstyle)

line.new(x1 = bar_index, y1 = bomax - chwidth, x2 = bostart, y2 = bomax - chwidth, color = bocolorup, style = lstyle)

line.new(x1 = bostart, y1 = bomax - chwidth, x2 = bostart, y2 = bomax, color = bocolorup, style = lstyle)

line.new(x1 = bar_index, y1 = bomax - chwidth, x2 = bar_index, y2 = bomax, color = bocolorup, style = lstyle)

 

plotshape(not na(bomax) and num>= mintest, location = location.belowbar, style  = shape.triangleup, color = bocolorup, size = size.small)

alertcondition(not na(bomax) and num>= mintest, title = "Breakout", message = "Breakout")

 

// check bearish cup

floatbomin = na

bostart := bar_index

num1 = 0

lwst = lowest(prd)[1]

ifarray.size(plval) >= mintest and close < open and close <lwst

bomin := array.get(plval, 0)

xx = 0

for x = 0 to array.size(plval) - 1

ifarray.get(plval, x) <= close

break

xx := x

bomin := min(bomin, array.get(plval, x))

if xx >= mintest and open >= bomin

for x = 0 to xx

ifarray.get(plval, x) >= bomin and array.get(plval, x) <= bomin + chwidth

num1 += 1

bostart := array.get(plloc, x)

if num1 <mintest or lwst<= bomin

bomin := na

 

if not na(bomin) and num1 >= mintest

line.new(x1 = bar_index, y1 = bomin, x2 = bostart, y2 = bomin, color = bocolordown, style = lstyle)

line.new(x1 = bar_index, y1 = bomin + chwidth, x2 = bostart, y2 = bomin + chwidth, color = bocolordown, style = lstyle)

line.new(x1 = bostart, y1 = bomin + chwidth, x2 = bostart, y2 = bomin, color = bocolordown, style = lstyle)

line.new(x1 = bar_index, y1 = bomin + chwidth, x2 = bar_index, y2 = bomin, color = bocolordown, style = lstyle)

 

plotshape(not na(bomin) and num1 >= mintest, location = location.abovebar, style  = shape.triangledown, color = bocolordown, size = size.small)

 

alertcondition(not na(bomin) and num1 >= mintest, title = "Breakdown", message = "Breakdown")

alertcondition((not na(bomax) and num>= mintest) or (not na(bomin) and num1 >= mintest), title = "Breakout or Breakdown", message = "Breakout or Breakdown")


反馈

1
开发者 1
等级
(5)
项目
6
17%
仲裁
2
0% / 100%
逾期
0
空闲
2
开发者 2
等级
(132)
项目
176
39%
仲裁
4
25% / 50%
逾期
14
8%
空闲
3
开发者 3
等级
(257)
项目
286
66%
仲裁
6
17% / 33%
逾期
10
3%
繁忙
4
开发者 4
等级
(300)
项目
450
65%
仲裁
5
40% / 0%
逾期
4
1%
已载入
5
开发者 5
等级
(2)
项目
4
0%
仲裁
0
逾期
0
空闲
6
开发者 6
等级
(564)
项目
933
47%
仲裁
303
59% / 25%
逾期
125
13%
已载入
相似订单
EA to send account history to web request. It should send every 5 mins or when there is an update. It then sends the json to a web request where gain, drawdown, balance, equity will be displayed
I have a full strategy based on indicator and candle based on . i would like to make it into a robot which will trade for me on a specific time and specific rules. i need a person who can do this project for me. If you have done this type of job . you are most welcome for this. Apply only if you know binary trading option and binomo trading platform well and how it works
Preciso de um EA, que faça o fecho automático de operações abertas no final da sessão e nas notícias de alto impacto. Um EA simples com apenas 1 função. Fecho das operações abertas
Enter buy trade at close of candle when bar closes above the 3 emas. Emas are 34 ema, 64 ema and 128 ema. For a buy trade the 34 ema must be above the other two emas. The 64 ema should be in the middle. The 128 ema should be below the other two emas. For a buy trade the Awesome Oscillator should be above the middle line and colored green. Exit a buy trade when price touches 64 ema. Sell trade same conditions as buy
I want to make AI based on Attached Picture Swing High low. If you have experience can share demo first. Stop loss, take profit, trailing , break even ,DD etc. also amiable
Hello, I’m looking for a TradingView indicator that fits my forex trading needs. If you can create or customize one for me, please reach out. I'd appreciate your help! Thanks in advance."
I need someone who can code a new EA from scratch and also know how to integrate AI into the EA and use AI and market sentiments along with news to then open positions. I have the description of the job ready. Need someone serious, with experience and who will help optimize the current strategy with their expertise. Thanks
I’m looking for an experienced MQL5 developer to create a custom Break of Structure (BoS) Indicator for MetaTrader 5. This indicator should automatically detect and mark key market structure breakpoints in real-time, offering traders clear visual signals when the market experiences a structural shift. The indicator should include the following features: Automatic detection of Break of Structure (BoS) and Change of
I need someone who can make an expert advisor for me using the high and low of certain sessions or time frames. All orders should be market orders It's based on high and lows (LONGS) When a session low is created I wait until the 14 ema crosses above the 20 ema for comfirmation of going long, and I enter when price touches on the 14 ema. My SL automatically is placed on the session low. (SHORTS) When a session high
Pls I need help I don’t have much but pls accept my little payment for the work thanks 🙏 mt5 file Once it opens buy and move positively to buy let it use auto trailing to follow the trend that’s if I choose to use trailing option and before the trailing starts it must reach the actual profit target example if I set profit target to 500 then once profit is at 500 let trailing immediately protect it and any 1 pip

项目信息

预算
50+ USD
开发人员
45 USD
截止日期
 2 天