Convert all singal to EA same to same and some points sl leastet swing high and low, tp book 50 % in 5$ and sl ctc and final tp 10$ hols sl our tp

MQL5 エキスパート

指定

//@version=5
indicator("Gold Plus", overlay=true, max_labels_count=500)

// ===== COLORS =====
buyColor   = #00ff00
sellColor  = #ff0000
smartBuy   = #0099ff
smartSell  = #ff9900

// ===== INPUTS =====
sigsensiviti = input.float(2.5, "Sensitivity", group="Main Settings")
signaltype   = input.string("All Signals","Signals", ["All Signals","Smart Signals"], group="Main Settings")

factor = 11

// ===== HIDDEN MAs =====
ema200 = ta.ema(close, 200)
sma13  = ta.sma(close, 13)

// ===== SUPERTREND =====
supertrend(_close, factor, atrLen) =>
    atr = ta.atr(atrLen)
    upperBand = _close + factor * atr
    lowerBand = _close - factor * atr
    prevLowerBand = nz(lowerBand[1])
    prevUpperBand = nz(upperBand[1])
    lowerBand := lowerBand > prevLowerBand or close[1] < prevLowerBand ? lowerBand : prevLowerBand
    upperBand := upperBand < prevUpperBand or close[1] > prevUpperBand ? upperBand : prevUpperBand
    int direction = na
    float superTrend = na
    prevSuperTrend = superTrend[1]
    if na(atr[1])
        direction := 2
    else if prevSuperTrend == prevUpperBand
        direction := close > upperBand ? -1 : 1
    else
        direction := close < lowerBand ? 1 : -1
    superTrend := direction == -1 ? lowerBand : upperBand
    [superTrend, direction]

// ===== CURRENT TF SIGNALS =====
[st, dir] = supertrend(open, sigsensiviti, factor)

bull  = ta.crossover(close, st) and close >= sma13 and not(close[1] > ema200 and close > ema200)
bear  = ta.crossunder(close, st) and close <= sma13 and not(not(close[1] > ema200 and close > ema200))

Sbull = ta.crossover(close, st) and close >= sma13 and (close[1] > ema200 and close > ema200)
Sbear = ta.crossunder(close, st) and close <= sma13 and not(close[1] > ema200 and close > ema200)

// ===== SIGNAL LABELS =====
plotshape(signaltype=="All Signals" and bull,  "Buy",  shape.labelup,   location.belowbar, buyColor,  textcolor=color.black, size=size.small, text="BUY")
plotshape(signaltype=="All Signals" and bear,  "Sell", shape.labeldown, location.abovebar, sellColor, textcolor=color.white, size=size.small, text="SELL")
plotshape(Sbull, "Smart Buy",  shape.labelup,   location.belowbar, smartBuy,  textcolor=color.white, size=size.small, text="SMART BUY")
plotshape(Sbear, "Smart Sell", shape.labeldown, location.abovebar, smartSell, textcolor=color.white, size=size.small, text="SMART SELL")

