Convert WaveTrend to MT4

MQL4 指标 转化中

工作已完成

执行时间1 一天
客户反馈
Very good developer. He completed job on time. Will surely hire again.

指定


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

反馈

1
开发者 1
等级
(300)
项目
450
65%
仲裁
5
40% / 0%
逾期
4
1%
空闲
2
开发者 2
等级
(514)
项目
776
63%
仲裁
33
27% / 45%
逾期
23
3%
空闲
3
开发者 3
等级
(63)
项目
194
73%
仲裁
4
100% / 0%
逾期
1
1%
空闲
4
开发者 4
等级
(2)
项目
4
0%
仲裁
0
逾期
0
空闲
相似订单
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
I need an EA edited to make TWO main changes to conditions for how it enters trades. The EA code is written with clean code and is well commented. Will provide more info on changes in a doc in the chat
BUY AND SELL 30+ USD
Create an Expert Advisor that collaborates between these indicators ETR, MEv2 and STLv3 with these features 1. SL and TP 2. TIME FILTER 3. ETR, MEv2 and STLv3 PARAMETERS BUY ENTRY STEP 1. FIRST candle OPEN above Symphonie Trend Line STEP 2. Check Symphonie Extreme must indicate color BLUE STEP 3. Check Symphonie Emotion must indicate color BLUE STEP 4. Open trade with money management STEP 5. Trade open MUST BE 1
Hello, I have a protected Ninja trader Order Flow indicator and I was wondering if you can reverse engineer it to replicate the functionality. H ere are the specifications and indicator: https://docs.google.com/document/d/1KyYwQ7iTL2KWGhnZzxS1gObccu9LPMrGuMc9Mdk_3KY/edit?usp=sharing
I have an EA that need some changes including integrating the indicator code directly into the Expert Advisor. I will give the detailed doc once we settle on the candidate for the job . Please bid if you can work with the stated amount. Thanks
Hello, Need to convert Tradingview Indicator to MQL4 indicator. or if you have this one converted already, let me buy a copy please. If we're good, then will definitely buy it and ask to convert into EA on new order. Supertrend by KivancOzbilgic
Fix bug or modify an existing Trading view indicator to display correct. The indicator is working but not displaying/plotting all the information i want. So i want it adjusted to plot all the info
Here's a brief requirement you can use: **Description:** I am seeking an experienced MQL5 developer to create a (EA). The EA should include features for placing pending orders (Buy Stop and Sell Stop) based on market spread, managing trades effectively at the opening of new candlesticks, and implementing take profit and stop loss strategies. Additionally, I would like the option to adjust parameters based on market
I have an EA which i need to do below modifications. Variable Inputs to be added Order Type : Market , Pending Trade Type : Buy, Sell , Buy & Sell Pending Pips Step : ( Pips Value can be negative or positive to decide on what type of Pending Order ) // If trade type Buy is selected Close Type : Close All ( Bulk Close Option in MT5 ) , Close Individually Close Option : %of Equity , %of Balance , Amount $ , %of No
Add multiplier to grid recovery system. For example: Grid Trade 2-3 Spacing; 1.0 Multiplier Grid Trade 4-6 Spacing; 2.0 Multiplier Grid Trade 7+ Spacing; 1.6 Multiplier Need quick turn around. Need it done ASAP

项目信息

预算
30+ USD
开发人员
27 USD
截止日期
 1 天