Specification
i looking for someone, who can create EA based on RSI * VWAP calculation and pinescript code:
![]()
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Xaviz
//@version=4
strategy("RSI-VWAP Indicator %", overlay = false, pyramiding = 5, initial_capital = 100000, default_qty_value = 0, commission_value = 0.04, max_labels_count = 500)
//█ Initial inputs
StartDate = timestamp( "01 Jan 2000 00:00 +0000")
Spot = input(false, "Spot Trading (no leverage)", input.bool)
testPeriodStart = input(StartDate, "Start of trading", input.time)
Length = input(16, "RSI/VWAP Length", input.integer, minval = 1)
OverSold = input(18, "RSI/VWAP Oversold", input.float, minval = 0, maxval = 100)
OverBought = input(80, "RSI/VWAP Overbought", input.float, minval = 0, maxval = 100)
EquityPercent = input(25, "% Equity on Longs", input.float, minval = 0, maxval = 100)
PositionPercent = input(50, "% Position on Closings", input.float, minval = 0, maxval = 100)
Risk = input(15, "% Drawdown allowed", input.float, minval = 0, maxval = 100)
MarginRate = input(1.0, "% Margin Rate", input.float, minval = 0) / 100
// RSI with VWAP as source
RsiVwap = rsi(vwap(close), Length)
//█ Plotting
// Rsi-vwap Line Color
RsiVwapLineColor = RsiVwap > OverBought ? color.new(color.red, 50) :
RsiVwap < OverSold ? color.new(color.lime, 50) :
color.new(color.blue, 50)
// Rsi-vwap Fill Color
FillColorOverBought = RsiVwap > OverBought ? color.new(color.red, 75) : na
FillColorOverSold = RsiVwap < OverSold ? color.new(color.lime, 75) : na
// Overbought/Oversold Color
OboughtOsoldColor = color.new(color.gray, 50)
// Rsi-vwap plot
RsiVwapLine = plot(RsiVwap, "RSI/VWAP", RsiVwapLineColor, linewidth = 2)
// Plot of the top line
OverBoughtLine = plot(OverBought, "Overbought", OboughtOsoldColor)
// Plot of the bottom line
OverSoldLine = plot(OverSold, "Oversold", OboughtOsoldColor)
// Fill between plots
fill(RsiVwapLine, OverBoughtLine, FillColorOverBought)
fill(RsiVwapLine, OverSoldLine, FillColorOverSold)
// Information panel
Equity = strategy.equity
Balance = strategy.initial_capital + strategy.netprofit
RealizedPnL = strategy.netprofit
Floating = strategy.openprofit
PercentFloating = (Floating / strategy.initial_capital) * 100
PercentRealizedPnL = (RealizedPnL / strategy.initial_capital) * 100
URealizedPnL = Floating + RealizedPnL
PercentURealizedPnL = ((URealizedPnL) / strategy.initial_capital) * 100
PositionSize = strategy.position_size * strategy.position_avg_price
Cash = Spot ? max(0, Balance - PositionSize) : max(0, Balance - (PositionSize * MarginRate))
Leverage = PositionSize / Balance
Margin = Spot ? 0 : PositionSize * MarginRate
var label labelEquity = na
labelEquity := label.new(bar_index, 50, style = label.style_label_left, textcolor = #9598a1, color = #131722, textalign = text.align_left, size = size.normal,
text = "Position Size: " + tostring(strategy.position_size, '#.########') + " " + syminfo.basecurrency + "\n" +
"Cash: " + tostring(Cash, '#.##') + " " + syminfo.currency + "\n" +
"Margin: " + tostring(Margin, '#.##') + " " + syminfo.currency + "\n" +
"Floating: " + tostring(Floating, '#.##') + " " + syminfo.currency + " / "
+ tostring(PercentFloating, '#.##') + " %" + "\n" +
"Realized PnL: " + tostring(RealizedPnL, '#.##') + " " + syminfo.currency + " / "
+ tostring(PercentRealizedPnL, '#.##') + " %" + "\n" +
"Unrealized PnL: " + tostring(URealizedPnL, '#.##') + " " + syminfo.currency + " / "
+ tostring(PercentURealizedPnL, '#.##') + " %")
// Deleting previous labels
label.delete(labelEquity[1])
//█ Backtest & Alerts
// Quantities
QuantityOnLong = Spot ? (EquityPercent / 100) * ((strategy.equity / close) - strategy.position_size) :
(EquityPercent / 100) * (strategy.equity / close)
QuantityOnClose = (PositionPercent / 100) * strategy.position_size
// Buy/Long shapes
var bool long = na
if crossover(RsiVwap[1], OverSold) and (time > testPeriodStart)
label.new(bar_index, OverSold, tostring(Leverage, "#.#") + "X", textcolor = Spot ? na : #9598a1, color = color.new(color.lime, 25), style = label.style_diamond, size = size.tiny)
long := true
// Sell/Closing shapes
if crossunder(RsiVwap[1], OverBought) and (time > testPeriodStart) and not na(long)
label.new(bar_index, OverBought, color = color.new(color.red, 25), style = label.style_diamond, size = size.tiny)
// Alerts
string BuyMessage = "q=" + tostring(EquityPercent) + "% t=market"
string SellMessage = "q=" + tostring(PositionPercent) + "% t=market"
// (copy and paste on the alert window a message similar to this)
// {{strategy.order.action}} @ {{strategy.order.price}} | e={{exchange}} a=account s={{ticker}} b={{strategy.order.action}} {{strategy.order.alert_message}}
// Market orders on long
if crossover(RsiVwap, OverSold) and (time > testPeriodStart)
strategy.entry("LONG", strategy.long, qty = QuantityOnLong, alert_message = BuyMessage)
// Market orders on close
if crossunder(RsiVwap, OverBought)
strategy.close("LONG", qty_percent = PositionPercent, comment = "CLOSE", alert_message = SellMessage)
// Max Drawdown allowed percent
strategy.risk.max_drawdown(Risk, strategy.percent_of_equity)
// by XaviZ
Responded
1
Rating
Projects
21
10%
Arbitration
4
25%
/
75%
Overdue
0
Free
2
Rating
Projects
19
16%
Arbitration
5
40%
/
40%
Overdue
0
Free
3
Rating
Projects
8
0%
Arbitration
8
13%
/
88%
Overdue
0
Free
4
Rating
Projects
0
0%
Arbitration
1
0%
/
0%
Overdue
0
Working
Published: 27 articles
5
Rating
Projects
59
27%
Arbitration
26
19%
/
54%
Overdue
10
17%
Working
Published: 1 code
6
Rating
Projects
476
40%
Arbitration
105
40%
/
24%
Overdue
81
17%
Busy
Published: 2 codes
Similar orders
I need a mt5 expert advisor as shown in the youtube video. The expert advisor need to work with three digit broker i.e. exness also with two digit broker i.e. vantage. Please specify the settings for both type of brokers. I need same result as shown in the youtube video. Video link is https://www.youtube.com/watch?v=ndVQD7iS1-A
Signalfeed for Clients (Please help)
30 - 100 USD
You can control via Telegram: /start - enable bot, begin trading, /stop - end trading, disable bot /status - trade status Bot requirements: • Automated trading throughout the day until 00:00 UTC (Moscow time) (I do not want to trade or turn the bot on 100 times a day). • Auto shutdown of the bot in Telegram at 00:00 UTC (Moscow time) and manual restart when convenient. • Market analysis 24/5 using 20 EMA, RSI, and
A repeat posting after MQL5 issues
30 - 100 USD
I am seeking an alert-only EA. An EA that will follow all the rules but not execute a trade. As this is a repeat posting I am seeking the successful technician - Xiro from Vietnam. Thanks Karl
Ninjatrader bot
30+ USD
I am looking for an experienced developer who specializes in NinjaTrader and NinjaScript to build a fully automated trading bot. The goal is to create a “sniper-style” trading system that focuses on precise entries, strong risk management, and structured trading logic. This is NOT a simple indicator project I am looking for someone who understands algorithmic trading and can translate trading rules into a reliable
Expert Advisor with proven track record required
100 - 300 USD
Looking for a trading bot / Expert Advisor that wont make dozens of small successful trades and then one or two unsuccessful trades that wipes out your account Requirements: - MT4 capable - Use on the major currency pairs - although open to other currency pairs - Be successful in monetary terms not necessarily in how many successful trades
MT5 prop firm EA
30+ USD
I need a MT5 Prop firm challenge passing EA with strict prop firm rules compliance. Any strategy can be used but win rate should be above 70%. It should have high impact news filter and a dashboard panel to monitor daily drawdown, target profit, current balance, etc. It should not have martingale, grid, hedging, etc
Hello Developers I have a Project to get done! i have a simple strategy can you please create the automated forex ea to execute my trading strategy? i need custom ea for tradingview and mt4/mt5 correction: i need a tradingview indicator created that tells me when to buy or sell. and ea in mt4/mt5
Pro firm setup
30+ USD
Hi, I am starting a futures prop firm. Are you able to help me get data feed for this with no delays and can handle many traders on the platform. Additionally, are you able to handle charts for us
Mam kody EA Bot. Chciałbym je dokończyć, dopracować i ukończyć projekty. Chciałbym otrzymać pliki SET po ukończeniu EA. Jeśli jesteś zainteresowany, skontaktuj się ze mną. Szukam doświadczonego programisty do stworzenia dedykowanego doradcy eksperckiego (EA) do tradingu. Programista powinien posiadać solidną wiedzę z zakresu MT5, logiki strategii, wskaźników, zarządzania ryzykiem i backtestingu. Doświadczenie w
Looking for an Expert EA Developer for MT5
30 - 200 USD
I am looking for an experienced developer to create a custom Expert Advisor (EA) for trading. The developer should have strong knowledge of MT4/MT5, strategy logic, indicators, risk management, and backtesting. Experience in building reliable and professional trading robots is preferred. Please contact me if you have done similar projects before. 9817724000
Project information
Budget
30 - 50 USD