Trabalho concluído
Tempo de execução 2 dias
Comentário do desenvolvedor
Thanks for the fair business.
Comentário do cliente
He truly deliver with remarkable speed and ease. The process was incredibly straightforward and efficient. Highly recommend!
Termos de Referência
Just a few options i would need,
- Enter the trade immediately after the trading signal or enter the trade after the closing candle.
- Close the position after a reversal signal or not.
- Maximum of 3 trades at the same time.
- TP & SL in points or Trailing stop
- Fixed lots or % risk based on balance
//@version=5
indicator("Trend [Dr Kang]", overlay = true)
//Pivots
plotPivots = true
pivotLookup = 1
hih = ta.pivothigh(high, pivotLookup, pivotLookup)
lol = ta.pivotlow (low , pivotLookup, pivotLookup)
top = ta.valuewhen(hih, high[pivotLookup], 0)
bottom = ta.valuewhen(lol, low [pivotLookup], 0)
stop_loss_long = ta.lowest(low[1], 2) * (1 - (0/100 * 0.01))
stop_loss_short = ta.highest(high[1], 2) * (1 + (0/100 * 0.01))
plot(top, offset=-pivotLookup, linewidth=1, color=(top != top[1] ? na : (plotPivots ? color.yellow : na)), title="매수 손절라인")
plot(bottom, offset=-pivotLookup, linewidth=1, color=(bottom != bottom[1] ? na : (plotPivots ? color.blue : na)), title="매도 손절라인")
//////////// BB 202 ////////////////////
bbbasis = ta.ema(close, 20)
bbdev = 2 * ta.stdev(close, 20)
bbupper = bbbasis + bbdev
bblower = bbbasis - bbdev
emaColor = bbbasis > ta.sma(close,20) ? color.yellow : color.blue
bf1 = plot(ta.sma(close,20), color=color.blue, title="SMA 20")
bf2 = plot(bbbasis, "BB Basis 202", color=color.yellow, offset = 0, linewidth = 1)
plot(bbupper, "BB Upper 202", color=color.white, offset = 0, linewidth = 1)
plot(bblower, "BB Lower 202", color=color.white, offset = 0, linewidth = 1)
bbfColor = bbbasis > ta.sma(close,20) ? color.yellow : color.blue
fill(bf1, bf2, title='Band Filler', color=bbfColor, transp=70)
//////////// BB44 ////////////////////
bbbasis4 = ta.ema(open, 4)
bbdev4 = 4 * ta.stdev(open, 4)
bbupper4 = bbbasis4 + bbdev4
bblower4 = bbbasis4 - bbdev4
plot(bbbasis4, "BB Basis 44", color=color.gray, offset = 0, linewidth = 1, display = display.none)
plot(bbupper4, "BB Upper 44", color=color.gray, offset = 0, linewidth = 1)
plot(bblower4, "BB Lower 44", color=color.gray, offset = 0, linewidth = 1)
///// Trading Alert //////
Buy = low < bottom and close > bottom and bbbasis > ta.sma(close, 20) and close > bblower
Sell = high > top and close < top and bbbasis < ta.sma(close, 20) and close < bbupper
plotshape(Buy, title="Buy" , style = shape.triangleup, color = color.yellow, size = size.tiny, location = location.belowbar)
plotshape(Sell, title="Sell" , style = shape.triangledown, color = color.blue, size = size.tiny, location = location.abovebar)
Buy_DB = low < bottom and low < bblower4 and low < bblower and close > bblower4 and close > bblower and bbbasis > ta.sma(close, 20)
Sell_DB = high > top and high > bbupper4 and high > bbupper and close < bbupper4 and close < bbupper and bbbasis < ta.sma(close, 20)
plotshape(Buy_DB, title="Buy_DB" , style = shape.triangleup, color = color.white, size = size.tiny, location = location.belowbar)
plotshape(Sell_DB, title="Sell_DB" , style = shape.triangledown, color = color.white, size = size.tiny, location = location.abovebar)
if Buy_DB or Buy
alert("Buy XAUUSD q=0.01 tt=200 td=100 ts=200 m=600 close m=601", alert.freq_once_per_bar)
if Sell_DB or Sell
alert("Sell XAUUSD q=0.01 tt=100 td=50 ts=100 m=601 close m=600", alert.freq_once_per_bar)
//Close Short position
bgcolor(ta.crossover(bbbasis, ta.sma(close, 20))?color.new(color.yellow,90):na)
if ta.crossover(bbbasis, ta.sma(close, 20) )
alert("close m=601", alert.freq_once_per_bar_close)
//Close Long position
bgcolor(ta.crossover(ta.sma(close, 20), bbbasis)?color.new(color.blue,90):na)
if ta.crossunder(bbbasis, ta.sma(close, 20))
alert("close m=600", alert.freq_once_per_bar_close)

