Trabajo finalizado
Plazo de ejecución 4 días
Comentario del Ejecutor
Great customer. Fast reply and clear indications. It is a pleasure to work with him.
Comentario del Cliente
Excellent developer who delivered exactly what I was after in a very short timeframe! Would definitely use him again and recommend him to anyone who is looking for a fast and highly capable coder.
Tarea técnica
Task: Convert Tradingview script to MT4 indicator with all the adjustable input parameters from the Tradingview script transferred and functional in MT4 indicator with final MT4 indicator MQL4 source code provided on completion of task.
TradingView code below:
/ This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © simtrader19a
//@version=4
study(title="Double Bollinger Bands", shorttitle="DBB", overlay=true)
//------------------------------ Inputs ------------------------------
length = input(20, title="length")
///src = input(close, type=source, title="source")
src = input(close, title="source")
std_dev_1 = input(1, title="BB1 stdDev")
std_dev_2 = input(2, title="BB2 stdDev")
offset = input(0, title="offset")
//------------------------------ Colors ------------------------------
color_gray = #eeeeee
color_green = #3fbe53
color_red = #ff4e3e
//------------------------------- Logic ------------------------------
median = sma(src, length)
standard_deviation = stdev(src, length)
standard_deviation_1 = standard_deviation * std_dev_1
upper_1 = median + standard_deviation_1
lower_1 = median - standard_deviation_1
standard_deviation_2 = standard_deviation * std_dev_2
upper_2 = median + standard_deviation_2
lower_2 = median - standard_deviation_2
//------------------------- Plotting & styling ------------------------
transp_bb_1 = 70
transp_bb_2 = 70
basis = plot(median, color=color_gray, transp=0, title="basis", offset=offset)
upper_band_1 = plot(upper_1, color=color_red, transp=transp_bb_1, title="BB1 upper", offset=offset)
lower_band_1 = plot(lower_1, color=color_green, transp=transp_bb_1, title="BB1 lower", offset=offset)
//fill(basis, upper_band_1, color=color_red, transp=transp_bb_1, title="background BB1 upper")
///fill(basis, lower_band_1, color=color_green, transp=transp_bb_1, title="background BB1 lower")
upper_band_2 = plot(upper_2, color=color_red, transp=transp_bb_2, title="BB2 upper", offset=offset)
lower_band_2 = plot(lower_2, color=color_green, transp=transp_bb_2, title="BB2 lower", offset=offset)
fill(upper_band_1, upper_band_2, color=#4CAF50, transp=transp_bb_2, title="background BB2 upper")
fill(lower_band_1, lower_band_2, color=#FF5252, transp=transp_bb_2, title="background BB2 lower")
////ENTRY /////
LONG=(close>open and close>close[1]and close>upper_1 and close[1]<upper_1)
SHORT=(close<open and close<close[1] and close<lower_1 and close[1]>lower_1)
plotshape(LONG,title="Long",location=location.belowbar, style=shape.labelup, color=#4CAF50, text="B")
plotshape(SHORT,title="Sell",location=location.abovebar, style=shape.labeldown, color=#FF5252, text="S")
Han respondido
1
Evaluación
Proyectos
11
18%
Arbitraje
8
38%
/
38%
Caducado
1
9%
Libre
2
Evaluación
Proyectos
24
8%
Arbitraje
0
Caducado
0
Libre
3
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
4
Evaluación
Proyectos
28
29%
Arbitraje
2
0%
/
50%
Caducado
1
4%
Libre
5
Evaluación
Proyectos
827
62%
Arbitraje
33
27%
/
45%
Caducado
23
3%
Libre
Ha publicado: 1 ejemplo
6
Evaluación
Proyectos
317
24%
Arbitraje
23
35%
/
13%
Caducado
23
7%
Libre
Ha publicado: 3 ejemplos
7
Evaluación
Proyectos
499
67%
Arbitraje
5
40%
/
0%
Caducado
4
1%
Libre
Ha publicado: 8 ejemplos
8
Evaluación
Proyectos
57
23%
Arbitraje
12
67%
/
8%
Caducado
2
4%
Libre
9
Evaluación
Proyectos
945
47%
Arbitraje
309
58%
/
27%
Caducado
125
13%
Libre
10
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
Ha publicado: 9 ejemplos
Solicitudes similares
Sierra Chart Alerts to MT5 via Webhook (Alert Manager File Version) Objective: Create a Custom Study (ACSIL / C++) that monitors alerts from the Alert Manager file and forwards any valid alert directly to MT5 via an HTTP POST (Webhook) in JSON format. Additional Note: The study should allow adding any modifications in the future and provide clear insights into the alert points in Sierra Chart. 1. Data Flow Diagram
ZigZag based on oscillators is needed The idea of the indicator Create a ZigZag indicator, which is constructed based on extreme values determined using oscillators. It can use any classical normalized oscillator, which has overbought and oversold zones. The algorithm should first be executed with the WPR indicator, then similarly add the possibility to draw a zigzag using the following indicators: CCI Chaikin RSI
I am looking for an experienced MQL4/MQL5 developer to build a custom MT4 indicator from scratch or cracking my ex4 file that i provide to you. I already have an existing indicator (EX4) which produces highly accurate buy/sell signals. I want a similar indicator developed based on its observable behavior and signal structure. my existing indicator is pc id protected so you have to do PC ID security bypass and source
RSI indicator
130 - 150 USD
The Relative Strength Index (RSI) is a technical momentum indicator measuring the speed and change of price movements, scaled from 0 to 100 to identify overbought (>70) or oversold (<30) conditions. Developed by J. Welles Wilder Jr., it helps traders spot potential trend reversals or corrections.Imagine a stock, XYZ, is trending upwards.Overbought Signal: The price increases sharply, and the RSI rises to 75. This
Información sobre el proyecto
Presupuesto
30+ USD
Plazo límite de ejecución
de 1 a 3 día(s)