CONVERSION OF PINESCRIPT STRATEGY TO FOREX ROBOT

MQL4 Experten Konvertierung

Auftrag beendet

Ausführungszeit 22 Stunden
Bewertung des Kunden
Mehran made my script for a very competitive price all in just 1 day. I couldn't be happier. I will continue to use him in future if i need a freelancer. Would highly recommend
Bewertung des Entwicklers
He is a great customer. Thanks...

Spezifikation

//@version=4
strategy("OSPREY NO VISUAL", shorttitle="OSPREY NO VISUAL", overlay=true, pyramiding=1, calc_on_every_tick = false)


tick_round(x) => 
    round(x / syminfo.mintick) * syminfo.mintick

position = 0

//EMAs
ema_1 = ema(close, 55)
ema_2 = ema(close, 110)
ema_3 = ema(close, 200)

//Keltner Channel
ma      = sma(close, 20)
rangema = sma(tr, 20)
upper = ma + rangema 
lower = ma - rangema

// Signal for crossing Keltner Channel
crossUpper = crossover(close, upper)
crossLower = crossunder(close, lower)

//Signal for EMA Crossover
long_cross = crossover(ema_1, ema_2)
short_cross = crossover(ema_2, ema_1)

// Buying price - first high after the cross
bprice = 0.0
bprice := crossUpper ? low+syminfo.mintick : nz(bprice[1])

// Selling price - first low after the cross
sprice = 0.0
sprice := crossLower ? high -syminfo.mintick : nz(sprice[1]) 

crossBcond = false
crossBcond := crossUpper ? true 
 : na(crossBcond[1]) ? false : crossBcond[1]

crossScond = false
crossScond := crossLower ? true 
 : na(crossScond[1]) ? false : crossScond[1]

// Condition to cancel orders
cancelBcond = crossBcond and (close < ma or high >= bprice )
cancelScond = crossScond and (close > ma or low <= sprice )


// Active stop long order
waitingB = false
waitingB := position[1] == 1 ? false : crossUpper ? true : cancelBcond ? false : nz(waitingB[1])


// Active stop short order
waitingS = false
waitingS := position[1] == -1 ? false : crossLower ? true : cancelScond ? false : nz(waitingS[1])


// Long/Short signals
long1 = long_cross 
long2 = high >= bprice 
long3 = close > upper
long4 = close > ema_3

short1 = short_cross
short2 = low <=  sprice
short3 = close < lower
short4 = close < ema_3

long = 0
if (long1 and long2 and long3 and long4)
    long := 1

short = 0
if (short1 and short2 and short3 and short4)
    short := 1


// Keeping track of current position
position := long ? 1 : short ? -1 : nz(position[1])


//Limit Levels
stop_level_long = strategy.position_avg_price * (1 - 0.004)
take_level_long = strategy.position_avg_price * (1 + 0.008)
stop_level_short = strategy.position_avg_price * (1 + 0.004)
take_level_short  = strategy.position_avg_price * (1 - 0.008)

//Entries
strategy.entry("Long Entry", strategy.long, when=long)
strategy.exit("SL/TP", "Long Entry", stop=stop_level_long, limit=take_level_long)

strategy.entry("Short Entry", strategy.short, when=short)
strategy.exit("SL/TP", "Short Entry", stop=stop_level_short,limit=take_level_short)

Hi! I currently have a working strategy script on trading view that I have developed and am happy with the backtest data. I want you to take the entry and exit criteria that currently works so well, but implement them into an EA. The only input that the EA needs would be the risk % which the EA needs to correctly calculate the position size.


I would also like you to add comments throughout the code so i understand it :)


Bewerbungen

1
Entwickler 1
Bewertung
(356)
Projekte
632
26%
Schlichtung
89
73% / 13%
Frist nicht eingehalten
12
2%
Frei
2
Entwickler 2
Bewertung
(11)
Projekte
28
68%
Schlichtung
2
0% / 0%
Frist nicht eingehalten
9
32%
Arbeitet
3
Entwickler 3
Bewertung
(88)
Projekte
143
39%
Schlichtung
21
19% / 48%
Frist nicht eingehalten
30
21%
Frei
4
Entwickler 4
Bewertung
(401)
Projekte
529
74%
Schlichtung
9
44% / 0%
Frist nicht eingehalten
24
5%
Arbeitet
5
Entwickler 5
Bewertung
(546)
Projekte
823
73%
Schlichtung
15
53% / 13%
Frist nicht eingehalten
193
23%
Arbeitet
6
Entwickler 6
Bewertung
(555)
Projekte
922
48%
Schlichtung
300
59% / 25%
Frist nicht eingehalten
123
13%
Beschäftigt
Ähnliche Aufträge
Hello, I am looking for an programmer to convert a TradingView strategy pine script to MT5 EA auto trade bot. The indicator is based on the FVG/Imbalance (Pine script will be provided) The MT5 EA must include the strategy with the same options panel as TradingView script The MT5 EA must return 100% the same results as TradingView script The MT5 EA must be errors free The MT5 EA code must be well commented
Hello, How are you doing? I need a developer who can create a scanner with just CCi indicator for overbought and oversold for many pairs and Is it possible to put it with the free plapn of tradingview ? Requirements will be sent via inbox Kindly bid if this is what you can do Thanks
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
Hi, Would it be possible to get a developer for my trading system based on the attached specification? EA DETAILS Indicators to use (1) Better RSI () (2) Dynamic Linear Regression Channel (DLRC) by Iravan on Tradingview.com () (3) Range filter Buy and Sell 5 min – guikroth version on Tradingview.com () (With Dynamic Linear Regression, the period/length is automatically adjusted making it much faster to trade
I need a bot that copy trade from mt4 to telegram and also sends entry point , stop loss and take profit for a specific forex pair or any other pair that is traded
I need to create a quantitative forex trading bot which must have quantitative and DCA features together. If anyone can do for me then please apply. I will then discuss with you and send you the complete instruction. Looking forward to start as soon as possible. Thank You
Hello. I need experienced dev to program a cTrader EA. Ea will Work on breakout asian Session box and placing order after confirmed breakout and retest of asian box. Ea need to check valid account number and experiation time using API connected to external Server. So developer need to be experienced in this mind of job. Rest of details i will share later
Full description here please read this: https://docs.google.com/document/d/1-VY3DbYd-MwHwkcPuVzF38HZT8iA5MTIDU4cUih8kpw/edit?usp=drivesdk Candle criteria for entry: Buy: Enter after break of last candle high Place SL at bottom of the last candle TP target is size of the last candle exactly in pips Sell: Enter after break of last candle low Place SL at top of the last candle TP target is size of the last candle
I need smart, professional, and fast programmer for doing this project quickly, that have experience in EA with minimum 300 projects finish, and have good review and reputation from their client Share your link review, if you not qualified, dont apply! I will bidding the programmer from experience, review, reputation, price, and days working My EA using Moving Average, Average True Range, and using consecutives
Modify EA 30+ USD
Modify existing ea to properly follow logic or create new one base on specifications. Use appropriate indicators to make ea function efficiently. In case of further explanations kindly send messages

Projektdetails

Budget
50+ USD
Für die Entwickler
45 USD