Specifiche
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
Con risposta
1
Valutazioni
Progetti
21
10%
Arbitraggio
4
25%
/
75%
In ritardo
0
Gratuito
2
Valutazioni
Progetti
19
16%
Arbitraggio
5
40%
/
40%
In ritardo
0
Gratuito
3
Valutazioni
Progetti
8
0%
Arbitraggio
8
13%
/
88%
In ritardo
0
Gratuito
4
Valutazioni
Progetti
0
0%
Arbitraggio
1
0%
/
0%
In ritardo
0
In elaborazione
Pubblicati: 27 articoli
5
Valutazioni
Progetti
59
27%
Arbitraggio
26
19%
/
54%
In ritardo
10
17%
In elaborazione
Pubblicati: 1 codice
6
Valutazioni
Progetti
474
39%
Arbitraggio
103
41%
/
23%
In ritardo
79
17%
Occupato
Pubblicati: 2 codici
Ordini simili
Cash Flow EA
30+ USD
I want a trading robot with proper risk management and good trading strategies it must make money ,place stop loss below the entry and place a take profit no loss only wins mostly trade major
Busco robot para trading en el oro o forex.
30 - 50 USD
Busco un robot para trading de scalping en oro o forex, el robot debe ser rentable en esos mercados, podemos automatizar mi estrategia basada en medias móviles con estrategia de scalping o bien si él desarollador tiene uno que funcione así y sea rentable podemos ver la opción de un demo o cuenta de lectura para estar seguros de la rentabilidad en el robot
Create a simple EA using to mql5 indicators.
120 - 180 USD
MT4 EA TO TAKE TRADES FROM (A) HYDRA TREND RIDER AND (B) IQ GOLD GANN LEVELS ON MQL5.COM The MT4 version of these two indicators can be found on the mql5.com website with the following links: Hydra Trend Rider: https://www.mql5.com/en/market/product/111010?source=Site +Profile+Seller IQ Gold Gann Levels: https://www.mql5.com/en/market/product/134335?source=Site +Profile+Seller (1) ENTRY (a) Hydra Trend Rider
Need a Developer for Designing Robot for MT4
100 - 500 USD
I have a strategy for US100 where I want a bot to trade according to my strategy, contact me who have proven experience in making bots for MT4 or MT5
Xcopcash
30 - 400 USD
It the most grate trading robot vacuum forex cleaner it's best helper in the whole south Africa it profitable and helps lots of people in Africa it's high quality standard are maintained ina official website this I created byAkhan I siyo
Job Description We are looking for an experienced MQL5 developer to build a professional Expert Advisor (EA) for MetaTrader 5 based on a detailed quantitative trading model. The EA will trade XAUUSD (Gold) on the M5 timeframe using a Session Breakout + Fibonacci Retracement strategy with advanced institutional-level filters. The system includes volatility filters, liquidity sweep detection, London session
I need an experienced MQL5 developer to modify my existing MT5 EA by replacing the current entry logic with a new breakout strategy and implementing strict prop-firm safety protections. The EA must behave exactly as specified below. If the final EA does not match the logic described, I will request revisions until it does. SYMBOL AND TIMEFRAME Symbol: USDJPY Timeframe: M15 only TRADING SESSION Trades may only open
I am looking to purchase an existing and profitable Expert Advisor (EA) designed for Gold (XAUUSD) scalping. This is not a request to develop a new EA . I am only interested in a ready system that is already trading profitably on a live account . Requirements • Designed for Gold / XAUUSD • Compatible with MetaTrader 5 (MT5) • Scalping strategy (preferably M1 or M5) • Verified live trading performance (preferably 6
2 FX pairs M15 execution with higher timeframe bias Session-based trading (UK time) Fixed % risk per trade Controlled pyramiding (add to winners only) Strict daily loss limits (FTMO-style) Proper order handling (SL always set) Basic logging (CSV) Strategy logic will be provided in detail after NDA / agreement. Must deliver: Source code (.mq5) Compiled file (.ex5) Clean, well-commented code Short support window for
Tradingview indicator
30+ USD
Hi, are you able to create a script/indicator on tradingview that displays a chart screener and it allows me to input multiple tickers on the rows. then the colums with be like "premarket high, premarket low, previous day high, previous day low" . When each or both of the levels break, there will pop up a circle on the chart screener, signaling to me what names are above both PM high and previous day high or maybe
Informazioni sul progetto
Budget
30 - 50 USD