Convert Pine Script indicator to MT5 indicator

MQL5 エキスパート

仕事が完了した

実行時間1 日
依頼者からのフィードバック
Great work and fast
開発者からのフィードバック
Very nice working experience

指定

Hey guys I need someone to convert this indicator to a MT5 one.
//@version=5
indicator('TESTJAN', overlay=true)

amplitude = input(title='Amplitude', defval=2)
channelDeviation = input(title='Channel Deviation', defval=2)

showArrows = input(title='Show Arrows', defval=true)
showChannels = input(title='Show Channels', defval=true)

var int trend = 0
var int nextTrend = 0
var float maxLowPrice = nz(low[1], low)
var float minHighPrice = nz(high[1], high)

var float up = 0.0
var float down = 0.0
var float atrHigh = 0.0
var float atrLow = 0.0
var float arrowUp = na
var float arrowDown = na

atr2 = ta.atr(100) / 2
dev = channelDeviation * atr2

highPrice = high[math.abs(ta.highestbars(amplitude))]
lowPrice = low[math.abs(ta.lowestbars(amplitude))]
highma = ta.sma(high, amplitude)
lowma = ta.sma(low, amplitude)

if nextTrend == 1
        maxLowPrice := math.max(lowPrice, maxLowPrice)
        if highma < maxLowPrice and close < nz(low[1], low)
                trend := 1
                nextTrend := 0
                minHighPrice := highPrice
                minHighPrice
else
        minHighPrice := math.min(highPrice, minHighPrice)
        if lowma > minHighPrice and close > nz(high[1], high)
                trend := 0
                nextTrend := 1
                maxLowPrice := lowPrice
                maxLowPrice
if trend == 0
        if not na(trend[1]) and trend[1] != 0
                up := na(down[1]) ? down : down[1]
                arrowUp := up - atr2
                arrowUp
        else
                up := na(up[1]) ? maxLowPrice : math.max(maxLowPrice, up[1])
                up
                atrHigh := up + dev
                atrLow := up - dev
                atrLow
else
        if not na(trend[1]) and trend[1] != 1
                down := na(up[1]) ? up : up[1]
                arrowDown := down + atr2
                arrowDown
        else
                down := na(down[1]) ? minHighPrice : math.min(minHighPrice, down[1])
                down
                atrHigh := down + dev
                atrLow := down - dev
                atrLow

ht = trend == 0 ? up : down

var color buyColor = color.rgb(0, 68, 255)
var color sellColor = color.rgb(255, 115, 0)

htColor = trend == 0 ? buyColor : sellColor
htPlot = plot(ht, title='aghighi signal', linewidth=2, color=htColor)

atrHighPlot = plot(showChannels ? atrHigh : na, title='ATR High', style=plot.style_circles, color=sellColor)
atrLowPlot = plot(showChannels ? atrLow : na, title='ATR Low', style=plot.style_circles, color=buyColor)

fill(htPlot, atrHighPlot, title='ATR High Ribbon', color=sellColor)
fill(htPlot, atrLowPlot, title='ATR Low Ribbon', color=buyColor)

buySignal = not na(arrowUp) and trend == 0 and trend[1] == 1
sellSignal = not na(arrowDown) and trend == 1 and trend[1] == 0

plotshape(showArrows and buySignal ? atrLow : na, title='Arrow Up', style=shape.triangleup, location =location.absolute, size=size.tiny, color=buyColor)
plotshape(showArrows and sellSignal ? atrHigh : na, title='Arrow Down', style=shape.triangledown, location=location.absolute, size=size.tiny, color=sellColor)

alertcondition(buySignal, title='Alert: Signal Buy', message=' Signal Buy')
alertcondition(sellSignal, title='Alert: Signal Sell', message=' Signal Sell')


応答済み

