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 Uzman Danışmanlar

İş Gereklilikleri

//@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)

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(18)
Projeler
22
9%
Arabuluculuk
6
33% / 50%
Süresi dolmuş
1
5%
Çalışıyor
2
Geliştirici 2
Derecelendirme
(9)
Projeler
12
8%
Arabuluculuk
3
33% / 67%
Süresi dolmuş
1
8%
Serbest
3
Geliştirici 3
Derecelendirme
(16)
Projeler
35
23%
Arabuluculuk
4
0% / 50%
Süresi dolmuş
2
6%
Çalışıyor
4
Geliştirici 4
Derecelendirme
(6)
Projeler
5
0%
Arabuluculuk
2
50% / 50%
Süresi dolmuş
2
40%
Serbest
5
Geliştirici 5
Derecelendirme
(1)
Projeler
1
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(37)
Projeler
42
21%
Arabuluculuk
13
8% / 69%
Süresi dolmuş
1
2%
Meşgul
7
Geliştirici 7
Derecelendirme
(30)
Projeler
31
65%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
1
3%
Çalışıyor
Yayınlandı: 5 kod
8
Geliştirici 8
Derecelendirme
(1)
Projeler
1
0%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
9
Geliştirici 9
Derecelendirme
(3)
Projeler
1
100%
Arabuluculuk
3
0% / 100%
Süresi dolmuş
0
Serbest
10
Geliştirici 10
Derecelendirme
(295)
Projeler
473
40%
Arabuluculuk
103
41% / 23%
Süresi dolmuş
78
16%
Meşgul
Yayınlandı: 2 kod
11
Geliştirici 11
Derecelendirme
(17)
Projeler
23
39%
Arabuluculuk
6
33% / 50%
Süresi dolmuş
0
Serbest
Benzer siparişler
==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
Hello developers, I’m looking for a professional trading bot that works using pending orders only (Buy Stop & Sell Stop). Main requirements: The bot must open multiple pending orders continuously. Stable execution without freezing or missing orders. Clean and professional logic suitable for real trading. Fully customizable settings (distance, lot size, TP/SL, trailing, etc.). If anyone already has a ready-made
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
Trade Copier from MT4/ MT5 to MT4/ MT5 (local) , i am looking for some local copier where i can copy trade from meta trader 4 to meta trader 5 or meta trader 5 to meta trader 4 , looking for fast execution
I. YÊU CẦU DỰ ÁN Tôi đang tìm cách phát triển một hệ thống giao dịch tự động (Expert Advisor) được xây dựng trên nền tảng Smart Money Concepts (SMC), tích hợp Trí tuệ Nhân tạo (AI) và có cơ chế quản lý vốn tiên tiến. EA (Expert Advisor) phải được tối ưu hóa cho cả thị trường biến động mạnh như Vàng (XAUUSD) cũng như các thị trường ổn định, có xu hướng như EURUSD. Nó phải thân thiện với người mới bắt đầu nhưng cũng đủ
Hello, I want a grid trading bot for the Gate.io crypto exchange. I currently have a working grid bot written in MQL5, and I want a similar bot implemented in Python. The MQL5 bot can be translated, but the codebase is large and it was not designed to be easily ported to Python. Therefore, I prefer that the final Python bot preserves the same core grid logic, but is implemented cleanly in Python rather than doing a
Chancefxbot1 400 - 600 USD
– MA20/30/50 Alignment + MA50 Slope + Swing SL + Step Trail + News Filter Symbol: XAUUSD Timeframe: M5 Language: MQL5 Trading: 24/5 (no session filter) 1) Indicators (Inputs) MA20, MA30, MA50 MA type selectable: EMA or SMA Applied to Close Inputs: MA periods and MA method 2) Entry Rules (Alignment + Slope) BUY: MA20 > MA30 > MA50 MA50 slope filter passes: Slope = MA50(current) − MA50(10 candles ago) Require slope ≥

Proje bilgisi

Bütçe
30+ USD

Müşteri

Verilmiş siparişler3
Arabuluculuk sayısı0