Respondido
1
Classificação
Projetos
401
27%
Arbitragem
39
41%
/
49%
Expirado
1
0%
Livre
2
Classificação
Projetos
35
23%
Arbitragem
4
0%
/
50%
Expirado
2
6%
Trabalhando
3
Classificação
Projetos
46
24%
Arbitragem
34
9%
/
85%
Expirado
10
22%
Livre
4
Classificação
Projetos
8
50%
Arbitragem
6
17%
/
50%
Expirado
2
25%
Livre
5
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
6
Classificação
Projetos
4
0%
Arbitragem
2
0%
/
100%
Expirado
1
25%
Livre
7
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
8
Classificação
Projetos
373
72%
Arbitragem
19
32%
/
47%
Expirado
14
4%
Livre
Publicou: 14 códigos
9
Classificação
Projetos
473
40%
Arbitragem
103
41%
/
23%
Expirado
78
16%
Ocupado
Publicou: 2 códigos
Pedidos semelhantes
Hello, I'm looking to find out the cost of creating a mobile trading robot. I've tried to describe it as thoroughly as possible in the following document. I look forward to your response. I'd like to know the costs, delivery time, and how you plan to implement it before making a decision
I have an existing MT5 Expert Advisor (“E-Core”). I need an experienced MQL5 developer to integrate a structured risk management upgrade and a higher timeframe trend filter into the current code. Two files will be provided: 1️⃣ E-Core Source Code (Current Version) 2️⃣ Update Instructions File (contains exact inputs, functions, and logic to integrate) The developer must: Integrate the update logic
DO NOT RESPOND TO WORK WITH ANY AI. ( I CAN ALSO DO THAT ) NEED REAL DEVELOPING SKILL Hedge Add-On Rules for Existing EA Core Idea SL becomes hypothetical (virtual) for the initial basket and for the hedge basket . When price hits the virtual SL level , EA does not close the losing trades. Instead, EA opens one hedge basket in the opposite direction. Original basket direction Hedge basket direction (opposite) Inputs
Billionflow
30 - 100 USD
Trading specifications: Indicators: Bollinger band ( Period 40, Deviation 1 apply to close) Moving Average (Exponential ) Period 17 applied to high Moving Average ( Exponential ) Period 17 applied to low But Signal enter a buy trade when prices crosses the lower band of the bollinger band up and also crosses the moving average channel of high and low the reverse is true for sell signal
Hello, I am a user of the "BUY STOP SELL STOP V6" trading bot, which is an advanced Grid System bot. The bot is primarily designed for Gold (XAUUSD), but I want it to work on all currency pairs. "The bot contains a privacy/protection code that prevents it from running on other accounts or being modified on any platform, as it has a client account number lock mechanism" --- Bot Description & Current Settings Bot Type
I am looking for a highly experienced Pine Script v5 developer to build a professional, non repaint price action indicator for TradingView. or a ready made one so i can purchase. This is a structured two phase project. The goal is to create a clean, intelligent price action tool that works for both fast intraday trading and swing trading. Only apply if you have strong Pine experience and understand liquidity
Hello, I’m looking for an experienced MQL4/MQL5 developer to work with me on an ongoing basis. My clients request services such as: Converting TradingView Pine Script indicators/strategies into MT4 or MT5 Expert Advisors Converting MT4 EAs to MT5 (and MT5 to MT4) Compiling and fixing existing MQL4 / MQL5 EA code Adding simple features like alerts, SL/TP, lot size, and basic money management This job is for
I am looking someone to create an EA based on my MACD Histo indicator / strategy from Pinescript. I will send it to you for you to replicate. The EA shall have: - Divergence length in bars, min and max values. - Pivot Logic - Entry on close of divergence confirmation bar. - Dynamic lot size dependent on SL/TP, in monetary value. - SL / TP in percent away from entry, separate values for long and short. - Time, day and
Hello, I have a breakout EA with reversal logic. I own the full source code for both MT4 and MT5 versions. I need the modifications implemented for both MT4 and MT5 versions. I need several modifications: – Multiple reversals with configurable parameters – Breakeven functionality – Entry only after candle close beyond range + offset – Time-based activation – Alternative offset calculation logic – Automatic close at
simple automated trading system with adaptive risk management and trend-based execution. The EA manages trades with dynamic position handling and built-in stability filters. Designed for single-position trading and disciplined execution 30 usd budget
Informações sobre o projeto
Orçamento
40+ USD