1
開発者 1
評価
(69)
プロジェクト
113
53%
仲裁
4
25% / 75%
期限切れ
15
13%
仕事中
2
開発者 2
評価
(2)
プロジェクト
3
0%
仲裁
1
100% / 0%
期限切れ
0
仕事中
3
開発者 3
評価
(26)
プロジェクト
36
58%
仲裁
2
0% / 50%
期限切れ
2
6%
仕事中
4
開発者 4
評価
プロジェクト
1
0%
仲裁
0
期限切れ
0
5
開発者 5
評価
(252)
プロジェクト
570
36%
仲裁
64
20% / 58%
期限切れ
147
26%
6
開発者 6
評価
(126)
プロジェクト
158
35%
仲裁
4
25% / 50%
期限切れ
13
8%
7
開発者 7
評価
(45)
プロジェクト
57
30%
仲裁
0
期限切れ
2
4%
取り込み中
8
開発者 8
評価
(267)
プロジェクト
403
63%
仲裁
5
40% / 0%
期限切れ
4
1%
9
開発者 9
評価
(31)
プロジェクト
50
36%
仲裁
4
25% / 50%
期限切れ
6
12%
仕事中
10
開発者 10
評価
(167)
プロジェクト
215
57%
仲裁
8
25% / 25%
期限切れ
7
3%
仕事中
11
開発者 11
評価
(67)
プロジェクト
74
7%
仲裁
31
10% / 58%
期限切れ
6
8%
仕事中
12
開発者 12
評価
(145)
プロジェクト
161
40%
仲裁
5
0% / 80%
期限切れ
8
5%
仕事中
13
開発者 13
評価
(250)
プロジェクト
399
38%
仲裁
82
41% / 20%
期限切れ
69
17%
多忙
14
開発者 14
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
15
開発者 15
評価
(555)
プロジェクト
922
48%
仲裁
300
59% / 25%
期限切れ
123
13%
取り込み中
類似した注文
MQL5 EA - One sequence of Orders from Order1 up to Order10. Restart at next Gridline. The EA main goal is to have a sequence of Orders from 1 up to 10. Example: If price of Order1 = Order3, Order3 can be open only after price hit Order2 first; the Order2 will only open after Order1 is already open, the Order3 will only open after Order2 is already open, etc. The restart of the EA/sequence will occur only after the
I HAVE A FUNCTIONAL MT5 EA (MQL5) THAT IS BASED ON CANDLE OPEN BUT I WOULD LIKE TO AUTOMATE IT WITH OTHER PROFITABLE STRATEGIES REQUIREMENT SPECIFICATION 1. I want an experienced developer to integrate a strategy to analyse the market and open buy only trade or sell only trade according to the direction of the analysis. 2. The modification and strategy should combine many confirmations that ensure high win rates of
We are looking for an experienced individual to assist in building an MT4 signal providing indicator with a data feed of NSE (National Stock Exchange - Bombay). The indicator should be capable of analyzing real-time market data and generating accurate trading signals for different financial instruments listed on the NSE. The successful candidate will need to have a strong understanding of MT4 programming, as well as
The project: I want to speculate on the price of the USD. I have 1800$ and I want to spread it as evenly as possible across 7 different symbols. Symbol Lots 1.GBP/USD 0.07 2.EUR/USD 0.09 3. USD/CHF 0.09 4. USD/CAD 0.09 5. USD/JPY 0.09 6. AUD/USD 0.1 7. NZD/USD 0.11 For position GBP/USD, EUR/USD, AUD/USD, NZD/USD I want to enter a buy. For USD/CHF, USD/CAD, USD/JPY I want to enter a sell. The lot sizes are as noted
I am in search of a skilled MQL5 developer with a proven ability to optimize trading robots across various assets, including synthetic indices like V75, Boom and Crash, gold, US30, US100, and more. I'm looking for an experienced developer to enhance my multi-asset trading EA, which was originally developed exclusively for V75 and is based on the smart money concept. The developer must be free in taking up the job
This is a Ready Made grid Automatic EA 1. need some bug fixing and little modifcation this ea has some bug like -Takeing Random Trade after Mt4 Restart . also not flow set grid distance. like if i set 300pips grid distance, some time it place trade at 400 pips distance . fix this bug 2. Add one more anti-martingle Engine , LIKE Engine1-for martingle and Engine 2- Anti-martingle bot Engine place trade at the same time
About the file i need I have ea ex4 file but it use to set buystop or sellstop oders etc now what I want is to fit the propfirm am using because the propfirm am using have a lot size consistency rules so what I need is even if the ea set multiple buystop the file will only allow the ea to pick 2 positions and automatically delete the nearest limit Oder it can only allow the ea buystop or new position once the two
Objective: To Create an EA based on an EMA cross Strategy that utilizes martingale account management strategy with multiple profiles to better manage risk and scale safely Strategy Concept: This strategy was created around Volatility Index 75 on the 5 minute chart. It was Observed that this Index tends to frequently form very strong trends with short periods of consolidation. On applying a 10 period
I currently have an EA (.ex5 file format) running happily on MT5 system. I would like someone to convert it to MQL4 (.ex4 file format) so that I can run that same EA on the MT4 system
Hello, I'm looking for a trade copier from MT5 to NT8. The copier should be able to: 1.) Open/closed trade based on the position in MT5. 2.) Fast executions of trades. 3.) Adjustable Lot Size

プロジェクト情報

予算
50+ USD
開発者用
45 USD