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
등급
(131)
프로젝트
173
39%
중재
4
25% / 50%
기한 초과
13
8%
작업중
3
개발자 3
등급
(254)
프로젝트
283
65%
중재
6
17% / 33%
기한 초과
10
4%
로드됨
4
개발자 4
등급
(300)
프로젝트
450
65%
중재
5
40% / 0%
기한 초과
4
1%
무료
5
개발자 5
등급
(2)
프로젝트
4
0%
중재
0
기한 초과
0
무료
6
개발자 6
등급
(564)
프로젝트
933
47%
중재
302
59% / 25%
기한 초과
125
13%
로드됨
비슷한 주문
It is using EMA/SMA for triggers of long or short (green long/red short) and the line above or below is the stop loss, profit triggers would need to figure out or allow it until next trigger. Already in thinkscript And add parameters
I have been using Tradingview for a few years and have now found an MT5 strategy (scalper for forex markets) that I would like to have converted into a Pine code. The strategy should be able to output the corresponding signals on Tradingview and also be usable in the Strategy Tester for backtesting. I am enclosing the relevant MT5 code, although I do not know whether it is error-free. Please note the following
A “grid” display style like the attached image. User can choose up to 3 EMA’s to monitor on up to 6 Time Frames. If the EMA slope is greater than 0 = Green If the EMA slope is less than 0 = Red If the EMA slope is 0 = Black The grid should be customizable on it’s size, colors, and placement on the chart. Each EMA should update per tick. A label at the top of the grid should read “SLOPES” Indicator 2: A “grid” display
Requirement: 1. Convert Pivot source code .mq4 to Sierra Chart mq4 source code is provided .mq4 as attached .mq4 2. upon conversion to add a button code on Sierra chart .cpp to allow display/hide the pivot line in Sierra Chart ---- *no need alert, make it light without any alert, just a button to display/hide pivot line will do :) to continue, pivot font text also no need I"ve mark with red cross to remove see
I have 2 (indicators) I coded and I use on Tradingview I just need converted to use on Ninjatrader i will be looking for great developer to bid for it and for more details
I've use most of code from this script, add some more filter, and added different kind of moving avg instead of rsi input .. please check the source code .. . 70-80% is similar to it. Please check can you convert And are you familiar with backtest.py library? Oky. This library has ML approach to get the optimized backtest parameters right ? included for this but let me know what you think? can you install backtest.py
i am looking for somebody how can convert my pine script code into an MT5 EA. Are you able to do it? Find the pine script code attached. Kindly send a message if you can do this and let me know the time frame and budget. Thanks
Hello developers, I would like to hire someone can convert the Radar Signal indicator: https://www.youtube.com/watch?v=5DmKcy7rb-U&nbsp ; to it's TradingView equivalent. Radar signal indicator is the combination of 7 classic MT4 indicators. They include ADX, RSI , CCI , OsMA, ATR, WPR. The indicator shows the values of these indicators in blue and red. Red color indicates a bearish market condition and the blue shows
Greetings to all developers that see this post, I have a task, I would like to work with an expert. I have an indicator that is written in the Pine script (TradingView) language; I would like it converted to MQL5, which will then lead to the creation of a trading bot based on the circumstances. I'll give you access to the indicator file
Hi, we are looking for professional programmers to convert MT4 EA to MT5 EA. The number of these requests will be large. Please let us know if you are interested in this offer with enough qualified experience. We will need programmers who understand Chinese first

프로젝트 정보

예산
50+ USD
개발자에게
45 USD
기한
 2 일