EulerEdge

EulerEdge — Smart Breakout-Hedge EA with Basket TP, ATR Adaptation & Multi-Layer Safety

Platform: MT4 (Expert Advisor)
Default timeframe: H1
Instruments: XAUUSD, EURUSD, GBPUSD, USDJPY, DE40 (and other liquid FX/indices/CFDs)
Style: Two-sided pending breakout + hedge ladder + Basket Take-Profit (basket TP) + ATR-adaptive distances/trailling

Strategy Overview

  1. Series start (opening a “basket”).
    The EA places both a Buy Stop and a Sell Stop around current price. Distances can be fixed (points) or ATR-based, or anchored to a Donchian channel.

  2. Trigger & hedge.
    When one side triggers into a market position, the EA cancels/re-arms the opposite pending and creates a hedge leg either immediately or via a pending order. Hedge volume = largest open lot × smart multiplier (risk-aware).

  3. Hedge keep-alive.
    The opposite pending never “disappears.” Supports GTC pendings, auto re-placement on expiry, and OrderModify re-pricing to a chosen anchor (Initial / Donchian±ATR / pure ATR).

  4. Basket TP.
    When the basket contains ≥2 positions, the EA tracks net P/L and, once it reaches BasketTPMoney, it closes the entire basket at once.

  5. Single-leg trailing.
    If only one leg remains open, the EA applies ATR trailing (or classic trailing) to ride trends while locking profits.

  6. Safety rails.
    Hard equity drawdown stop, daily profit/loss limits (pause new series), series timeout (close at BE+ after X hours) and other watchdogs to keep risk contained.

Why It Works

  • Market-adaptive. Distances, trailing and anchors are ATR/Donchian-driven, so the EA automatically adapts to volatility.

  • Hedge is always there. Even if the broker expires pendings or price gaps, keep-alive logic re-posts or re-prices the opposite pending.

  • Rational scaling. The smart multiplier is not blind martingale: it shrinks when margin is tight or trend is weak (low ADX) and relaxes in strong trends (high ADX), always bounded by MaxLot/steps/margin rules.

  • Fast resolution. Basket TP prioritizes total basket P/L, avoiding the need for every single trade to hit its own TP.

Key Capabilities

  • Two-sided breakout: simultaneous BuyStop/SellStop.

  • ATR distance by level (L1/LN): first and subsequent steps can use different ATR factors.

  • Hedge ladder: hedge lot = largest open lot × smart multiplier, obeying MaxLot/min lot/lot step.

  • Hedge keep-alive: GTC, expiry re-post, OrderModify re-price (Initial / Donchian±ATR / ATR) and auto upsizing if the pending lot is too small.

  • Basket TP/SL: monitor basket P/L in money and close all positions together.

  • ATR trailing (single leg): ATR-based start and step; classic trailing also available.

  • Series timeout: after X hours, if P/L ≥ ExitAtBE_Money , close the basket (BE+ exit).

  • Daily limits: pause new series after daily TP/SL until next reset hour.

  • Trading sessions: per-weekday windows, supports crossing midnight.

  • Trend filter (optional): ADX + EMA(50/200); optional one-side only with trend.

  • Spread filter: hard cap or ATR-relative.

  • Failsafes: global DD stop; watchdog resets a stale series.

Practical Setup

  • Timeframe: H1 (balanced signal/noise).

  • Symbols: XAUUSD / major FX / index CFDs.

  • Broker: ECN/RAW, tight spreads, reliable pending execution.

  • VPS: Recommended for 24/5 operation.

  • Risk: Start with small Lots , MaxLevels=2–3, conservative LotMultyMax . Keep DD stop and daily caps enabled.

FAQ

Q: No trades open—why?
A: You may be outside session hours; spread too wide; trend filter says “flat”; daily limits paused new series; or OneSeriesInDay already used today.

Q: Why is the hedge lot sometimes smaller?
A: Hedge lot = largest open lot × smart multiplier, then clamped by MaxLot , MaxNetLots , MinMarginLevelPct , and lot step/min. If it looks smaller, a risk constraint or margin level likely limited the volume. The EA also auto-upsizes: if the existing opposite pending is under-sized, it will be replaced with a larger lot.

Q: The hedge “disappeared” or didn’t refresh in time.
A: Enable SeriesGTC=true and UseOrderModifyReprice=true . Keep-alive logic will re-post/re-price opposite pendings, with RepriceSeconds / RepriceMinShiftPoints controlling frequency and minimum shift.

Q: Can I use a fixed pip TP?
A: Yes ( TakeProfit>0 ). Or use ATR TP ( ATR_K_TP>0 ).

Q: Is this martingale?
A: No. The multiplier is adaptive (ADX/margin-aware) and bounded by strict risk parameters.

Parameters (grouped)

Core

  • Lots — initial lot;

  • LotMulty — base multiplier (used when smart multiplier is off);

  • Distance — fixed L1 distance (when ATR distance is off);

  • TakeProfit — fixed TP points (0 = none);

  • TrailStart , TrailDistance — classic trailing (if ATR trailing is off);

  • OneSeriesInDay — at most one new series per day;

  • MaxLot , MaxDrawdown , Magic .

Sessions

  • MondayTime … SundayTime as HH:MM-HH:MM , midnight-crossing supported.

Filters & Safety

  • UseTrendFilter , ADX_TF/Period/Threshold ;

  • EMA_TF/Fast/Slow , EMA_Slope_ATR_K , UseOneSide ;

  • MaxSpreadPoints or MaxSpread_ATR_K .

ATR Scaling

  • UseATRDistance , ATR_TF/Period ;

  • ATR_K_Distance_L1 , ATR_K_Distance_LN , Distance_LN (fallback when ATR off);

  • UseATRTrailing , ATR_K_TrailStart/Step , ATR_K_TP .

