Job finished
Execution time 4 days
Feedback from employee
Great customer. Fast reply and clear indications. It is a pleasure to work with him.
Feedback from customer
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.
Specification
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")
Responded
1
Rating
Projects
11
18%
Arbitration
8
38%
/
38%
Overdue
1
9%
Free
2
Rating
Projects
24
8%
Arbitration
0
Overdue
0
Free
3
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
4
Rating
Projects
28
29%
Arbitration
2
0%
/
50%
Overdue
1
4%
Free
5
Rating
Projects
827
62%
Arbitration
33
27%
/
45%
Overdue
23
3%
Free
Published: 1 code
6
Rating
Projects
317
24%
Arbitration
23
35%
/
13%
Overdue
23
7%
Free
Published: 3 codes
7
Rating
Projects
499
67%
Arbitration
5
40%
/
0%
Overdue
4
1%
Free
Published: 8 codes
8
Rating
Projects
57
23%
Arbitration
12
67%
/
8%
Overdue
2
4%
Free
9
Rating
Projects
945
47%
Arbitration
309
58%
/
27%
Overdue
125
13%
Free
10
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Published: 9 codes
Similar orders
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
Project information
Budget
30+ USD
Deadline
from 1 to 3 day(s)