Tradingview to MT4 conversion ( Full Tradingview Script code provided)

MQL5 전환 MySQL

작업 종료됨

실행 시간 4 일
피고용인의 피드백
Great customer. Fast reply and clear indications. It is a pleasure to work with him.
고객의 피드백
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.

명시

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


응답함

1
개발자 1
등급
(8)
프로젝트
11
18%
중재
7
43% / 29%
기한 초과
1
9%
무료
2
개발자 2
등급
(22)
프로젝트
24
8%
중재
0
기한 초과
0
무료
3
개발자 3
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
4
개발자 4
등급
(16)
프로젝트
25
20%
중재
2
0% / 50%
기한 초과
1
4%
무료
5
개발자 5
등급
(513)
프로젝트
776
63%
중재
33
27% / 45%
기한 초과
23
3%
무료
6
개발자 6
등급
(159)
프로젝트
274
24%
중재
15
40% / 7%
기한 초과
18
7%
로드됨
7
개발자 7
등급
(300)
프로젝트
450
65%
중재
5
40% / 0%
기한 초과
4
1%
무료
8
개발자 8
등급
(30)
프로젝트
55
22%
중재
12
67% / 8%
기한 초과
2
4%
무료
9
개발자 9
등급
(564)
프로젝트
933
47%
중재
302
59% / 25%
기한 초과
125
13%
로드됨
10
개발자 10
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
비슷한 주문
I need to create an EA based on my own strategy that actually is a little bit different from most of the usual EA. This because it use an indicator but the power of the system is just because it can shows target price by designing trendline on the price chart in a unusual way. A friend of mine tried to create it on MT4 platform but, in the end, he realized that this platform has big limits when the program lines
For starters, I am looking for someone to explain the effect of the Israel vs Iran conflict on trading. Secondly, I am looking for experienced MQL5 developer to improve an existing Expert Advisor. The goal is to optimize performance, reduce drawdown, and increase profitability. Tasks include refining the current logic for trade entries and exits, enhancing risk management, and ensuring the EA performs
Convert my tradingview pine script to mt4, Its a simple and straight code i need an expert programmer to convert my tradingview pine script to mt4, Thats All Thank you
Below is the pine eidtor script convert it to MQL5 coding language and create bot based on following condition 1. This all should be on 5-minute chart timeframe 2. For Buy side, buy after closing of second candle when buy signal is given and hold buy position until sell signal is given. 3. For sell side, sell after closing of second candle when sell signal is given and hold sell position until next buy signal will be
Hello there, am in need of an expert pinescript programmer who can work on an existing code to add some indicators and features. Please bid if you understand pinescript well and can work on existing code
FUNCTION 1 When I set max open orders to one it won't close the order. Changed should work as following When max open order is True and set to one it should still be able to close the open order. Finish today within next hour //+------------------------------------------------------------------+ //| Function to count orders | //+------------------------------------------------------------------+
I need help with creating a website traders chatroom, it must show traders online,offline,inactive. the chatroom top section must show four clocks with different times and time scale like this.. the chatroom must have a history data of up to 10days, then longer history must be deleted automatically. if you have better chatroom please say your recommendations
dreams good and have a great Cash out from your smart phone , tuyoywuiy glamorous flood see full idk idk slow so dolls stupid sis workouts who's spark koalas oral waits also doggo idk
NRTR - indicator for MetaTrader 5 NRTR (Nick Rypock Trailing Reverse) - indicator for MetaTrader 4 NRTR WATR - indicator for MetaTrader 4 NRTR GATOR - indicator for MetaTrader 5 X2MA NRTR - indicator for MetaTrader 5 NRTR - indicator for MetaTrader 5 NRTR GATOR - indicator for MetaTrader 4 NRTR - indicator for MetaTrader 4 Stalin_NRTR - indicator for MetaTrader 5 NRTR Color Line - indicator for MetaTrader 5 NRTR Rosh
Martingale Strategy EA 50 - 300 USD
Dear , I hope this message finds you well. I would like to request the development of a trading robot (Expert Advisor) that incorporates the following strategies and features: Strategy Requirements: 1. Martingale Strategy: The robot should include a Martingale system to increase trade sizes after losses in order to recover losses and generate profit. 2. Trend-Following: It should also be able to detect and follow

프로젝트 정보

예산
30+ USD
개발자에게
27 USD
기한
에서 1  3 일