Trading view pinescript editor and connecting the script to MT5 using pineconnector

MQL5 Uzman Danışmanlar

İş Gereklilikleri

I have pine editor script I want to convert this into MT5 EA Here is the link of this pine editor script kindly have a look on this further details will be discussed after having a look on this //@version=6
// Copyright (c) 2019-present, Alex Orekhov (everget)
// Chandelier Exit script may be freely distributed under the terms of the GPL-3.0 license.
indicator('Chandelier Exit', shorttitle = 'CE', overlay = true)
const string calcGroup = 'Calculation'
length = input.int(22, title = 'ATR Period', group = calcGroup)
mult = input.float(3.0, step = 0.1, title = 'ATR Multiplier', group = calcGroup)
useClose = input.bool(true, title = 'Use Close Price for Extremums', group = calcGroup)
const string visualGroup = 'Visuals'
showLabels = input.bool(true, title = 'Show Buy/Sell Labels', group = visualGroup)
highlightState = input.bool(true, title = 'Highlight State', group = visualGroup)
const string alertGroup = 'Alerts'
awaitBarConfirmation = input.bool(true, title = 'Await Bar Confirmation', group = alertGroup)
//---
atr = mult * ta.atr(length)
longStop = (useClose ? ta.highest(close, length) : ta.highest(length)) - atr
longStopPrev = nz(longStop[1], longStop)
longStop := close[1] > longStopPrev ? math.max(longStop, longStopPrev) : longStop
shortStop = (useClose ? ta.lowest(close, length) : ta.lowest(length)) + atr
shortStopPrev = nz(shortStop[1], shortStop)
shortStop := close[1] < shortStopPrev ? math.min(shortStop, shortStopPrev) : shortStop
var int dir = 1
dir := close > shortStopPrev ? 1 : close < longStopPrev ? -1 : dir
const color textColor = color.white
const color longColor = color.green
const color shortColor = color.red
const color longFillColor = color.new(color.green, 85)
const color shortFillColor = color.new(color.red, 85)
buySignal = dir == 1 and dir[1] == -1
longStopPlot = plot(dir == 1 ? longStop : na, title = 'Long Stop', style = plot.style_linebr, linewidth = 2, color = longColor)
plotshape(buySignal ? longStop : na, title = 'Long Stop Start', location = location.absolute, style = shape.circle, size = size.tiny, color = longColor)
plotshape(buySignal and showLabels ? longStop : na, title = 'Buy Label', text = 'Buy', location = location.absolute, style = shape.labelup, size = size.tiny, color = longColor, textcolor = textColor)
sellSignal = dir == -1 and dir[1] == 1
shortStopPlot = plot(dir == 1 ? na : shortStop, title = 'Short Stop', style = plot.style_linebr, linewidth = 2, color = shortColor)
plotshape(sellSignal ? shortStop : na, title = 'Short Stop Start', location = location.absolute, style = shape.circle, size = size.tiny, color = shortColor)
plotshape(sellSignal and showLabels ? shortStop : na, title = 'Sell Label', text = 'Sell', location = location.absolute, style = shape.labeldown, size = size.tiny, color = shortColor, textcolor = textColor)
midPricePlot = plot(ohlc4, title = '', display = display.none, editable = false)
fill(midPricePlot, longStopPlot, title = 'Long State Filling', color = (highlightState and dir == 1 ? longFillColor : na))
fill(midPricePlot, shortStopPlot, title = 'Short State Filling', color = (highlightState and dir == -1 ? shortFillColor : na))
await = awaitBarConfirmation ? barstate.isconfirmed : true
alertcondition(dir != dir[1] and await, title = 'CE Direction Change', message = 'Chandelier Exit has changed direction, {{exchange}}:{{ticker}}')
alertcondition(buySignal and await, title = 'CE Buy', message = 'Chandelier Exit Buy, {{exchange}}:{{ticker}}')
alertcondition(sellSignal and await, title = 'CE Sell', message = 'Chandelier Exit Sell, {{exchange}}:{{ticker}}')

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(237)
Projeler
298
28%
Arabuluculuk
33
24% / 61%
Süresi dolmuş
9
3%
Çalışıyor
2
Geliştirici 2
Derecelendirme
(183)
Projeler
314
24%
Arabuluculuk
23
35% / 13%
Süresi dolmuş
24
8%
Serbest
Yayınlandı: 3 kod
3
Geliştirici 3
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
4
Geliştirici 4
Derecelendirme
(12)
Projeler
18
39%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
1
6%
Serbest
5
Geliştirici 5
Derecelendirme
(5)
Projeler
8
0%
Arabuluculuk
3
33% / 33%
Süresi dolmuş
3
38%
Yüklendi
6
Geliştirici 6
Derecelendirme
(10)
Projeler
13
23%
Arabuluculuk
3
33% / 67%
Süresi dolmuş
1
8%
Serbest
7
Geliştirici 7
Derecelendirme
(86)
Projeler
118
69%
Arabuluculuk
5
80% / 0%
Süresi dolmuş
11
9%
Çalışıyor
8
Geliştirici 8
Derecelendirme
(99)
Projeler
107
29%
Arabuluculuk
3
33% / 33%
Süresi dolmuş
2
2%
Yüklendi
9
Geliştirici 9
Derecelendirme
(264)
Projeler
593
35%
Arabuluculuk
64
20% / 58%
Süresi dolmuş
147
25%
Serbest
Yayınlandı: 1 makale, 22 kod
10
Geliştirici 10
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
11
Geliştirici 11
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
12
Geliştirici 12
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
13
Geliştirici 13
Derecelendirme
(1)
Projeler
0
0%
Arabuluculuk
4
0% / 75%
Süresi dolmuş
0
Çalışıyor
14
Geliştirici 14
Derecelendirme
(6)
Projeler
12
42%
Arabuluculuk
2
0% / 100%
Süresi dolmuş
1
8%
Serbest
15
Geliştirici 15
Derecelendirme
Projeler
0
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Çalışıyor
16
Geliştirici 16
Derecelendirme
(4)
Projeler
7
0%
Arabuluculuk
1
100% / 0%
Süresi dolmuş
3
43%
Çalışıyor
Benzer siparişler
(15M + 1H Support & Resistance + Liquidity Wick + Trailing SL) 🎯 Objective Develop an MT5 Expert Advisor (MQL5) for XAUUSD (Gold) based on 15-minute liquidity rejection at H1/M15 Support & Resistance zones , with candle-close based trailing stop loss . 📊 On-Chart Display Detected Support & Resistance zones Trade direction Current SL & trailing level Active session 🔐 Risk Rules Only one trade per signal No
Hi, im not looking into developing a new EA. I am looking into purchasing an existing EA that can deliver such results like: mq5 source, 4 year backtest 2021‑2025 report, equity curve, trade list, strategy description, and 1‑month demo access. i need a concrete prove of experience functioning existing EA working perfectly and as contained on my description, then we can't strike a deal. Thank you
I’m looking for an experienced EA developer to develop a hedging Expert Advisor for XAUUSD , designed with the primary objective of maximizing broker commission rebates while maintaining overall account profitability . The EA should: Trade XAUUSD only Use a hedging strategy (frequent buy/sell positions) Be optimized for high trading volume to “milk” broker commissions Still aim to keep the net account profitable or
1.Session high low will use GMT time as range. I am not sure how the EA will handle the DST. When GMT+1 is xx:00 - xx:00 When GMT is xx:00 - xx:00 above is Asia range. When GMT+1 is xx: 00 - xx:00 When GMT is xx:00 - xx:00 Above is London range. Entry windows one for London Session and one for NY Session Emas for bias Fractals indicator for invalidation We will discuss more later
Hello all developers! I need a profitable EA ready made, I am paying good, but only serious offer please. In first message please send me backtesting resaults and demo version. If you will not do this your application will be rejected, no exceptions. Source of code of course required
Buen día. Busco un desarrollador para agregar sistema de Martingala a un Bot de MT4, sin poseer el código fuente, solo el archivo EX4. Mas detalles en mensaje privado, agradezco la atención prestada
I need an MQL5 indicator that identifies reversals without repainting or placing signals with an offset. The goal is to minimize lag and reduce whipsaw trades. Desired results are similar to the attached image. Requirements: - No repainting - No signal offset - Emphasis on reducing lag - MQL5 compatible - Clear, concise code If you have the expertise to create a reliable, high-performance indicator, let's discuss
want a highly profitable EA; price is not an issue, as long as you can prove it and send me a demo for me to test. You need to prove yourself first. The EA needs a year of stable backtesting
I am looking for a skilled EA developer to program an automated trading system. The project will involve integrating a proprietary indicator that I will provide, along with clear instructions outlining how trades should be handled. The EA must operate solely on the 1-minute (M1 / 60-second) chart and react only to the indicator’s signals. Key requirements: Trade entries must be triggered exclusively by the indicator
I’m looking for an experienced MQL5 developer to build TWO MT5 custom indicators that detect multi-condition M30 trade setups and send Telegram alerts before trade execution . This project requires strict close-based logic , multi-indicator buffer processing , and non-repainting behavior . HIGH-LEVEL REQUIREMENTS Indicators must evaluate signals from M30 only All conditions are checked only after candle close Logic

Proje bilgisi

Bütçe
100 - 150 USD

Müşteri

Verilmiş siparişler1
Arabuluculuk sayısı0