Tradingview to MT4 conversion ( Full Tradingview Script code provided)

MQL5 In conversione MySQL

Lavoro terminato

Tempo di esecuzione 4 giorni
Feedback del dipendente
Great customer. Fast reply and clear indications. It is a pleasure to work with him.
Feedback 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.

Specifiche

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


Con risposta

1
Sviluppatore 1
Valutazioni
(8)
Progetti
11
18%
Arbitraggio
7
43% / 29%
In ritardo
1
9%
Gratuito
2
Sviluppatore 2
Valutazioni
(22)
Progetti
24
8%
Arbitraggio
0
In ritardo
0
Gratuito
3
Sviluppatore 3
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
4
Sviluppatore 4
Valutazioni
(15)
Progetti
23
17%
Arbitraggio
2
0% / 50%
In ritardo
1
4%
Gratuito
5
Sviluppatore 5
Valutazioni
(507)
Progetti
762
63%
Arbitraggio
33
27% / 45%
In ritardo
23
3%
Gratuito
6
Sviluppatore 6
Valutazioni
(154)
Progetti
258
24%
Arbitraggio
12
25% / 8%
In ritardo
15
6%
Caricato
7
Sviluppatore 7
Valutazioni
(278)
Progetti
418
63%
Arbitraggio
5
40% / 0%
In ritardo
4
1%
Gratuito
8
Sviluppatore 8
Valutazioni
(30)
Progetti
55
22%
Arbitraggio
12
67% / 8%
In ritardo
2
4%
Gratuito
9
Sviluppatore 9
Valutazioni
(561)
Progetti
928
48%
Arbitraggio
301
59% / 25%
In ritardo
123
13%
Caricato
10
Sviluppatore 10
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
Ordini simili
Hello developers here, I need a professional developer that can help me to develop an mt5 trading bot that works according to my strategy, I will be sharing my strategy in the inbox, Let me know if you can develop it, I will be waiting for your response
I am looking developer who can code pocket option data and insert in to costume candle Heikin in trading view. I want to trade otc as such its up to developer to get pocket option data stream and then make costume candle Heikin inside of trading view. Their will be a drop down menu in setting that will use to pick the otc pair. Developer must have way to chat on mobile app also. We will use
I need an EA in based of this indicator. It have buffers. The owner told me it..., So I need an expert who can do this I will attached the file right now
HI, I'm looking for an experienced person who can add buy/sell indications and Alerts on existing Pinescript along with little modification of the script and the script should connect to MT5 platform using pineconnector MT5 platform should excute trade instantly as based on the alerts/indications on tradingview script
HI, I'm looking for an experienced person who can add buy/sell indications/Alerts on existing Pinescript code along with little modification of the script and the script should connect to MT5 platform using pineconnector MT5 platform should execute trade instantly as based on the alerts/indications on tradingview script
Hey, im looking for a person who can create an my very own version of pineconnector, which should have all the option of pineconnector and it should be user-friendly without any complications
HI, I'm looking for an experienced person who can add buy/sell indications and Alerts on existing Pinescript along with little modification of the script and the script should connect to MT5 platform using pineconnector MT5 platform should excute trade instantly as based on the alerts/indications on tradingview script
I want the trade to trigger anytime it sees the opportunity on all time frames, sl tp should be automated and all trades should be trigger anytime on cpi news and etc
Modify my PHP project 30 - 32 USD
Hello! I have an open source PHP code school management system which i want to use as my project. I need someone good in PHP to add some data in there. All other information is already there. I want also to print the report displayed. The data i want is: Add Address Add Father’s Name Add Mother’s Name Add Gender(To be selected with drop down) Add Academic Year. Add Receipt Number(To accept numbers and text) Then Add
Placing of order and opening up position. And management of trading position/orders, cancellation of orders and closing of position order lot calculation processing trading errors and environmental state signal lifetime what the programme cannot do for you

Informazioni sul progetto

Budget
30+ USD
Per lo sviluppatore
27 USD
Scadenze
da 1 a 3 giorno(i)