Convert TradingView Indicator to MQ4

MQL4 In conversione

Lavoro terminato

Tempo di esecuzione 2 giorni
Feedback del dipendente
Extremely helpful and understanding client. very considerate!
Feedback del cliente
Great Work! One of my best Developer.

Specifiche

Pivot Point High Low Indicator

The Script is written in “Pine” (a TradingView Script Language). I would like to convert it to MetaQuotes Language 4 (MQL4).


Here is the " Pine" Script:

//@version=3

//

// Pivot Points High Low

 

study(title="Pivot Points High Low Extension", shorttitle="Pivots", overlay=true)


pvtLenL       = input(5, minval=1, title="Pivot Length Left Hand Side")

pvtLenR       = input(3, minval=1, title="Pivot Length Right Hand Side")


maxLvlLen     = 0


// Get High and Low Pivot Points

pvthi_ = pivothigh(high, pvtLenL, pvtLenR)

pvtlo_ = pivotlow(low, pvtLenL, pvtLenR)


// Force Pivot completion before plotting.

pvthi = pvthi_[0]

pvtlo = pvtlo_[0]


// Count How many candles for current Pivot Level, If new reset.

counthi = barssince(not na(pvthi))

countlo = barssince(not na(pvtlo))

 

pvthis = fixnan(pvthi)

pvtlos = fixnan(pvtlo)

hipc = change(pvthis) != 0 ? na : red

lopc = change(pvtlos) != 0 ? na : green


plot((maxLvlLen == 0 or counthi < maxLvlLen) ? pvthis : na, color=hipc, transp=0, linewidth=1, offset=-pvtLenR, title="Top Levels")

plot((maxLvlLen == 0 or countlo < maxLvlLen) ? pvtlos : na, color=lopc, transp=0, linewidth=1, offset=-pvtLenR, title="Bottom Levels")

Con risposta

1
Sviluppatore 1
Valutazioni
(219)
Progetti
370
42%
Arbitraggio
145
17% / 41%
In ritardo
124
34%
Gratuito
Pubblicati: 38 codici

Informazioni sul progetto

Budget
30 - 50 USD
Scadenze
a 1 giorno(i)