Donchian Anchor (optional)

  • UseDonchianAnchor , Donchian_TF/N , Donchian_Buffer_ATR .

Limiters

  • MaxLevels , MaxNetLots , MinMarginLevelPct .

Smart Multiplier

  • UseSmartMulty , LotMultyMin , LotMultyMax ,

  • ADX_ForMaxMulty (allow max when ADX is strong),

  • MinMarginForMulty (shrink multiplier when margin level is low).

Hedge Confirmation (optional)

  • HedgeWithConfirm , MinMoveToHedge_ATR , CooldownMin .

Keep-Alive / Reprice

  • SeriesGTC , PendingExpiryMin ;

  • HedgeAnchorMode (0=Initial, 1=Donchian±ATR, 2=ATR vs current), HedgeATR_K_Dist ;

  • UseOrderModifyReprice , RepriceSeconds , RepriceMinShiftPoints .

Basket / Daily / Timeout

  • BasketTPMoney , BasketSLMoney ;

  • DailyTPMoney , DailySLMoney , DailyResetHour ;

  • MaxSeriesHours , ExitAtBE_Money .

Backtesting & Optimization

  1. Data quality: longer is better (≥2–3 years), variable spreads.

  2. MT4 modeling: use high-quality tick data to assess pending fill/hedge behavior realistically.

  3. Risk first: begin with smaller LotMultyMax and MaxLevels=2 . Increase gradually once stable.

  4. Per-symbol tuning:

    • Gold/indices: keep ATR distances on; ATR_K_Distance_L1 ~ 0.9–1.2; stricter spread filter.

    • Major FX: let ATR_K_Distance_LN be slightly larger than L1 (e.g., 1.3–1.6) to space ladder steps.

    • If broker often expires pendings: SeriesGTC=true + UseOrderModifyReprice=true , and try RepriceSeconds=60–90 .

Risk Disclaimer

This EA is an algorithmic trading tool. All strategies can incur drawdowns. Configure risk prudently, use a VPS, and forward-test on demo/small live first to ensure compatibility with your broker’s execution and instrument specs.


