I Have 2 pine scripts that I want to create an EA out of.

仕事が完了した

実行時間4 日
依頼者からのフィードバック
Developed what I asked. Good Job.
開発者からのフィードバック
Thank you!

指定

I would like to have these 2 pine scripts created into 2 different indicators for MT4.

UT BOT

//@version=4

study(title="UT Bot Alerts", overlay = true)


// Inputs

a = input(1,     title = "Key Vaule. 'This changes the sensitivity'")

c = input(10,    title = "ATR Period")

h = input(false, title = "Signals from Heikin Ashi Candles")


xATR  = atr(c)

nLoss = a * xATR


src = h ? security(heikinashi(syminfo.tickerid), timeframe.period, close, lookahead = false) : close


xATRTrailingStop = 0.0

xATRTrailingStop := iff(src > nz(xATRTrailingStop[1], 0) and src[1] > nz(xATRTrailingStop[1], 0), max(nz(xATRTrailingStop[1]), src - nLoss),

   iff(src < nz(xATRTrailingStop[1], 0) and src[1] < nz(xATRTrailingStop[1], 0), min(nz(xATRTrailingStop[1]), src + nLoss), 

   iff(src > nz(xATRTrailingStop[1], 0), src - nLoss, src + nLoss)))

 

pos = 0   

pos := iff(src[1] < nz(xATRTrailingStop[1], 0) and src > nz(xATRTrailingStop[1], 0), 1,

   iff(src[1] > nz(xATRTrailingStop[1], 0) and src < nz(xATRTrailingStop[1], 0), -1, nz(pos[1], 0))) 

   

xcolor = pos == -1 ? color.red: pos == 1 ? color.green : color.blue 


ema   = ema(src,1)

above = crossover(ema, xATRTrailingStop)

below = crossover(xATRTrailingStop, ema)


buy  = src > xATRTrailingStop and above 

sell = src < xATRTrailingStop and below


barbuy  = src > xATRTrailingStop 

barsell = src < xATRTrailingStop 


plotshape(buy,  title = "Buy",  text = 'Buy',  style = shape.labelup,   location = location.belowbar, color= color.green, textcolor = color.white, transp = 0, size = size.tiny)

plotshape(sell, title = "Sell", text = 'Sell', style = shape.labeldown, location = location.abovebar, color= color.red,   textcolor = color.white, transp = 0, size = size.tiny)


barcolor(barbuy  ? color.green : na)

barcolor(barsell ? color.red   : na)


alertcondition(buy,  "UT Long",  "UT Long")

alertcondition(sell, "UT Short", "UT Short")





2ed Pine Script Supertrend


//@version=4

study("Supertrend", overlay = true, format=format.price, precision=2, resolution="")


Periods = input(title="ATR Period", type=input.integer, defval=10)

src = input(hl2, title="Source")

Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)

changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)

showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)

highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)

atr2 = sma(tr, Periods)

atr= changeATR ? atr(Periods) : atr2

up=src-(Multiplier*atr)

up1 = nz(up[1],up)

up := close[1] > up1 ? max(up,up1) : up

dn=src+(Multiplier*atr)

dn1 = nz(dn[1], dn)

dn := close[1] < dn1 ? min(dn, dn1) : dn

trend = 1

trend := nz(trend[1], trend)

trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trend

upPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)

buySignal = trend == 1 and trend[1] == -1

plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)

plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)

dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)

sellSignal = trend == -1 and trend[1] == 1

plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)

plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)

mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)

longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.white

shortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.white

fill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)

fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)

alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")

alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")

changeCond = trend != trend[1]

alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")


応答済み

