Convert from tradingview indicator to MT5

MQL5 Indicators Other

Specification

I need to convert this tradingview indicator to MT5 , hers the original code                                     //@version=4
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 27/12/2019
// This is combo strategies for get a cumulative signal. 
//
// First strategy
// This System was created from the Book "How I Tripled My Money In The 
// Futures Market" by Ulf Jensen, Page 183. This is reverse type of strategies.
// The strategy buys at market, if close price is higher than the previous close 
// during 2 days and the meaning of 9-days Stochastic Slow Oscillator is lower than 50. 
// The strategy sells at market, if close price is lower than the previous close price 
// during 2 days and the meaning of 9-days Stochastic Fast Oscillator is higher than 50.
//
// Second strategy
// The Detrend Price Osc indicator is similar to a moving average, 
// in that it filters out trends in prices to more easily identify 
// cycles. The indicator is an attempt to define cycles in a trend 
// by drawing a moving average as a horizontal straight line and 
// placing prices along the line according to their relation to a 
// moving average. It provides a means of identifying underlying 
// cycles not apparent when the moving average is viewed within a 
// price chart. Cycles of a longer duration than the Length (number 
// of bars used to calculate the Detrend Price Osc) are effectively 
// filtered or removed by the oscillator.
//
// WARNING:
// - For purpose educate only
// - This script to change bars colors.
////////////////////////////////////////////////////////////
Reversal123(Length, KSmoothing, DLength, Level) =>
    vFast = sma(stoch(close, high, low, Length), KSmoothing) 
    vSlow = sma(vFast, DLength)
    pos = 0.0
    pos := iff(close[2] < close[1] and close > close[1] and vFast < vSlow and vFast > Level, 1,
         iff(close[2] > close[1] and close < close[1] and vFast > vSlow and vFast < Level, -1, nz(pos[1], 0))) 
pos

DPO(Length) =>
    pos = 0.0
    xPrice = close
    xsma = sma(xPrice, Length)
    nRes = xPrice - xsma
    pos := iff(nRes > 0, 1,
         iff(nRes < 0, -1, nz(pos[1], 0))) 
    pos

study(title="Combo Strategy 123 Detrended Price Oscillator", shorttitle="Combo", overlay = true)
Length = input(14, minval=1)
KSmoothing = input(1, minval=1)
DLength = input(3, minval=1)
Level = input(50, minval=1)
//-------------------------
LengthDPO = input(14, minval=1)
posReversal123 = Reversal123(Length, KSmoothing, DLength, Level)
posDPO = DPO(LengthDPO)
pos = iff(posReversal123 == 1 and posDPO == 1 , 1,
   iff(posReversal123 == -1 and posDPO == -1, -1, 0)) 
barcolor(pos == -1 ? #b50404: pos == 1 ? #079605 : #0536b3 )

Responded

1
Developer 1
Rating
(549)
Projects
918
48%
Arbitration
300
59% / 25%
Overdue
123
13%
Loaded
2
Developer 2
Rating
(544)
Projects
822
73%
Arbitration
15
53% / 13%
Overdue
193
23%
Free
3
Developer 3
Rating
(16)
Projects
19
11%
Arbitration
3
0% / 100%
Overdue
2
11%
Free
Similar orders
Hello I'm looking for a developer to convert tradingview script into a sierrachart study that sends certain variables in real time when a trade opens and closes. The sending is done and works perfectly
Need to integrate admin & Client panel with MT5 API integration. Need a seamless integration between CRM & MT5 so that users can create live & Demo accounts & Process deposits & withdrawals. Need to support us for going Live
If you are able to code a bot with these details below; would like to get into more detail later once found that method is possible to code Bot Scans the market and looks to execute trades from a top down analysis using confirmation. starting from daily down to 1 min For ex. 4hr/2hr/1hr A line created starting on the 4hr corresponds down to the 1hr is confirmation The bot then looks at the current market and looks
Hello, I need a professional to code a bot with these details below; would like to get into more detail later once found that method is possible to code Bot Scans the market and looks to execute trades from a top down analysis using confirmation. starting from daily down to 1 min For ex. 4hr/2hr/1hr A line created starting on the 4hr corresponds down to the 1hr is confirmation The bot then looks at the current market
I am looking for a skilled developer to create a custom indicator for NinjaTrader based on the Percentage Hughes Breadth-Momentum Oscillator formula. The formula is as follows: Percentage Hughes Breadth-Momentum Oscillator = (H × 100 ) + 100 = ( A − D A +D + U × 100 ) + 100 Percentage Hughes Breadth-Momentum Oscillator = ( H × 100 ) + 100=( A −D A + D+ U ​ , × 100 ) + 100 where: H represents today’s 1-day ratio of
I need a telegram bot that copy trading signals to mt4 trading account and triggers and close trades on Forex, gold, indices etc. The bot need to move the stop loss according to the pip value on settings page. e.g. 10pips
Hi, I want create plugin for mt4 to angel one for automatic trading , futures ,options and mcx any one can support please contact , I can share more details thanks
Hi Greetings. I have a TradingView strategy already coded that I will like to connect my broker so I can be able to send signal for automatic trading. If you have experience in this Please kindly bid for the project and let get start . We can discuss about the price and the timeline
Hello, I had a chart developed for NinjaTrader that I would like to replicate in Sierra Chart. It is Chart that colors bars based on difference between 20EMA on-bar-close (or "last") values between bars (5-minute chart)
Looking for a programmer, who has knowledge in support and resistance , looking to have an indicator in tradingview therefore you need pinescript experience , need an indicator that will mark the candle that produce certain patterns and add a mark either below or above the candle to show where this pattern as occurred , its a very simple indicator must show on chart . if this works good then later we can try to

Project information

Budget
30+ USD
For the developer
27 USD