Convert from tradingview indicator to MT5

MQL5 Indikatoren Sonstiges

Spezifikation

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 )

Bewerbungen

1
Entwickler 1
Bewertung
(555)
Projekte
922
48%
Schlichtung
300
59% / 25%
Frist nicht eingehalten
123
13%
Beschäftigt
2
Entwickler 2
Bewertung
(546)
Projekte
823
73%
Schlichtung
15
53% / 13%
Frist nicht eingehalten
193
23%
Arbeitet
3
Entwickler 3
Bewertung
(16)
Projekte
19
11%
Schlichtung
3
0% / 100%
Frist nicht eingehalten
2
11%
Frei
Ähnliche Aufträge
Description: (a) The current EMA value keeps blinking on the chart in the form of colored dot (The color and size of the dot can be changed by me in the inputs of the indicator as a user) with no line behind it to trace (b) When the price touches the EMA then the blinking EMA dot prints itself as still on the touch point of the EMA. The dot connects itself with previous dot on the chart with a STRAIGHT colored dotted
EA development 30+ USD
HELLO there, am looking for some one that have serveral years of experience in developing a well performance EA, that can use both mt4, mt5 platform for development, please you most be an expert in the coding of EA , THANK YOU
Hi guys I eould like to know if it‘s possible to draw highs and lows with a horizontal line in the line chart? It should be an indicator with buffers that I can integrate it into an EA. If it‘s possible please explain how you would detect those highs and lows. Thanks in advance
Hi, Greetings ! Can somebody help me with a Half Trend Scanner with Higher Time Frame Confluence feature please. I am willing to pay if thats the case. Kind regards. Anton
PLEASE STATE YOUR BUDGET FOR INDIVIDUAL SECTIONS AND AS A WHOLE> SECTION 1 I want you to show me trade information Simple or complex MT4 Trade Dashboard=Show me what you have please by picture or file Win-rate Open Trades Closed Trades Profit Factor Risk % Daily, Weekly and Monthly Profit SECTION 2 Money Management & Trade Management It uses Fibonacci Calculations to trigger next trade sizes What I want to use is
EMA cross premium 30 - 50 USD
The idea is that the crossing of the Moving average( blue and orange EMA) must happen below or above the three big moving average (green, red, and black) and that will be a valid signal. E.g. valid Sell signal, the crossing of blue and orange EMAs will happen below the three big EMAs without a single touch. E.g. valid buy signal, the crossing of blue and orange EMAs will happen above the three big EMAs without a
MT5 Margin % Indicator 30 - 200 USD
I have started (but it does not work properly but can share what I have so far) a MT5 indicator in .mql5 format. The indicator should be named MT5 Margin Alert. The indicator should have the following user input variables that can be selected by a user a) Margin Alert % Target, b) Turn Algo Trading Off (if margin % target reached) and c) Monitoring Frequency (in minutes). The indicator will be placed on a chart
Hello, I have an indicator that counts days and plots vertical lines after specific interval days from specific dates. I want to convert it for my trading view following all the inputs and settings
Seeking someone who can create a robot or algorithm capable of sending 5-10 daily forex signals, each with 3 types of take profit, and achieving a high success rate similar to the one shown in the attached picture
Metatrader 30+ USD
I would like to calculate the deviations between the companies listed below with Meta Trader. Would you be interested? BETWEEN 01.00 AT NIGHT AND 00.00 OF THE NEXT DAY (FOR HOURS WHEN THE GOLD MARKET IS OPEN) *Instant comparison of prices of the same parities of different companies *Determination of deviation rates in downward or upward movements (average prices, prices below and above the average) *Detection of

Projektdetails

Budget
30+ USD
Für die Entwickler
27 USD