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

İş tamamlandı

Tamamlanma süresi: 4 gün
Müşteri tarafından geri bildirim
Fake and Fraud . I do not recommend . Not cooperative and uses crooked tactics to exploit clients. I never recommend this guy.
Geliştirici tarafından geri bildirim
Wrong customer, do not recommend.

İş Gereklilikleri


//@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")


Yanıtlandı

1
Geliştirici 1
Derecelendirme
(5)
Projeler
6
17%
Arabuluculuk
2
0% / 100%
Süresi dolmuş
0
Serbest
2
Geliştirici 2
Derecelendirme
(128)
Projeler
162
36%
Arabuluculuk
4
25% / 50%
Süresi dolmuş
13
8%
Serbest
3
Geliştirici 3
Derecelendirme
(242)
Projeler
271
65%
Arabuluculuk
6
17% / 33%
Süresi dolmuş
8
3%
Yüklendi
4
Geliştirici 4
Derecelendirme
(298)
Projeler
442
64%
Arabuluculuk
5
40% / 0%
Süresi dolmuş
4
1%
Çalışıyor
5
Geliştirici 5
Derecelendirme
(2)
Projeler
4
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(563)
Projeler
932
47%
Arabuluculuk
302
59% / 25%
Süresi dolmuş
124
13%
Yüklendi
Benzer siparişler
I want have the possibility to increase lotsize not alone by Lot-multiplier rather I want add a fix-lot increase for excample for 0,05 lot. I want have this for buy / sell and hedge-buy and hedge sell
Hi, I want to make an automated system to take my place in making trading positions and closing it. But I want to ask , can you program it to draw a trend line in a specific chart and several moving averages should be in specific order, and when the price is near the trend line by few pips, we shift to 15 minutes chart and noticing a resistance or support action , then we take the trade ? can we do that
Develop EA to track performance metrics of strategies I would like to develop an EA that will track the performance metrics of the strategies I have running on a terminal, If any of the metrics start to under perform then the EA/Indictor should alert me with a pop up alert that specify's the metric that has triggered the alert. The EA should also display the metrics in a dashboard - please see my example screen shot
I would like to modify the RSI Epert Avisor with a developer. I would like to use the RSI Expert on the inverse mode and the base setting doesnt conatain this strategy mode
Profitable EA HFT 50 - 300 USD
From a long time i am searching for a profitable EA i have lost a lot , and now i have only 300$ to buy a profitable EA , i wish to say with 0 losses but some or most traders they don't want to hear this i am really tired of searching for a programmer to just create me a profitable EA with the least losses or zero losses maybe nearly 1 year i am searching i just need an HFT EA that can work very well on MT4,MT5
I need help fixing my EA for MT5. It’s a very simple EA, and I currently cannot solve an issue where webrequest communicates with OpenAi API without error. Please only apply if you can help solve this issue
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA. # MANUAL ZONE MARKING # THREE TYPES OF ENTRIES (
p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} li.li1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} ol.ol1 {list-style-type: decimal} I have an EA that open trades when my entry conditions are met. It usually executes one trade per day. I'd like to add an option
у нас есть стратегия, нам нужно написать mql5-код ​​для тестера стратегий МТ5,Цена договорная. Мой контакт @abbosaliyev из Telegram Программист должен знать РУССКИЙ ИЛИ УЗБЕКСКИЙ язык. Задание: разработать тестер, который использует шаблон условий на открытие и проверит весь исторический график на всех доступных таймфреймах. Остальная информация будет предоставлена ​​после согласования цены
a coder is required to add an indicator to existing ea The new indicator will work as 1. option to combine with exiting indicator to open trade 2. it will be used as alternative BE point 3. It can also be used to close order or combine with other to close trade The second Job is telegram bot to get alert fr news trade and others Details when you apply i will test the ea work on live market and all bug is fixed before

Proje bilgisi

Bütçe
50+ USD
Geliştirici için
45 USD
Son teslim tarihi
to 2 gün