추천 제품
MyTraderEA
Khayelihle Tosh
AutoTraderEA Description As the name says, this is an autotrading robot.   It trades on H1 timeframe.  It looks for clear trades, and is very accurate, yet still will take a couple of trades per week. Otherwise losses are minimised through a 130 pip StopLoss which can be modified. AutoTrader gives the user the ability to choose whether to keep trading volumes the same or change in direct proportion to the change in the account equity.   The EA has been backtested only on the EURUSD pair over a
OB PRO TRADER EA는 가격 행동 리서치 기반의 고품질 당일 거래 시스템입니다! "설정 후 잊어버리세요" Expert Adviser가 모든 거래를 대신 처리해 드립니다! 6개 통화쌍에 대한 8개의 Set_files를 사용할 수 있습니다!   H1 t imeframe! 테스트 및 거래를 위한 EA 세트 파일을 다운로드하세요: USDCHF Set_file GBPAUD Set_file GBPCAD Set_file GBPAUD v2 Set_file GBPCAD v2 Set_file EURUSD Set_file NZDUSD Set_file AUDUSD Set_file 트레이딩 아이디어는 추세 및 스캘핑 기법을 결합한 유명하고 강력한 가격 행동 패턴을 기반으로 합니다! OB PRO TRADER EA는 유럽 및 미국 거래 시간 동안 상반기 시간대를 기반으로 작동합니다. EA 기능: - EA는 6개 통화쌍(8개 차트)을 동시에 실행할 수 있습니다. - 계좌 잔액에 따라 자동 랏
Gold Angel
Dmitriq Evgenoeviz Ko
The Gold Angel MT4 Expert Advisor is designed for automated gold trading on the MetaTrader 4 platform, providing traders with unique tools and strategies to achieve maximum profit. Using complex algorithms for analyzing market data, this advisor is able to identify profitable entry and exit points, which significantly reduces risks and increases the chances of successful trading. the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller Gold Angel MT4 offer
The MelBar HedgeScalper FinTech RoboTrader MAXIMUM LOTSIZE : 100 Lots (US$10,000,000) per TRADE/POSITION FULLY TRIED, TESTED, PROVEN & VERIFIED ON A REAL LIVE TRADING ACCOUNT! TRY OUT THE DEMO! The Experienced Trader & Global Money Manager Version. 89% Trade Winning Percentage. 32.679% Profit Gain or ROI in 2 Trading Days. Profit Factor 3.59 Average Trade Length 1h 22m. The MelBar HedgeScalper FinTech RoboTrader is easy to use. Has the Advantage of Retiring Unnecessary "Debt" Positi
Dangal
Vitalii Zakharuk
Dangal is trend trading using indicators and levels. The expert system goes through the whole history and can work with several currency pairs (GBPUSD, USDCHF, USDJPY, EURUSD) with a single setting. If there is a commission on the account, it must be recalculated into the equivalent of the spread and fill in the MaxSpread field, taking into account the Wednesday and the commission. The Expert Advisor can be launched on any hourly period, but it works with the H1 period. You can start using it
Vortex Gold MT4
Stanislav Tomilov
5 (33)
볼텍스 - 미래를 위한 투자 메타트레이더 플랫폼에서 금(XAU/USD) 거래를 위해 특별히 제작된 볼텍스 골드 EA 전문 어드바이저입니다. 독점 지표와 개발자의 비밀 알고리즘을 사용하여 구축된 이 EA는 금 시장에서 수익성 있는 움직임을 포착하도록 설계된 종합 트레이딩 전략을 사용합니다. 전략의 주요 구성 요소에는 이상적인 진입 및 청산 지점을 정확하게 알려주는 CCI 및 파라볼릭 인디케이터와 같은 클래식 인디케이터가 포함됩니다. Vortex Gold EA의 핵심은 고급 신경망 및 머신러닝 기술입니다. 이러한 알고리즘은 과거 데이터와 실시간 데이터를 지속적으로 분석하여 EA가 진화하는 시장 추세에 더 정확하게 적응하고 대응할 수 있도록 합니다. 딥러닝을 활용하여 Vortex Gold EA는 패턴을 인식하고 지표 매개변수를 자동으로 조정하며 시간이 지남에 따라 성능을 개선합니다. 독점 지표, 머신 러닝, 적응형 트레이딩 알고리즘이 결합된 Vortex Gold EA의 강력한 조합입니다
Black Rock EA
Evgenii Filippov
MULTI-CURRENCY Expert Advisor, the main condition for work, a broker with a minimum spread and a fast VPS server.It shows itself well on EURCHF, GBPUSD and many other pairs. The requirement for the correct operation of the adviser: VPN with minimal delay to the broker. Recommended deposit from $ 50 (per symbol) Recommended broker with an ECN account. The Expert Advisor should be installed and tested only on the M15 timeframe!!!! Before using the Expert Advisor, be sure to test it in the strateg
TPS Gold Scalper EA - High-Risk Edition: Seize Gold Trading Opportunities with Aggressive Precision Minimum Equity :- 1000 $ Trading Timeframes :- H1 Recommended pair :- XAUUSD Experience the next level of gold trading with the TPS Gold Scalper EA - High-Risk Edition. Designed for traders who thrive on high-risk, high-reward strategies, this advanced trading robot is your ticket to harnessing rapid price movements in the gold market. Aggressive Scalping Algorithm: The TPS Gold Scalper EA is p
Two Kids
Natalya Sopina
Two Kids  - high frequency EA-scalper. Two Kid s  -  uses only two standard indicators to generate signal to oder opening. Two Kids   -universal and simple. Two Kids   - trades accurately and swiftly. Two Kids   - independent on TF. Two Kids   - worsk on all currency pairs. Two Kids   - uses no martingale and no grid Two Kids   -needs 20  units of currency for lot 0.01 for each used currency pair. Two Kid s EA  Parameters : Trading  hours  HH . ММ  (server time) : trade time limit on time : tim
Dark Nova
Marco Solito
Last copy at 499$ -> next price 599$ Dark Nova is a fully automatic Expert Advisor for Scalping Trading on AUDCAD, AUDNZD and NZDCAD . This Expert Advisor is based on a sophisticated multi-indicator algorithm combining Bollinger Bands , Moving Averages , ADX , RSI and Extreme Points detection. It is highly customizable to suit your trading needs. If you Buy this Expert Advisor you can write a feedback at market and get a second EA for Free , for More info contact me The basic strategy of this EA
EA123 Snipper MACD
Jose Francisco Flores Rojas
MACD Divergence Pro is an intelligent and adaptive Forex trading robot designed to capitalize on MACD signals and detect divergence patterns that often precede major price reversals. The EA automatically places Buy and Sell trades when: Bearish divergence is detected at market highs Bullish divergence is detected at market lows MACD crossover signals confirm potential entry points Key Features: Fully automated trading using MACD and divergence logic ️ Customizable MACD settings for f
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
FTMO Smart Trader EA Ragnarock
Tshivhidzo Moss Mbedzi
4 (1)
Limited purchases at $211 USD next 566 USD , For a limited time: Unlock the power of trading like an expert with FTMO Smart Trader EA. Our sophisticated algorithms will help you identify trends in the market and make smart, dynamic decisions to maximize your profits and minimize your losses. As the only algorithmic trading tool developed specifically for EURUSD markets, you can trust FTMO Smart Trader EA to help you succeed in the world of trading. With fully automated trading, the robot feature
GOLD Predator IQ7
Tjia Elisabeth Jasmine Canadi
Concrete portfolio evidence from real accounts [attached] shows that the target of >95% wins [blue] has been achieved. Download the free demo and test it yourself. Follow the instructions. Backtesting >100% per month, is it possible? 동료 여러분, 월 최소 5%의 수익을 보장하고 투명성과 신뢰성을 갖춘 안전한 거래 전문가 자문(EA) 로봇을 찾고 계신다면, 금 채굴용으로 설계된 EA-ThinkBot IQ7 Predator를 추천합니다. 직접 그 효과를 확인해 보시기를 권장합니다. EA ThinkBot IQ7 Predator - 단순한 EA가 아닌 전문적인 트레이딩 솔루션 Disclaimer:    This project is strictly for experienced MetaTrader users
Infinity Gold AI
Dmitriq Evgenoeviz Ko
Infinity Gold AI is a trading robot (expert advisor) for the MetaTrader 4 (MT4) terminal, designed for automated trading of the XAUUSD (gold) currency pair. This advisor was developed by experienced traders with ten years of experience in financial markets and focuses on conservative trading methods based on clear money and risk management rules. The full list is available for your convenience at https://www.mql5.com/ru/users/pants-dmi/seller Key Features of Infinity Gold AI: Trading method : Sc
Golden Harmony
Dmitriq Evgenoeviz Ko
The Logic of Gold Trading  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller Gold trading, like any other form of investment activity, requires a deep understanding of the market, strategic planning, and close attention to numerous factors influencing its price. The logic behind gold trading is based on fundamental principles of supply and demand as well as analysis of macroeconomic indicators, geopolitical events, and investor sentiment. Gold has
Golden Cheetah
Dmitriq Evgenoeviz Ko
Golden Cheetah is not just a trading robot, but an expert in short-term trading, created to work in volatile markets with low spreads. It is based on a complex multi-component algorithm that instantly analyzes market information in real time.  Next price 1399 : The price increases depending on the number of sold licenses  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller This scalper, like a hunter, opens trades according to the Price Action strate
Scalper Tick Manager
Lucas Hernan Diedrich
Scalper Tick Manager   It serves a large number of pairs, the more movement there is in the currency pair, the better it works, recommended pairs. EURUSD, GBPUSD, GBPJPY, USDJPY. I tried it on other pairs and it works well too, but for now I recommend doing the test on the recommended ones. The EA, It is not king-size gala, It is not an unnecessary high risk system, You can see it for yourself, the DDs are very low, in normal conditions they do not exceed 10%. Recommended Spread Try testing the
Aura Superstar MT4
Stanislav Tomilov
4.78 (9)
Aura Superstar  is a fully automated EA designed to trade  currencies during rollover time .  It is based on machine learning cluster analysis and genetic scalping  algorithms. The first multi-currency scalper using deep machine learning mechanism, a multi-level perceptron and an adaptive neuro filter combined with classic indicators. Expert showed stable results since 2003 year. No dangerous methods of money management used, no martingale, no grid, or hedge. Suitable for any good ECN broker.  I
Golden Globe
Dmitriq Evgenoeviz Ko
The Golden Globe Expert Advisor is a specialized automated Forex trading tool focused on XAUUSD (gold). Created by seasoned traders with over a decade of experience, this robot is designed for scalping trades on a five-minute timeframe (M5). Key Features: Preset Stop Loss and Take Profit levels: Each trade has preset levels of protection, limiting risks and ensuring control over potential losses. Clear trading regulations: trading is conducted exclusively according to strict rules that exclude s
Desbot
Luke Joel Desmaris
Join our Newsletter to also get a copy of our Optimization Settings: https://desbot.ai/#Newsletter  Input Parameters Below are all the input options (aka: Parameters) for Desbot and how to use them. You can find the best Parameters through optimization. RiskPercentage: Enter the number that represents the percent of your account balance you want Desbot to risk per trade. For example, entering 1.5 would risk 1.5% of your Account Balance. SLTicks: Enter the number of ticks you want for your stop
Goldenclaw
Sigit Hariyono
Goldenclaw EA   is a unique scalping Trading Robot based on multi layered neural network and various default indicators. The algorithm works by calculating values from different timeframes to provide output signal for the current timeframe. This EA does not use dangerous techniques like martingale, averaging, grid or hedging. All orders are protected by stop loss and only one trade direction buy or sell depend on given algorithm. Input Parameters: Expert Name   - EA name and trades comment. M
Советник торгует EURGBP. Уникальным свойством EURGBP является снижение активности торгов на американской сессии, которое объясняется отсутствием в составе инструмента USD. Пара малоактивна с 19-00 до 9-00 – этот промежуток в три раза больше, чем у традиционных для ночной торговли азиатских валют. Кросс-пары в отличие от долларовых валютных инструментов слабо реагируют на новости США, что позволяет в разы снизить ложные срабатывания стопов и проскальзывания. Таймфрейм: M5 Минимальный депозит: $3
Introducing the AI Neural Nexus EA A state-of-the-art Expert Advisor tailored for trading Gold (XAUUSD) and GBPUSD. This advanced system leverages the power of artificial intelligence and neural networks to identify profitable trading opportunities with a focus on safety and consistency. Unlike traditional high-risk methods, AI Neural Nexus prioritizes low-risk strategies that adapt to market fluctuations in real time, ensuring a smart trading experience. Important Information Contact us immedia
Junior v4
Vitalii Zakharuk
Forex Bot Junior - Trend-Following, Reliable Trading. Forex trading is a complex and dynamic market that requires significant time, effort, and experience to successfully navigate. However, with the advent of trading bots, traders can now automate their trading strategies and take advantage of market trends without spending countless hours analyzing data. What is Forex Bot Junior? It's a trading bot that uses advanced algorithms to analyze market trends and execute trades automatically. It's
CapTaiNCAT
Nyamsuren Boldbaatar
CapTaiNCAT FullAutomated expert advisor. TimeFrame M1 M5 SET FILES;  https://www.mql5.com/en/market/product/38300#!tab=comments&comment=11565247 Recommendations Before using the EA on a real account, test it with minimal risk or on a demo account; Use VPS server with ping less 10ms; ECN account with low spreads + low commissions + quality execution;  Standard settings are optimized for EURUSD GBPUSD AUDUSD USDCAD USDJPY USDCHF XAUUSD  The settings of the EA  Trade Manager  Magic Number  Slippa
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (% от все
Loss Recovery Trader
Michalis Phylactou
4.52 (94)
This robot attempts to recover losing trades. Place a trade and if it moves in the wrong direction, the Zone Recovery algorithm initiates. An alternating series of Buy and Sell trades at two specific levels will be taking place, with two Exit Points above and beyond these levels. Once either of the two exit points is reached, all trades are closed with a combined profit or approximate breakeven. To use  1) Place the EA on a chart and select how the first trade will open (Manual/Via EA strategy/
Use our recommended broker:   https://icmarkets.com/?camp=61478 Timeframe:  M1 Base pairs:  AUDNZD, NZDCAD, AUDCAD Additional pairs:  GBPNZD Reversal smart grid uses multiple timeframe analyses to spot potential pullbacks in the market. These pullbacks have great potential to make big profit, we enter these pullbacks on the lowest timeframe ( M1 ). All backtests are performed over a 17+ years period showing stable and long term results! The goal is long term compounding profits with the reasona
Gold trading has always been an attractive choice for traders due to its high volatility and liquidity. The Scalp Ea XAUUSD offers a unique opportunity to capitalize on these market dynamics through automated trading. Whether you are a seasoned trader looking for an extra edge or a beginner eager to dive into the world of gold trading, this EA is designed to meet your needs with precision and efficiency. The  Scalp Ea XAUUSD  takes trades based on a series of technical analyses, primarily focus
이 제품의 구매자들이 또한 구매함
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 990$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 골드 리퍼에 오신 것을 환영합니다! 매우 성공적인 Goldtrade Pro를 기반으로 구축된 이 EA는 동시에 여러 기간에 걸쳐 실행되도록 설계되었으며 거래 빈도를 매우 보수적인 것부터 극단적인 변동까지 설정할 수 있는 옵션이 있습니다. EA는 여러 확인 알고리즘을 사용하여 최적의 진입 가격을 찾고 내부적으로 여러 전략을 실행하여 거래 위험을 분산시킵니다. 모든 거래에는 손절매와 이익 실현이 있지만, 위험을 최소화하고 각 거래의 잠재력을 극대화하기 위해 후행 손절매와 후행 이익 이익도 사용합니다. 이 시스템은 매우 인기
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (172)
소개       Quantum Emperor EA는   유명한 GBPUSD 쌍을 거래하는 방식을 변화시키는 획기적인 MQL5 전문 고문입니다! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발했습니다. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EA를 구매하시면 Quantum StarMan  를 무료로 받으실 수 있습니다!*** 자세한 내용은 비공개로 문의하세요. 확인된 신호:   여기를 클릭하세요 MT5 버전 :  여기를 클릭하세요 Quantum EA 채널:       여기를 클릭하세요 10개 구매 시마다 가격이 $50씩 인상됩니다. 최종 가격 $1999 퀀텀 황제 EA       EA는 단일 거래를 다섯 개의 작은 거래로 지속적으로 분할하는
Big Forex Players MT4
MQL TOOLS SL
4.73 (44)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Aura Black Edition
Stanislav Tomilov
4.6 (20)
Aura Black Edition은 GOLD만 거래하도록 설계된 완전 자동화된 EA입니다. Expert는 2011-2020년 기간 동안 XAUUSD에서 안정적인 결과를 보였습니다. 위험한 자금 관리 방법, 마팅게일, 그리드 또는 스캘핑이 사용되지 않았습니다. 모든 브로커 조건에 적합합니다. 다층 퍼셉트론으로 학습된 EA 신경망(MLP)은 피드포워드 인공 신경망(ANN)의 한 종류입니다. MLP라는 용어는 모호하게 사용되며, 때로는 피드포워드 ANN에 느슨하게 사용되기도 하고, 때로는 임계값 활성화가 있는 여러 층의 퍼셉트론으로 구성된 네트워크를 엄격하게 지칭하기도 합니다. 다층 퍼셉트론은 특히 단일 은닉층이 있을 때 "바닐라" 신경망이라고도 합니다. MLP는 입력층, 은닉층, 출력층의 최소 3개 층의 노드로 구성됩니다. 입력 노드를 제외하고 각 노드는 비선형 활성화 함수를 사용하는 뉴런입니다. MLP는 역전파라는 지도 학습 기술을 사용하여 학습합니다. 다중 레이어와 비선형 활성화는
Aura Neuron MT4
Stanislav Tomilov
4.62 (13)
Aura Neuron은 Aura 시리즈 거래 시스템을 이어가는 독특한 전문가 자문입니다. 고급 신경망과 최첨단 클래식 거래 전략을 활용하여 Aura Neuron은 뛰어난 잠재적 성과를 가진 혁신적인 접근 방식을 제공합니다. 완전 자동화된 이 전문가 자문은  및 XAUUSD(GOLD)와 같은 통화 쌍을 거래하도록 설계되었습니다. 1999년부터 2023년까지 이러한 쌍에서 일관된 안정성을 입증했습니다. 이 시스템은 마팅게일, 그리드 또는 스캘핑과 같은 위험한 자금 관리 기술을 피하므로 모든 브로커 조건에 적합합니다. Aura Neuron은 다층 퍼셉트론(MLP) 신경망으로 구동되어 시장 추세와 움직임을 예측하는 데 활용합니다. MLP는 피드포워드 인공 신경망(ANN)의 한 유형으로, 특히 단일 숨겨진 계층으로 구성될 때 "바닐라" 신경망이라고도 합니다. MLP에는 입력 계층, 숨겨진 계층 및 출력 계층이라는 세 가지 필수 계층이 포함됩니다. 입력 노드를 제외한 각 뉴런은 비선형 활성화
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
XG Gold Robot MT4
MQL TOOLS SL
4.3 (37)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Bitcoin Robot MT4
MQL TOOLS SL
4.64 (66)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
AI Prop Firms MT4
MQL TOOLS SL
5 (4)
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
FlipDamonHFT
Allistair Kabelo Mandow
Ask in private for more details after purchase FlipDemonHFT Flipdemon vX: The Next-Level Forex Trading Robot Flip your capital fast with Flipdemon vX — a powerful trading robot designed for rapid growth, sniper entries, and consistent profits. Built for serious traders who want results in days, not months.. Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 for free !*** Ask in privat
Unlike most other EAs in the market, I always assure every single of my EAs are of highest quality: Real trades will match backtesting. No loss hiden techniques to hide historical losses, no manipulated backtest to make backtesting curve smooth without loss (only naive traders believe in smooth upward curve with no risk - they are most likely scamming). My EA always have multi-years verified statistical trading edge. Robust and long term stable with sensible risk management. Not sensitive to sp
Exorcist Projects
Ivan Simonika
3 (1)
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
HFT Fast M1 Gold Scalper V8 EA
Martin Alejandro Bamonte
2.33 (3)
초고도 최적화 버전 – MT4 HFT FAST M1 GOLD SCALPER V8.2 는 MT4 버전 중 가장 강력하고 안정적이며 정교한 릴리스입니다. HFT는 고빈도 스캘핑 EA로, 골드(XAUUSD)를 M1 타임프레임에서만 거래하며 매일 다수의 트레이드를 실행합니다. 최대 1:500의 레버리지를 지원하며, 아주 합리적인 로트 크기 로 진정한 스캘핑 전략을 구현합니다. 이로 인해 전용 스캘핑 계좌(예: RAW 또는 ECN)가 필요합니다. ICMarkets 의 RAW 계좌는 낮은 스프레드와 슬리피지가 적어 가장 추천되는 브로커입니다. 안정적인 인터넷 연결 또는 VPS는 필수입니다. 주의: 터미널이 종료되면 FAST M1 이 계좌 제어를 상실합니다 . 공식 채널:  https://www.mql5.com/en/channels/binaryforexea 주요 개선 사항 향상된 진입 로직 EA는 이제 주요 추세 방향으로만 진입합니다. 역추세 거래는 하지 않습니다. 높은 정확도 내부 로직
Exp4 AI Sniper for MT4
Vladislav Andruschenko
2.33 (3)
우리 팀은 MetaTrader 터미널을 위한 최첨단 스마트 트레이딩 전문가 자문인 트레이딩 로봇을 소개하게 되어 기쁘게 생각합니다. AI Sniper   는  MT4   터미널 모두를 위해 설계된 지능형 자체 최적화 거래 로봇입니다. 정교한 알고리즘과 최첨단 거래 방법론을 활용하는   AI Sniper는   거래 최적화의 우수성을 보여줍니다. 거래소와 주식 시장 모두에서 15년 이상의 폭넓은 경험을 바탕으로 우리 팀은 혁신적인 전략 관리 기능, 지능형 기능 및 직관적인 그래픽 인터페이스를 통합한 이 Expert Advisor를 제작했습니다. AI Sniper   의 각 측면은 엄격하게 테스트된 프로그램 코드에 의해 꼼꼼하게 설계되고 지원됩니다. 고급 컴퓨터 지능은 복잡한 기술 분석을 통해 작동하며 가격 변동이 있을 때마다 수천 건의 수학적 계산을 수행합니다. 이를 통해   AI Sniper는   강세 또는 약세 시장 추세에 관계없이 거래에 대한 최적의 진입 및 청산 지점을 정확히
KT Gold Nexus EA MT4
KEENBASE SOFTWARE SOLUTIONS
5 (2)
ICMarkets 실계좌 신호: 여기를 클릭하세요 KT Gold Nexus EA로 성공하기 위해 필요한 것은 무엇입니까? 인내. 규율. 시간. KT Gold Nexus EA는 전문 트레이더와 개인 자산 운용자들이 실제로 사용하는 실전 트레이딩 접근 방식을 기반으로 설계되었습니다. 단기적인 흥미나 빠른 수익이 아닌, 장기적으로 안정적이고 일관된 성과를 목표로 합니다. 이 EA는 장기 운용을 전제로 만들어졌습니다. 전략의 진정한 잠재력을 확인하려면 최소 1년 이상 지속적으로 운용하는 것이 권장됩니다. 전문 트레이딩과 마찬가지로 손실이 발생하는 주간이나 월간 구간이 존재할 수 있으며, 이는 정상적인 과정입니다. 중요한 것은 짧은 기간의 결과가 아니라 장기간에 걸친 누적 성과입니다. 많은 그리드 또는 마틴게일 시스템은 초기에는 빠른 수익을 보여주지만, 대부분 결국 계좌 손실로 이어집니다. 본 EA는 이러한 구조적 위험을 배제하고, 안정적이며 통제 가능한 성장을 추구하도록 설계되었습니다.
Blox
Cence Jk Oizeijoozzisa
5 (2)
2025년 가장 강력한 자동매매 전략 중 하나 저희는 2025년에 사용되던 가장 강력한 수동 트레이딩 전략 중 하나를 TMA(삼각 이동평균)와 CG 로직 을 기반으로 한 **완전 자동화 Expert Advisor(EA)**로 변환했습니다. 550달러 가격의 마지막 한 개만 남아 있습니다. 이후 가격은 650달러와 750달러로 인상되며, 최종 가격은 1200달러입니다. 실시간 시그널  이 EA는 정확한 진입, 지능적인 예약 주문, 엄격한 리스크 관리 를 위해 설계되었으며 **모든 외환(Forex) 통화쌍 및 금(XAUUSD)**에서 사용 가능합니다. 최적의 성능을 위해 스프레드가 10포인트 이하인 ECN 계좌 사용을 권장합니다. 이를 통해 정확한 주문 체결과 최소한의 슬리피지를 보장합니다.차트에 적용한 후, 본인의 리스크 성향에 맞게 설정만 조정하면 프로 수준의 자동매매를 경험할 수 있습니다.  주요 특징 모든 Forex 통화쌍 및 금(XAUUSD) 지원 5 min   SET FILE
Btcusd Grid
Ahmad Aan Isnain Shofwan
1 (1)
BTCUSD GRID EA는 그리드 거래 전략을 사용하도록 설계된 자동화된 프로그램입니다. BTCUSD GRID EA는 초보자와 숙련된 거래자 모두에게 매우 유용합니다.   사용할 수 있는 다른 유형의 거래 봇이 있지만 그리드 거래 전략의 논리적 특성으로 인해 암호화폐 그리드 거래 봇이 문제 없이 자동화된 거래를 쉽게 수행할 수 있습니다.   BTCUSD GRID EA는 그리드 거래 봇을 시험해 보고자 하는 경우 사용할 수 있는 최고의 플랫폼입니다. BTCUSD GRID EA는 통화 변동성이 큰 경우에도 이상적인 가격 지점에서 자동 거래를 수행할 수 있기 때문에 암호화폐 산업에 매우 효과적입니다.   이 자동 거래 전략의 주요 목적은 EA 내에서 미리 설정된 가격 변동에 따라 수많은 매수 및 매도 주문을 하는 것입니다.   이 특별한 전략은 자동화하기 쉬우므로 일반적으로 암호화폐 거래에 사용됩니다.   그리드 트레이딩 전략을 올바르게 사용하면 자산 가격이 변할 때 돈을 벌 수 있
Algo Capital Trader
Jimitkumar Narhari Patel
Algo Capital Advanced Market Intelligence Trader: Empowering Traders with Integrity and Insight Algo Capital proudly introduces its inaugural state-of-the-art Advanced Market Intelligence Trader - engineered to transform your trading experience through precision, adaptability, and advanced market intelligence. Powered by proprietary algorithms and deep market research, this solution is designed to deliver consistent, high-quality performance across diverse market conditions. Why Algo Capital?
Gold Medalist
Dmitriq Evgenoeviz Ko
Gold Medalist is an intelligent system focused on volatile trading on the XAUUSD market. It aims to identify and effectively exploit short-term price impulses, providing traders with new profit opportunities. The full list is available for your convenience at https://www.mql5.com/ru/users/pants-dmi/seller The Gold Medalist's key advantage lies in its unique price action analysis system. By accurately measuring price movement, it can identify true market momentum signals while avoiding false si
FXbot mt4
Marek Kvarda
5 (1)
This robot uses its own built-in oscillator and other tools to measure market movements (volatility, speed, power, and direction). At an appropriate time, it places an invisible pending order on the market, which it continues to work with according to the set TradingMode. It is recommended to use a fast broker with low fees, accurate quotes and no limitation of stop loss size. You can use any timeframe. Features spread protection slippage protection no grid no martingale a small SL for every tr
Omega Code
Nguyen Hang Hai Ha
Introduction EA Omega Code is a core strategy that has been distilled over many years of research and optimization for the Forex and Gold markets. The strategy combines Scalper and Trailing to optimize performance and reduce risk. Trading orders have Stop Loss, Trailing for customization, and provide many other parameters to optimize the system to suit each user's trading plan. Promotion: with the purchase of Omega Code, users can access the source-code. If you are really interested in the sour
그만큼       Opening Range Breakout Master는   다음과 같은 기관 거래 개념을 활용하도록 설계된 전문 알고리즘 거래 시스템입니다.       ICT(Inner Circle Trader), 스마트 머니 컨셉(SMC), 그리고 유동성 기반 전략 등을 활용하여   , 이 전문가 자문은 다음과 같은 사항들을 자동으로 감지하고 실행합니다.       오프닝 레인지 브레이크아웃(ORB)       다음을 포함한 주요 글로벌 외환 세션 전반에 걸쳐       런던, 뉴욕, 도쿄 및 Midnight Killzones를   통해 거래자가 다음과 같은 작업을 수행할 수 있습니다.       마켓 메이커의 움직임, 유동성 탐색, 세션 기반 변동성   . 다음을 따르는 거래자를 위해 만들어졌습니다.       시간 기반 가격 변동, 주문 흐름 역학 및 기관 거래 방법론을 통해   이 EA는 가격이 하락할 때 체계적으로 거래를 입력하여 감정적 의사 결정을 제거합니다.      
EvoTrade EA MT4
Dolores Martin Munoz
5 (1)
EvoTrade: 시장 최초의 자기 학습형 거래 시스템 EvoTrade를 소개합니다. 이는 최첨단 컴퓨터 비전 및 데이터 분석 기술을 활용하여 개발된 독창적인 거래 어드바이저입니다. EvoTrade는 시장 최초의 자기 학습형 거래 시스템으로, 실시간으로 작동합니다. EvoTrade는 시장 상황을 분석하고 전략을 조정하며 변화에 동적으로 적응하여 어떠한 환경에서도 탁월한 정확도를 제공합니다. EvoTrade는 Long Short-Term Memory(LSTM) 및 Gated Recurrent Units(GRU)와 같은 고급 신경망을 활용해 시간적 종속성을 분석하고, Convolutional Neural Networks(CNN)를 사용해 복잡한 시장 패턴을 감지합니다. 또한 Proximal Policy Optimization(PPO) 및 Deep Q-Learning(DQL)과 같은 강화 학습 알고리즘을 통해 실시간으로 전략을 적응시킵니다. 이러한 기술은 EvoTrade가 숨겨진 시장 신
I Gold Mine I
Dmitriq Evgenoeviz Ko
Gold Mine EA (XAUUSD H1) is a gold trading expert advisor that uses a momentum scalping algorithm on the hourly timeframe. The system is designed to filter out market noise and identify confirmed price movements. Trading logic The algorithm analyzes gold volatility and opens positions based on a synthesis of two factors: Impulse analysis: identifying sharp bursts of activity that mark the entry of major market participants. Price Action: Entry confirmation using a built-in chart pattern library
Candle Power EA
Brainbug Investment GmbH
5 (1)
Candle Power EA S&P 500용 평균회귀 5개 전략 포트폴리오 구매 후 에 메시지를 보내 주세요. 매뉴얼 PDF 와 자세한 설명 영상 링크를 보내드립니다!!! EA는 항상 설정된 상태로 작동시켜야 합니다!!! 여기에서 SETFILE 및 설명서를 다운로드하세요  다음 급락장이 두렵나요? Candle Power EA 가 있으면 걱정하지 않으셔도 됩니다. 이 EA 는 서로 보완하는 평균회귀 전략 5개 ( 5개 설정 , 서로 다른 필터 방식 )를 S&P 500 에 묶어 적용합니다. 특히 스트레스 국면 에서의 과도한 움직임 을 체계적으로 포착하고, 급격한 조정 이 동반된 변동성 높은 시장 국면 에서 강점 을 발휘합니다. 평상시 시장 국면 에서는 EA 가 전체 시장 의 흐름을 대체로 따라가므로 전술적 포트폴리오 헤지 와 추가 수익원 을 동시에 제공할 수 있습니다. 마팅게일 없음 , 그리드 없음 . 명확한 문서화, 견고함, 실용성. 15년 이상의 틱 데이터 기반 장기 백테스트 이력
XBot Quantum IQ7
Tjia Elisabeth Jasmine Canadi
XBOT Quantum IQ7 – 지능과 정밀함이 만나 완벽한 거래를 실현합니다 시장은 추측의 장이 아닙니다. 명확성, 규율, 그리고 기술이 누가 성공할지를 결정하는 역동적인 무대입니다.       엑스봇 퀀텀 IQ7       이는 단순한 "마법의 버튼" 같은 EA가 아닙니다. 지능적인 제어, 투명한 분석 정보, 그리고 모든 거래 환경에 적응할 수 있는 유연성을 제공하도록 세심하게 설계된 시스템입니다. XBOT Quantum IQ7이 돋보이는 이유 진정한 투명성 가짜 신호는 없습니다. 조작된 백테스트도 없습니다. 허황된 약속도 없습니다. 모든 기능은 7일 무료 데모를 통해 직접 테스트해 볼 수 있으므로 그 가치를 직접 판단할 수 있습니다. 선견지명이 있는 트레이더를 위해 설계되었습니다. 이것은 단순한 자동화가 아니라 생태계입니다. XBOT Quantum IQ7은 실시간 AI 분석, 직관적인 수동 제어 및 고급 자동화 기능을 결합하여 시장을 맹목적으로 따라가는 것이 아니라 시장
Hedging Forex EA1
Samir Arman
5 (2)
️ Hedging Forex EA1 – Smart Risk Control with ATR & Hedge Strategy Now with enhanced features and virtual strategy tester guidance Hedging Forex EA1 version   "8.00" I work at a demo account https://t.me/hfmq4/109 --- Overview Hedging Forex EA1 is a smart, risk-managed Expert Advisor designed for volatile currency pairs using a hedging strategy. This EA provides advanced control over position sizing, trade timing, and Take Profit strategies with ATR integration. Whether you're a begin
Forex Dream X – Trend-Based Expert Advisor with Smart Risk Management Broker (Recommended):   https://one.exnesstrack.org/a/lmeqq9b7 Forex Dream X is a fully automated Expert Advisor designed to trade in the direction of the market trend using a combination of price action, volatility filtering, and moving average logic. The EA focuses on disciplined entries, strict risk control, and automatic lot sizing based on account balance and user-defined risk percentage. The system is optimized to
Exclusive DC
Natalyia Nikitina
Exclusive DC — XAUUSD 전문 트레이딩용 프로페셔널 EA Exclusive DC 는 금(XAUUSD) 거래에서 안정적이고 체계적인 운영을 위해 설계된 알고리즘 기반 자동매매 시스템입니다. 완전 자동으로 작동하며, 마틴게일이나 그리드 전략을 사용하지 않고, 고정된 StopLoss와 TakeProfit을 가진 단일 포지션 방식으로 거래합니다. 사용자의 주요 역할은 올바른 리스크 관리이며, 나머지는 알고리즘이 자동으로 처리합니다. 주의! 구매 후 반드시 즉시 연락해 주세요. 설정 및 설치 안내를 제공해 드립니다. RoboForex Prime 계정 사용의 장점: RoboForex Prime 계정은 금(XAUUSD) 거래 시 수수료와 스프레드가 일반 계정보다 약 2배 낮습니다. 이는 활발한 트레이딩에서 큰 이점을 제공하며, 진입 정확도 향상, 거래 비용 절감, 전략 전체 성능 향상으로 이어집니다. 주요 장점 XAUUSD 최적화: 추가 설정 파일 불필요 간편함: 설치 및 시작
Golden Shower
Dmitriq Evgenoeviz Ko
Description of the Golden Shower advisor This advisor is designed for automated trading on the XAUUSD. Its algorithm is focused on short-term trades with rapid opening and closing of positions based on current market activity. Main functions and operating logic:     Short-term transactions     The advisor opens positions based on small price fluctuations, managing the time the transaction remains on the market.     Protective orders     Stop Loss and Trailing Stop levels can be set automatic
제작자의 제품 더 보기
RoyalEdge
Eduard Iutinskiy
RoyalEdge MT4 — Quantum Adaptive Hedging for XAUUSD (H1) Automated Expert Advisor for GOLD (XAUUSD) on H1 , built to operate in the highly volatile gold market using adaptive algorithms, noise filtering, and intelligent position management. Optimized for impulses, pullbacks, and liquidity “stop-hunts”. MIN deposit: from $100 (moderate risk) Symbol: XAUUSD Timeframe: H1 Key Features Quantum Dot Filter — filters market “noise” and false entries; trades only when there is enough movement “
Adaptive Signal Engine — Non-Repaint Scalping Indicator for XAUUSD (M1) Adaptive Signal Engine is a professional arrow-based scalping indicator designed specifically for Gold trading (XAUUSD) on the M1 timeframe . It generates clear BUY / SELL arrows only on closed candles , ensuring zero repainting and reliable real-time trading signals. Main Features True Non-Repaint Signals All arrows appear only after the bar is closed , so signals never disappear or change. Perfect for live trading,
XAU Edge
Eduard Iutinskiy
DESCRIPTION IN ENGLISH XAU Edge — Adaptive Signal Engine for Gold Trading (XAUUSD) Professional Non-Repaint Arrow Indicator for Scalping & Intraday Precision XAU Edge is a next-generation high-accuracy indicator designed specifically for trading GOLD (XAUUSD) on lower timeframes (M1–M15), where speed, noise filtering, and entry precision are critical. This is not a simple RSI arrow tool. It is a full adaptive signal engine combining institutional-grade filters such as: momentum analysis trend
필터:
Michail Korolev
20
Michail Korolev 2025.10.01 18:43 
 

사용자가 평가에 대한 코멘트를 남기지 않았습니다

리뷰 답변