// ===== SOFT TREND BG =====
bgcolor(dir == -1 ? color.new(#00ff00, 92) : color.new(#ff0000, 92))

// ===== MTF TREND FUNCTION =====
getTrend(tf) =>
    [_, d] = request.security(syminfo.tickerid, tf, supertrend(open, sigsensiviti, factor))
    d == -1 ? "Bullish" : "Bearish"

// ===== GET MULTI TF TRENDS =====
trend1m  = getTrend("1")
trend5m  = getTrend("5")
trend15m = getTrend("15")
trend1h  = getTrend("60")
trend4h  = getTrend("240")

// ===== DASHBOARD =====
var table dash = table.new(position.bottom_right, 2, 6, bgcolor=color.new(#000000, 0))

if barstate.islast
    table.cell(dash, 0, 0, "Gold Plus", text_color=#FFD700, text_size=size.large)

    table.cell(dash, 0, 1, "1M Trend")
    table.cell(dash, 1, 1, trend1m,  text_color = trend1m  == "Bullish" ? buyColor : sellColor)

    table.cell(dash, 0, 2, "5M Trend")
    table.cell(dash, 1, 2, trend5m,  text_color = trend5m  == "Bullish" ? buyColor : sellColor)

    table.cell(dash, 0, 3, "15M Trend")
    table.cell(dash, 1, 3, trend15m, text_color = trend15m == "Bullish" ? buyColor : sellColor)

    table.cell(dash, 0, 4, "1H Trend")
    table.cell(dash, 1, 4, trend1h,  text_color = trend1h  == "Bullish" ? buyColor : sellColor)

    table.cell(dash, 0, 5, "4H Trend")
    table.cell(dash, 1, 5, trend4h,  text_color = trend4h  == "Bullish" ? buyColor : sellColor)

応答済み

1
開発者 1
評価
(18)
プロジェクト
22
9%
仲裁
6
33% / 50%
期限切れ
1
5%
仕事中
2
開発者 2
評価
(9)
プロジェクト
12
8%
仲裁
3
33% / 67%
期限切れ
1
8%
3
開発者 3
評価
(16)
プロジェクト
35
23%
仲裁
4
0% / 50%
期限切れ
2
6%
仕事中
4
開発者 4
評価
(6)
プロジェクト
5
0%
仲裁
2
50% / 50%
期限切れ
2
40%
5
開発者 5
評価
(1)
プロジェクト
1
0%
仲裁
1
0% / 0%
期限切れ
0
6
開発者 6
評価
(37)
プロジェクト
42
21%
仲裁
13
8% / 69%
期限切れ
1
2%
多忙
7
開発者 7
評価
(30)
プロジェクト
31
65%
仲裁
1
0% / 0%
期限切れ
1
3%
仕事中
パブリッシュした人: 5 codes
8
開発者 8
評価
(2)
プロジェクト
2
50%
仲裁
0
期限切れ
0
9
開発者 9
評価
(3)
プロジェクト
1
100%
仲裁
3
0% / 100%
期限切れ
0
10
開発者 10
評価
(295)
プロジェクト
473
40%
仲裁
103
41% / 23%
期限切れ
78
16%
多忙
パブリッシュした人: 2 codes
11
開発者 11
評価
(17)
プロジェクト
23
39%
仲裁
6
33% / 50%
期限切れ
0
12
開発者 12
評価
(32)
プロジェクト
35
34%
仲裁
5
0% / 80%
期限切れ
0
仕事中
パブリッシュした人: 2 codes
類似した注文
Modification of EA and Addition of New Trade Logic and Features Currently, the EA is opening trades correctly but in addition, there are times when it is opening the trades wrongly. The EA is based on an indicator (only the .ex5 file is available). A new trigger logic also needs to be added, along with new closing conditions. This project must NOT use any DLL and must be submitted in 1 day (max 2 days) The EA will be
Wayne Butts 100 - 800 USD
I need a great trading robot that can analyze the market for me and make precise and accurate trades and close them at capital gains. I need the robot to not lose below a certain amount and shit down when the goal for the day month quarter or year has been met
Looking to acquire an existing, profitable Expert Advisor (EA) with full source code to add to our client investment portfolio. To be clear, this is not a request to develop or design a new strategy. If you already have an EA that is proven, consistent, and production-ready, with at least 6 months of history performance I’m open to reviewing it immediately. Please apply only if you meet all the requirements below
I am in need of a buy stop sell stop EA that is developed already and profitable in live market for SCALPING XAUUSD. Note: Profitable in LIVE MARKET. It should have god risk management and low drawdown. If you have one developed, pls reply. The developer will need to send a demo so I can test myself
Automated trading system 150 - 250 USD
Anyone I need my own bot with my own licenses keys I will pay up please the bot must make good profit and I will pay up good money just hope it helps me
==CCT Phase 2 Spec== So for this we'll use alternative simplified higher time frame levels (Points Of Interest). In this phase we are swapping out the point of interest and really kicking the tires on core mechanics as we will have more trades. ==Long Entry Example== (((All operations done on 15m bar close))) 1) 20 EMA > 50 EMA > 100EMA on Daily Chart 2) Previous Days formation is Bullish Engulfing or Bullish Chad
Hello Muzaffar, I am inquiring about trading robot for my Gold trading scalping, Day trading and swing trading, could you develop this kind of trading robot, if its yes how long it will take you to deliver and how much will it cost? I would appreciate your response, Kind Regards, Ahmed
Develop a fully automated MT5 Expert Advisor based on a multi-timeframe institutional trend-pullback strategy with: Regime filtering (H4) Execution logic (H1) ATR-based stop model Multi-stage trailing system Risk-based position sizing Portfolio-level risk protection Detailed performance logging This EA will be used for client capital (PAMM/MAM environment). Stability and risk control are higher priority than high
Hello, I have an existing MT5 Expert Advisor that works perfectly on a demo account. The strategy is profitable and executes trades correctly in demo testing. However, when I run the same EA on a live account, it takes trades but the results are not profitable. The performance is significantly different compared to demo. I am looking for an experienced MQL5 developer who can: Analyze the EA logic Identify why live
I am looking to purchase a proven scalping Expert Advisor with verified live account performance. Requirements: • Minimum 6 months live trading history • Proven profitability with controlled drawdown • Scalping strategy with Buy and Sell trades • Works on XAUUSD (Gold), MT5 preferred • Includes Stop Loss and Take Profit • Suitable for small accounts ($100) • Reasonable one time price Please share live performance

プロジェクト情報

予算
30+ USD

依頼者

出された注文3
裁定取引数0