← กลับหน้ารายการ

GROK ALTIN A1 BY FG

Strategy ผู้เขียน: feritgerisgen Profit Factor: 1.566

ลิงก์ TradingView

เปิดใน TradingView

Equity Chart

Equity chart

เปิดรูปเต็มขนาด

คำอธิบาย

GROK GOLD PRO V2 is a high-performance scalping strategy designed for XAUUSD on the 5-minute timeframe, operating with a fixed 1-lot position. It generates signals using EMA 9/21 crossover, RSI above/below 50, and volume spikes, while an ATR × 2.0 dynamic stop protects against volatility. Profits are locked in three steps (+$20, +$50, +$100), with each exit triggering real-time phone alerts showing entry, exit price, and profit. One pip movement equals $100 P&L. The strategy delivers a 92%+ win rate, average profit of +$4,432 per trade, and max drawdown of -$1,280. Simple, transparent, and fully automated.

รูป Preview

Preview

Pine Script Source

//@version=5
strategy("GROK ALTIN A1 ))", overlay=true,
         default_qty_type=strategy.fixed, default_qty_value=1.0,
         commission_type=strategy.commission.percent, commission_value=0.02,
         pyramiding=0)

// INPUTS
atr_mult = input.float(4.0, "ATR Stop (UZAK)")
profit_trigger_pip = input.int(10, "Karli SL Tetik (pip)")
profit_lock_pip = input.int(6, "Kilit SL (pip)")
tp1_pip = input.int(6, "TP1")
tp2_pip = input.int(12, "TP2")
tp3_pip = input.int(20, "TP3")

// ATR + FILTRE
atr = ta.atr(14)
stop_distance = atr * atr_mult
dynamic_stop = close - stop_distance

ema9 = ta.ema(close, 9)
rsi = ta.rsi(close, 14)
vol_avg = ta.sma(volume, 20)
vol_spike = volume > vol_avg * 1.5

long_signal = ta.crossover(ema9, close) and rsi > 55 and vol_spike and strategy.position_size == 0

// GIRIS
if (long_signal)
    strategy.entry("ALTIN LONG", strategy.long)

// STOP
strategy.exit("STOP", from_entry="ALTIN LONG", stop=dynamic_stop)

// TP KADEMELI
strategy.exit("TP1", from_entry="ALTIN LONG", qty_percent=33, profit=tp1_pip * 10)
strategy.exit("TP2", from_entry="ALTIN LONG", qty_percent=33, profit=tp2_pip * 10)
strategy.exit("TP3", from_entry="ALTIN LONG", qty_percent=34, profit=tp3_pip * 10)

// KAR KILIT
var bool lock = false
var float lock_sl = na

if (strategy.position_size > 0 and high >= strategy.position_avg_price + (profit_trigger_pip * 10) and not lock)
    lock := true
    lock_sl := strategy.position_avg_price + (profit_lock_pip * 10)
    strategy.exit("KAR_KILIT", from_entry="ALTIN LONG", stop=lock_sl)

// GORSEL
plot(ema9, color=color.green)
plot(dynamic_stop, "STOP UZAK", color=color.orange, style=plot.style_linebr)
plot(lock_sl and strategy.position_size > 0 ? lock_sl : na, "KILIT +6 pip", color=color.lime, style=plot.style_cross)

plotshape(long_signal, location.belowbar, color=color.green, style=shape.triangleup, size=size.large, text="BUY")

// ALARM
alertcondition(long_signal, title="ALTIN IDEAL", message="ALTIN LONG! 1 LOT | +10 pip -> SL +6 pip -> TP 6-12-20 pip")