1
開発者 1
評価
(126)
プロジェクト
160
36%
仲裁
4
25% / 50%
期限切れ
13
8%
2
開発者 2
評価
(5)
プロジェクト
5
40%
仲裁
1
0% / 100%
期限切れ
1
20%
3
開発者 3
評価
(62)
プロジェクト
84
26%
仲裁
22
23% / 50%
期限切れ
23
27%
4
開発者 4
評価
(559)
プロジェクト
927
48%
仲裁
301
59% / 25%
期限切れ
124
13%
取り込み中
5
開発者 5
評価
(277)
プロジェクト
415
63%
仲裁
5
40% / 0%
期限切れ
4
1%
仕事中
6
開発者 6
評価
(236)
プロジェクト
440
26%
仲裁
125
21% / 56%
期限切れ
96
22%
仕事中
7
開発者 7
評価
(251)
プロジェクト
402
38%
仲裁
82
41% / 20%
期限切れ
70
17%
仕事中
8
開発者 8
評価
(67)
プロジェクト
74
7%
仲裁
32
9% / 56%
期限切れ
6
8%
仕事中
類似した注文
MetaTrader MT4 to MT5 Conversion I'm on the lookout for a skilled developer proficient in MetaTrader who can assist me in converting my custom indicators and Expert Advisors (EAs) from MT4 to MT5. The primary goal of this project is to ensure that my tools are seamlessly compatible with both platforms. Key Requirements: - Proven experience in MetaTrader programming - A deep understanding of the differences between
I would like a MQL5 class / robot that takes care of the entry logic for ICT OTE Model. This logic will be used in existing EA. I need annotations as well as values returns that I can use. It should have selectable inputs for the MSS and BoS lines like: sinput color BuyColor = clrDodgerBlue; //Buy Color sinput color SellColor = clrCrimson; //Sell Color Should have selectable Fib Levels. 50% and 62% Should
NEED SOMEONE WHO FULLY UNDERSTANDS THE SMART MONEY CONCEPT. I HAVE INCLUDED IMAGES OF HOW THE EA WOULD LOOK LIKE AFTER COMPLETION I have the source code to an EA already meaning the below, need it to be re-adjusted to my preferred strategy. Look to add a Break of Structure and Change of Character to the EA.EA uses the below: Key Features: 1. Liquidity Zones: Utilizes PDH/PDL, PWH/PWL, PMH, PML, and sessions as
Hi there, I'm looking for someone to build a fairly easy straight forward grid robot for me. This will be used on FX pairs but mostly DAX, NASDAQ and DOW. Attached are the inputs I need and a description of what is required for each one, but if anything is not clear or needs further information please message me. Many thanks, Nic
Need an EA to be developed based on moving averages and the awesome oscillator. To long an fx pair when the AO flips positive and closes the position when the AO flips negative. Similarly, take a short position when the AO flips negative and closes the short when the AO flips positive. This would be for MT5
I'm seeking a skilled developer to automate my trading strategy. The ideal candidate will have experience in algorithmic trading, proficient in coding languages such as Python or C++, and familiar with trading platforms like MetaTrader5 . The project involves creating a bot that can execute trades based on predefined criteria, manage risk, and adapt to market conditions. Knowledge of financial markets and backtesting
I am Ph.D. in Finance and I just bought 4 EA: EA Reaper --> 30USD EA Golden Emperador --> 30USD EA Golden Elephant and --> 30USD EA Quantum Lab --> 30USD I need a person that can help me to improve and test my strategy in this EA. I have some Ideas, but I do know how I can improve. I like also that you explain me how I can configurate well this EA in the future. I do not need program nothing. All I need is JOIN a
هل يمكنك مساعدتي؟ أريد تنفيذ إشارة تداول آلية على MT4/MT5 لنظام Android Can you help me I want to implement an automated trading signal on MT4/MT5 for Android Can you help me I want to implement an automated trading signal on MT4/MT5 for Android
Convert Pine Script Trading view To MT4 Convert Attach Script to mt4 with buy and sell signals on Chart and Data Window. The buy and sell signal must be the SAME signals, on the same candles. No deviation
Olá Preciso de um código aberto para robô expert, com as seguintes informações com base no Indicador VWAP - volume pondered average price, não precisa todos os períodos, SOMENTE DIÁRIO. aberturas de COMPRA e VENDA no cruzamento de media móvel sobre a VWAP, deixar disposição alteração do modelo da media e o período da media. OBS: 'Reverter mão' conforma o cruzamento da mídia com a VWAP(exemplo se estava vendido e

プロジェクト情報

予算
30+ USD
開発者用
27 USD