Convert WaveTrend to MT4

MQL4 Göstergeler Dönüştürme

İş tamamlandı

Tamamlanma süresi: 1 gün
Müşteri tarafından geri bildirim
Very good developer. He completed job on time. Will surely hire again.

İş Gereklilikleri


//@version=4
study("Wave Rider 3.0 ", overlay = true)


//ema
ma_length = input(100, title = "EMA Length 1 ")
ma_length2 = input(200, title = "EMA Length 2 ")
pips = input(10.0, title = "Pips of wick apart from EMA1") * 10 * syminfo.mintick

ema1 = ema(close, ma_length)
ema2 = ema(close, ma_length2)

plot(ema1, title="EMA1", color = color.orange, linewidth = 2)
plot(ema2, title="EMA2", color = color.green,  linewidth = 2)

belowema1 = false
aboveema1 = false

belowema1 := low < ema1 + pips or low[1] < ema1[1] + pips or low[2] < ema1[2] + pips or low[3] < ema1[3] + pips or low[4] < ema1[4] + pips
aboveema1 := high > ema1 - pips or high[1] > ema1[1] - pips or high[2] > ema1[2] - pips or high[3] > ema1[3] - pips or high[4] > ema1[4] - pips

lookback = input(30, title = "Look Back Bars")
crossnumbers = input(1, title = "Cross ma Numbers In Look Back Bars")


barsCrossedupMA(_lookback, _src, _ma) =>
    _counter = 0
    for i = 0 to _lookback by 1
        if (_src[i+1] < _ma and _src[i] > _ma)
            _counter := _counter + 1
    _counter

barsCrosseddnMA(_lookback, _src, _ma) =>
    _counter = 0
    for i = 0 to _lookback by 1
        if (_src[i+1] > _ma and _src[i] < _ma) 
            _counter := _counter + 1
    _counter    

crossup = false
crossdn = false
crossup := barsCrossedupMA(lookback, close, ema2) <= crossnumbers
crossdn := barsCrosseddnMA(lookback, close, ema2) <= crossnumbers

emabuy  = close > ema2 and ema1 > ema2 and ((close > ema1 and belowema1) or close < ema1) and crossup
emasell = close < ema2 and ema1 < ema2 and ((close < ema1 and aboveema1) or close > ema1) and crossdn


// Stoch RSI
smoothK = input(3, "K", minval=1)
smoothD = input(3, "D", minval=1)
lengthRSI = input(14, "RSI Length", minval=1)
lengthStoch = input(14, "Stochastic Length", minval=1)
rsiOverbought = input(80.0, "Over Bought")
rsiOversold = input(20.0, "Over Sold")
src = input(close, title="RSI Source")
rsi1 = rsi(src, lengthRSI)
k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = sma(k, smoothD)

rsibuy   = crossover(k, d) and k[1] <rsiOversold
rsisell  =crossunder(k, d) and k[1] >rsiOverbought

//signals
long_signal  =emabuy and rsibuy
short_signal = emasell and rsisell

plotshape(long_signal ? close : na, color=color.green, text= "Buy", location= location.belowbar, style= shape.labelup, textcolor=color.white, size = size.tiny, title="Buy Alert")
plotshape(short_signal ? close : na, color=color.red, text= "Sell", location= location.abovebar, style= shape.labeldown, textcolor=color.white, size = size.tiny, title="Sell Alert")

if long_signal
alert('Long' , alert.freq_once_per_bar_close)

if short_signal
alert('Short' , alert.freq_once_per_bar_close)


alertcondition(long_signal, "Long", "Long")
alertcondition(short_signal, "Short", "Short")

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(322)
Projeler
499
67%
Arabuluculuk
5
40% / 0%
Süresi dolmuş
4
1%
Serbest
Yayınlandı: 8 kod
2
Geliştirici 2
Derecelendirme
(538)
Projeler
814
62%
Arabuluculuk
33
27% / 45%
Süresi dolmuş
23
3%
Serbest
Yayınlandı: 1 kod
3
Geliştirici 3
Derecelendirme
(77)
Projeler
243
74%
Arabuluculuk
7
100% / 0%
Süresi dolmuş
1
0%
Serbest
Yayınlandı: 1 makale
4
Geliştirici 4
Derecelendirme
(2)
Projeler
4
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
Benzer siparişler
The Advisor should stop trading if the spread exceeds a selected value. Source code is unavailable. Decompilation may be necessary or any other suggested working solution may be acceptable. Testing should be thorough with proven demonstrable results
Convert Time Range Breakout Indicator to Strategy (Pine Script) I have an existing Time Range Breakout indicator on TradingView. I need a developer to convert it into a fully functional strategy with proper trade execution logic. Strategy Logic: Time Range: Define a specific time range (e.g., 03:00 – 04:30) During this time, the indicator marks the High and Low range Entry Conditions Buy when price touches the range
Hello, I’m looking for an experienced MQL4 developer to build a custom MT4 Expert Advisor based on a Koncorde-style indicator strategy. Here are the main requirements: 🔹 General Overview The EA must be a master EA , running on a single chart and managing multiple currency pairs simultaneously No need to attach EA to each chart Must support a configurable list of symbols 🔹 Indicator Requirement Develop a custom
I want to find a Developer to perform this work and settle payments in this Application. I undertake not to communicate with Applicants anywhere else except this Application, including third-party
Hi guys I’m looking for a coder who’s experienced in one script. The candidate must be familiar with fractals and self similarity. If you can’t code self similarity, please don’t bother contacting me ( respectfully). I just don’t want us to waste each others time. My budget is 100$. If that’s too low for you please, don’t contact me. Only contact me if you can code self similarity and can accept 100$. I will provide
I hope to acquire a profitable and existing expert advisor (EA) from the gold market, with complete source code, to add to our client portfolio. you can WECHAT: Faca7898 Please note EA when adding friends. It should be clarified that this does not require you to formulate or design new strategies. If you already have a verified, consistent, and production-ready EA, I am willing to purchase it immediately and engage
Core Requirements: Platform: MetaTrader 5 (MT5). Symbol: XAUUSD (Gold). Timeframes: M1 and M5 (user selectable). Trading Style: Scalping with controlled risk (not aggressive or high-risk strategies) -> adjustable, even better. Execution: Fast execution, optimized for gold market conditions. Frequence = adjustable, but there should be 10-20 trades per day. Strategy Logic: Use a reliable and conservative strategy
Eu preciso disso. A linha central do TMA (17,5,1.5) será a principal referência. Outra linha de média móvel (AVG) de 3 períodos decrescentes 2. As ordens serão as seguintes: abaixo, somente compra de TMA; acima, somente venda de TMA. O sinal de entrada será o seguinte: se o preço estiver acima da Média Móvel Tarifária (TMA), será apenas para venda; quando o preço se mantiver abaixo da Média Móvel Tarifária (AVG)
I am looking for non-repainting indicator to run in all sessions for scalping gold , happy to discuss if you have developed such indicators which can show profit and stop loss levels
Hello! I want to buy two indicators: A Support and Resistence Indicator and a Trendline Indicator. Support and Resistence Indicators needs to automatically draws Support and Resistance lines based on High and Low Candle in every time-frame (If possible time-frame needs to be in inputs and choose by me what time-frame i want indicator to draw lines) Trendline Indicator needs to automatically draws Trendline Channels

Proje bilgisi

Bütçe
30+ USD
Son teslim tarihi
to 1 gün