• 미리보기
  • 리뷰 (1)
  • 코멘트 (15)
  • 새 소식

MQL Trendline EA

1

Summary

This EA will trade semi-automatically based on trend lines or horizontal lines that are manually plotted on the chart by the user. It can handle any number of lines per chart and each line can have its own adjustable settings. This EA manages every line separately based on specific user 'keywords' set for each line. Since each line has it's own independent settings, this is why there are very few shared inputs in this EA. Doing it this way allows for a single EA to manage many lines and combinations of settings at the same time. This makes the EA more user-friendly.


Inputs

  • See_Example_Lines - If true, the EA will draw 2 example lines on the chart to help you understand how to set the keywords for lines. You can drag the lines to where you want to see them trade, change their keywords, or even delete them and draw your own lines. They are merely example lines. Example lines will automatically be set in backtesting mode too, even if this input is false.
  • The EA has all standard inputs that should be self-explanatory, such as Magic Number, max. slippage, and so on. Main EA settings are controlled with 'keywords' and not standard EA inputs.


Keywords

As mentioned above in the summary, each line can have it's own adjustable settings. These are controlled by set 'keywords' that the EA looks for. These keywords are entered into the 'name' field for each line. You can find and edit the name field for a trend line or horizontal line by highlighting the line by double clicking on it, then right clicking on the line, and then selecting either 'Horizontal Line properties' or 'Trendline properties'. You should remove the default name assigned by MetaTrader and replace it with your keywords and any values. Some keywords are mandatory and some are optional. It depends on the situation. Below is a list of the available keywords.

  • TL

    Format: TL=1, TL=2, TL=3, etc...

    Necessity: Mandatory

    Description: This keyword is what is used to assign a unique trend line number to each trend line. The EA will use this number to categorize and manage the lines separately. For example, if you have 10 lines on the chart and each have their own settings, then the EA will not get confused since each will have its own TL identifier. This TL is also used for the order comments. So, this will help in your own analysis as well.

  • Trade

    Format: Trade (by itself)

    Necessity: Mandatory (if trading)

    Description: This is the keyword to use if you want the EA to trade the trend line.

  • Alert

    Format: Alert (by itself)

    Necessity: Mandatory (if alerting)

    Description: This is the keyword to use if you want the EA to alert for the trend line. There are 4 types of alerts possible which are in the EA's inputs.

  • Timer

    Format: Timer=08:00-15:45 (hours:minutes-hours:minutes)

    Necessity: Optional

    Description: This represents the allowable time period that new trades can be opened and for alerts to occur. Existing trades will not be closed out if the current time goes outside the timer limits. They would still close out normally. Only new trades will not be made outside the allowed times. And new alerts will not occur outside the allowed times. This input must be in a valid format in order to be used properly. Do not add any strange characters or spaces to the input string. For example, 08.00, 0800, and 08 00 are not the same as 08:00. The timer is based on the broker's operating time as seen in the MetaTrader platform. The timer is not based on GMT time or your PC's time. Both hours and minutes can be used in the timer.

  • Lots

    Format: Lots=0.10

    Necessity: Mandatory (if trading)

    Description: This is the keyword to use to set lot size of the trade. It is not used if trading is disabled.

  • SL

    Format: SL=10

    Necessity: Optional

    Description: This is the keyword to use to set the stop loss of the trade. This input is based in Points and not Pips. This input is only used if the line will be traded. If trading and this keyword is not used, SL will simply be 0.

  • TP

    Format: TP=20

    Necessity: Optional

    Description: This is the keyword to use to set the take profit of the trade. This input is based in Points and not Pips. This input is only used if the line will be traded. If trading and this keyword is not used, TP will simply be 0.


Keyword Examples

  • Example 1

    Let's say price is below a trend line and you expect price to go up, bounce off, and reverse down. You want to set a TP of 200 Points and a SL of 400 Points.

    You could use this keyword string: "TL=1,Trade,Sell,Lots=0.25,TP=200,SL=400"

  • Example 2

    Let's say you see a market range and expect there to be a breakout once one of the horizontal lines is reached. You do not want a TP or SL.

    You could use these two keyword strings: "TL=1,Trade,Buy,Lots=1.50" & "TL=2,Trade,Sell,Lots=1.50"

  • Example 3

    Let's say price is currently below a certain important level and you simply want to receive an alert once a certain price is reached, so you can place a buy order manually.

    You could use this keyword string: "TL=1,Alert,Buy"

  • Example 4

    Let's say you want to trade a certain line but only after price has breached the line by 100 Points.

    You could draw a parallel line above/below the important line you want to trade by 100 Points and use this as the actual trading line. Then you could use this parallel line and set this string: "TL=1,Trade,Buy,Lots=0.01"


Notes

  • The keywords are NOT case sensitive. So, the keywords 'Trade', trade, and TRADE are recognized as the same.
  • All alerts are standard MetaTrader alerts. Some of them will require you to input your details in the MetaTrader terminal in order for them to work.
  • Screenshots are optional and meant to help with your records and analysis since they are taken before the lines are deleted. Screenshots are taken only when trading is done, but not when alerting only. They are saved in your platform's 'Files' folder. The file names are named by the order's ticket number.
  • Keep in mind that once a trade or alert occurs, the EA will delete the line since it did its job already.
  • This EA can be tested in the back tester in visual mode the same way as in live trading. In this case, the EA will draw 2 example lines. Just move them to where you want or delete them and just draw your lines on the chart as you normally would.
  • The lines can be adjusted or moved on the chart even during EA operation. The EA reacts in real-time. You do NOT need to remove, pause, or reset the EA in order to adjust or move the lines.
  • Keywords must be separated by a comma (",") but the order of keywords does not matter.
  • The EA will check for available margin before placing a trade. If there is not enough available margin, the EA will skip the trade and the line will remain on the chart. It's possible there will be enough margin later and the EA can make the trade.
  • The EA checks for lot size rules such as min/max lots and lot step. The EA will round up/down if needed instead of skipping the trade.
  • IMPORTANT: Check out our site using the link in my profile to find other FREE indicators and EAs!


추천 제품
TrendSurfer OsMa
Augustine Kamatu
2 (1)
Introducing TrendSurfer OsMa: Elevating Your Forex Trading Experience. TrendSurfer OsMa is a cutting-edge automated trading system meticulously crafted to harness the power of the MetaTrader 4 indicator, Moving Average of Oscillator (OsMa), revolutionizing your approach to forex trading. The Moving Average of Oscillator (OsMa) is a derivative of the MACD (Moving Average Convergence Divergence) indicator. It represents the difference between the MACD line and its signal line. The OsMa provid
The advantages of EA TWO CANDLE SMART are: It is equipped with various filters, including: maxspread, maxlot, takeprofit (4 step), stop loss (3 step), profit target per day, and many more. Open order BUY = If iClose[2] > iOpen[2] && iClose[1] > iOpen[1]. Open order SELL = If iClose[2] < iOpen[2] && iClose[1] < iOpen[1]. Target_profit_perday=50; ==> can work on forward test. lockprofit=2;//Minimal Profit in money Step_LockProfit_in_Money=25; Stoploss_in_Money=1000; Stoploss_in %=50;==> Stoplos
Heikin-Ashi-Sniper is a perfect addition to your portfolio. It is meant to be traded on EURUSD on H1 Timeframe. It uses Heikin-Ashi High and Low/High of Monthly timeframe to determine optimal entry signals while having a reasonably low drawdown More EA´s will be published shortly to complete the Portfolio. The EA Trades not very frequently it waits for the right chance and places the order. The rest of the time, your capital is free to be traded on other strategies Please see backtest results
FREE
Inside Candle EA
Hong Ling Mu
1 (1)
Based on my original trading strategy, it appears that this EA is programmed to use technical analysis to identify an inside candle pattern in the current candle and wait for a breakout in either direction. If the price breaks out higher, the EA will place a buy order, and if it breaks out lower, the EA will place a sell order. The take profit and stop loss levels are set at 50 pips each. Additionally, using a martingale strategy, which involves increasing the lot size after a losing trade, c
FREE
Perceptrader AI
Valeriia Mishchenko
EA has a live track record with 48 month of stable trading with low drawdown: Live performance MT5 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timefra
/ ********** ********** ********** ********** ********** ********** ********** ********** ********** ********** / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self defined methods.
YumokinBitcoinBreakOut
Ryutaro Yumoto
1.5 (2)
Features This EA is good at v olatility  market. This EA specializes in   BTC USD, so please apply this EA to that chart. Please apply this EA to the 15 minute chart. This EA uses volatility technical. This EA is easy to manage because it has a maximum of 1 position. The maximum profit is set at 0 pips(Unlimited). The maximum loss cut is set at 10000pips(100 Doller per 1lot、10Doller per 0.1lot). Performance depends on the spread, so please use it with a vendor with a narrow spread. Parameters
FREE
Hello all The expert works by hanging pending deals moving with the price when activating a transaction It closes on the stop loss or on a profit from the pursuit of profit Work on low spread currency pairs Like dollar yen currency The work is done with the same settings as the expert, or it can be modified as the user likes Work on a timing of 15M or more as the user likes parameters: Transaction_Movement : Movement =true  . no Movement=false . Lot1: Manual Lot Size Auto_Lot: Set true to aut
Eamakfin
Deshpande Mahesh Narayanrao
Introducing EAMakfin Expert Advisor Software: A Legacy of Expertise! MAKFIN Algorithmic Trading Software, Please book a free demo with the link below https://calendly.com/mahesh-25/meeting-with-mahesh Crafted by 25 Years of Programming Mastery: EAMakfin isn't just a software; it's a testament to two and a half decades of programming excellence. Our team of seasoned experts brings unparalleled knowledge to the table, ensuring your trading experience is backed by a legacy of success.
Mr Beast Trend Reverse
Luis Mariano Vazquez Marcos
MR BEAST TREND REVERSE RECOMENDED H1 EUR USD La estrategia "Trend Reverse" en el mercado de divisas (Forex) es un enfoque utilizado para identificar puntos de reversión de tendencias y capturar cambios de dirección en los precios de los pares de divisas. Esta estrategia se basa en la premisa de que las tendencias del mercado no duran para siempre y que se producirán puntos de inflexión. Este robot de trading de Forex ha sido desarrollado por MRBEAST como una herramienta para facilitar el trading
Premium M15
Raphael Schwietering
Dear Investor, I am a full-time system developer since 2010, having developed thousands of trading systems in the last 11 years. My main goal when developing a strategy is long-term growth. All my systems have to pass strict criteria in terms of backtests, out-of-sample validations on unseen symbols, Monte Carlo simulations on different data feeds, slippage, and increased spreads.  It: Trades the EURUSD M15 with a focus on long-term growth. Opens trades at bar and uses no martingale nor any gri
FiboSens AI
Konstantin Chechnev
FiboSens AI – has modern solutions for automating trading strategies based on Fibonacci levels. With a wide range of features, it allows for precise order management and adaptability to a variety of trading strategies and ideas. Key Features · Analysis of Fibonacci levels: customization for any currency pair and chart period. · Trend analysis: the ability to trade with or against the trend. · Automatic closing: customizable parameters for take profit, stop loss, closing based on the tot
This program works only on forex currencies, at New York Stock Exchange opening time (16:30) but opening time CAN BE SET as you want and automatically manage for each opening Trailing Stop Loss and BreakEven (if set). It is based on NY opening physiological movements of currencies quotes by putting pendants orders at defined (Gap) distance. It has an automatic recovery system in case the first trade gone in loss. It is possible to decide which multiply factor to use for the recover, thus it is
Smart Math EA
Erik Shahazizyan
The advisor is a flexible solution with a grid strategy. Easy to operate and at the same time effective. It can be used both for accelerating a deposit and for conservative trading, depending on the settings. Uses auto lot and averaging to optimize trading. It is an excellent tool in skillful hands, providing stable results. Those who write a comment and rate honestly will get a Pro Set. Recommendations: Currency Pair: EURUSD Timeframe: M15 Minimum Deposit: $500 Brokers: Exness, Alpari, RoboFore
FREE
Echo one tradeConfirm
Phongkrit Phattanawijak
4 (1)
Echo One: The provided robot is a result of several Test of trading many many strategies,various indicators of forecasting, To make the best decision for making profits in markets. By combining several strategies and algorithms in this robot, at changing each tick price, with the utmost precision and speed  Real account has been opened where it will be possible to analyze the entire history, as well as constantly, in real time, monitor all current results: https://www.mql5.com/en/signals/71
FREE
This is a fully automatic Expert Advisor. It can trade any market, any timeframe and any currency pair. The EA uses simple indicators like SMA, RSI and CCI, and a smart martingale system, that does not open systematical new positions, but waits for a new signal for each new order, wich is limiting drawdown compared to other martingale systems. It uses a combination of seven strategies you can select in the parameters to fit your needs. The strategy tester in MetaTrader 4 can give you the setup y
Intelligence
Mikhail Rasporskiy
the expert Advisor is an artificial intelligence that uses built-in algorithms to calculate currency support levels and place orders. defined by five main levels support.in in cases of a breakdown of the strongest support, the adviser closes orders and opens an order in the direction of the trend, thereby saving the Deposit from being completely drained. new levels are defined, and the EA starts working. does not use martingale. it works on any timeframe, but preferably 30 minutes. th
Cuervo Candles Scalping II
Cristobal Hidalgo Soriano
Características principales: Estrategia de scalping : El Crow Candles Scalping EA se enfoca en aprovechar movimientos rápidos en el mercado . La estrategia se basa en la identificación de patrones de velas y análisis técnico para tomar decisiones de entrada y salida. 2.Gestión de riesgos avanzada: El EA incorpora una gestión de riesgos sólida para proteger tu cuenta de operaciones. Puedes ajustar los parámetros de stop-loss y take-profit para adaptar el nivel de riesgo a tus preferencias. 3.Co
This EA can run on every currencies pairs recommend EURUSD, USDJPY, EURJPY, GBPUSD Timeframe 30 Minute (M30) The important advantage of this EA is that you can start to trade with $1000 min imum initial Deposit. And the robot can support your manual transactions on EURUSD. ACCOUNT LEVERAGE: 1:100 ACCOUNT (Stop Out): 50% or less ACCOUNT TYPE: Real account ACCOUNT MODE: Hedging account Take Profit: Automatically Stop Loss: Automatically LOT size: Manual first order
Introducing Early Morning Scalper ATR: Precision Trading During Asian Forex Market A breakthrough in forex trading automation, the Early Morning Scalper ATR Expert Adviser offers a fully autonomous solution meticulously engineered for a specific window of opportunity—the early hours of the Asian Forex market. At its core, this innovative tool employs an advanced algorithm that orchestrates forex trading seamlessly. Augmenting its prowess are sophisticated internal indicators, which deftly ident
One Good Trade is a simple and effective Forex trading bot that implements the "time determines price" strategy. Its main feature is just one trade per day, executed at the optimal time and in the direction of the current trend. This straightforward approach allows you to take full advantage of favorable market conditions while minimizing risks. Additionally, the bot adjusts to market volatility, ensuring that stop-loss and take-profit levels are set appropriately for current market conditions.
I will support only my client. สำหรับลูกค้า Parameters General Trade Settings Money Management  Lot : Fixed (can change) Strategies  - H4 Strategies you can using both it is fixed with MA, Bollinger band, Candlestick Levels Close Functions  - H1, H4 and D1 Strategies you can using both MagicNumber  - individual magic number. The EA will only manage position of the chart symbol with this magic number. NextOpenTradeAfterMinutes  - 8 minutes is default, can change it MaxSpread  - upto currency
이 거래 전문가의 주요 목적은 후행 정지 기능을 수행하는 것입니다. 포지션을 열거나 닫지 않고 설정 및 이동만 이익을 얻고 손실 수준을 중지합니다. 이익실현 및 손절매를 계산하기 위해 가격 변동 통계와 D. Bernoulli의 도덕적 기대가 사용됩니다. 이로 인해 전문가가 설정한 새로운 수준은 위험/보상 비율 측면에서 가능한 최상의 옵션을 제공합니다. 거래 로봇의 매개변수를 살펴보겠습니다. Tracked Symbols - EA에서 추적할 통화 쌍입니다. 관심 있는 모든 문자를 쉼표로 구분하여 입력하십시오. 예: EURUSD,GBPUSD,USDCHF. 이 필드를 비워두면 어드바이저는 설치된 심볼에서만 작동합니다. 로봇이 시작되면 터미널의 "전문가" 탭에 모니터링되는 기호가 표시됩니다. Estimated Timeframe - EA가 가격 변동 통계를 수집할 기간을 설정합니다. 적은 수익(스캘핑 등)으로 많은 수의 항목을 사용하는 거래 전략의 경우 작은 기간을 사용해야 합니다. 트렌
To maximize profit this EA can open 3 trades per signal using different strategies on each. Trade 1 is from signal to next signal. Also use Trailing stop based on Fibonacci. Trade 2 Set take profit at Fibonacci level. Trade 3 Set take profit at Fibonacci level. Also use Trailing stop based on Fibonacci. Settings Activate Buy 1    //--------To enable long trades for operation 1 Activate Sell 1    //--------To enable short trades for operation 1 Activate Buy 2    //--------To enable long trades
Hello all The expert works by hanging pending deals moving with the price when activating a transaction It closes on the stop loss or on a profit from the pursuit of profit Work on low spread currency pairs Like dollar yen currency The work is done with the same settings as the expert, or it can be modified as the user likes Work on a timing of 15M or more as the user likes parameters: Transaction_Movement : Movement =true  . no Movement=false . Lot1: Manual Lot Size Auto_Lot: Set true to aut
Multiversal
Corentin Petitgirard
5 (1)
please read the description. After months of programming and testing, I'm proud to share  Multiversal  with you . Multiversal  is an expert who works on Timeframe M5 on 20 different pairs  each with a different setting.  Multiversal  is a scalper who is not spread sentive . So It works on every brokers in all conditions. Multiversal  does not use any dangerous strategies  like martingal or hedging that could blow up your account. This expert is the final product of a long period of research.
TLFv1
Thanakorn Suphakornthongchot
Short-Term Fibonacci Trading Strategy with Clear TP and SL Strategy: Timeframe: M15 Indicator: Fibonacci Retracement Fibonacci Levels: Buy Entry: 38.2%, 50.0% Sell Entry: 61.8%, 78.6% TP/SL Placement: SL: Below/above the Fibonacci level used for entry Minimum Capital: $100 Instruments: Metals: Gold (XAUUSD) The recommended spread starts from 10 to 25, and should not exceed 28.
Axel Bot MT4
Salman Metioui
Axel Bot is a sophisticated trading algorithm designed to empower traders with advanced hedging strategies. By seamlessly integrating with major financial markets, Axel Bot allows users to execute trades algorithmically, minimizing risk and maximizing potential returns. The bot leverages real-time market data, advanced analytics, and predictive modeling to identify opportunities for hedging, enabling traders to protect their portfolios against unfavorable market movements. With its intuitive int
The EJ_15_201514104_S_SM_CF_SQ4 is an algorithmic trading strategy for MetaTrader, tested on EURJPY using the M15 timeframe from April 1, 2004, to April 24, 2024. There is no need to set up parameters, all settings are already optimized and fine-tuned. Recommended broker  RoboForex  because of EET timezone. You can find the strategy source code for StrategyQuant at the link:   http://quantmonitor.net/listing/eurjpy-awesome-oscillator-master/ Key details are: MagicNumber: 201514104 Main
FREE
Hello all The expert works on the moving average indicator Calculating the number of points from the current price and the index Entering into a profit deal 5 pips If the trend reverses with a new signal, it enters a trade with the trend with opening consolidation deals with the same size of the original lot With the closure of all together on a profit of  5 points Cooling deals with the same size of the basic lot 15 pips opens a new trade Work on the M15. Parameters: Lot1: Manual Lot Size Au
이 제품의 구매자들이 또한 구매함
AI Gen XII MT4
Denis Kurnev
5 (20)
AI Gen XII EA This is an Expert Advisor with the latest use of Artificial Intelligence and Neural Networks. The EA runs on the top-of-the-line GPT-4o platform and also uses Advanced Discrete Fourier Imaging in ATFNet aligns the frequency spectrum of the input series, allowing for a more complete analysis of time series data. The EA also boasts trading on different strategies simultaneously and matching backtest trades and real trading, which is very important in its time.  Details about Advisor
Gold Trading AI
Ho Tuan Thang
5 (6)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2258186 Gold Trading AI is an EA that uses artificial intelligence technology to analyze data of many indicators. From there, EA will have the best option to enter orders. The biggest difference of Gold Trading AI is that the EA can control the Risk:Reward ratio much better than other EAs.That is possible thanks to a set of tools to control entry
Z4scalp
Cence Jk Oizeijoozzisa
4.43 (7)
-------------------------------------------소개: Z4SCALP--------------------------------------------- Z4SCALP는 마팅게일 없이 설계된 거래당 SL, 매우 작은 SL을 갖춘 고급 거래 로봇입니다. 가짜 수익 2주 동안 수익을 올리고 제한된 손실로 사라집니다. 이 전문가는 그런 식으로 일하지 않습니다. 제 전문가는 인내심이 필요합니다. 2개월 후에 결과와 복리 이자가 귀하의 계좌에 나타납니다. 서둘러서 빨리 수익을 내고 싶다면 이 전문가를 사지 마십시오. 독점 제공: 제품 하나를 구매하면 다른 하나를 무료로 받으세요! 나머지 세 가지 버전은 무료로 제공됩니다. ------------------------------------------------------------------------------------------------------------------------------ 테스트 전략을 신뢰
CoreX G MT4
Arseny Potyekhin
5 (4)
개요 CoreX G EA는 외환 시장의 복잡성을 해결하기 위해 특별히 설계된 고급 거래 시스템입니다. 최첨단 신경망, 정교한 머신 러닝 기술, 통합된 빅데이터 전략을 활용하여 CoreX G는 거래에서 탁월한 정확성과 보안을 제공합니다. 이 전문가 고문(EA)은 기술적 우수성과 프리미엄 고객 지원으로 차별화되며, 사용자가 질문이나 우려 사항에 대해 항상 도움을 받을 수 있도록 합니다. 신호: Live Signal 1 Live Signal 2 Blog: CoreX G EA 이 전략은 매우 독특하기 때문에 라이선스의 수를 제한하여 판매하고 싶습니다. 따라서 판매를 제한하기 위해 가격이 점차 상승할 것입니다. 다음 가격은   790 달러입니다. 브로커 모든 브로커, ECN/제로 스프레드 선호 레버리지 1:20부터 입금 최소 200$     심볼 XAUUSD 타임프레임 H1 빅데이터 통합 및 거래 전략 빅데이터는 CoreX G 전략의 핵심입니다. 이 시스템은 방대한 양의 역사적 및
Golden Ai EA MT4
Mansour Babasafary
5 (2)
40% discount only for the next 5 buyes (Original price: 600 $) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert Golden Ai Combined with artificial intelligence Control the AI with a variety of simple settings Without using dangerous strategies (all trades have a profit limit and a loss limit) Can be used in Gold (XAUUSD) currency pair and 3 important time frames An expert who has been trained by artif
Waka Waka EA
Valeriia Mishchenko
4.31 (48)
EA has a live track record with 4.5 years of stable trading with low drawdown: Live performance MT5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make p
Quantum Emperor MT4
Bogdan Ion Puscasu
4.87 (143)
소개       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 또는 Quantum Queen 또는 Quantum Gold Emperor를 무료로 받으실 수 있습니다!*** 자세한 내용은 비공개로 문의하세요. 새로운 Live Signal V5:   여기를 클릭하세요 MT5 버전 :  여기를 클릭하세요 Quantum EA 채널:       여기를 클릭하세요 10개 구매 시마다 가격이 $50씩 인상됩니다. 최종 가격 $1
The Infinity EA MT4
Abhimanyu Hans
4 (4)
ChatGPT Turbo를 통한 AI 기반 기술 Infinity EA는 GBPUSD 및 XAUUSD를 위해 설계된 고급 거래 전문가 자문가입니다. 안전성, 일관된 수익률 및 무한한 수익성에 중점을 둡니다. 마팅게일 또는 그리드 거래와 같은 고위험 전략에 의존하는 다른 많은 EA와 달리 Infinity EA는 최신 ChatGPT 버전에서 제공하는 기계 학습, 데이터 분석 AI 기반 기술에 내장된 신경망을 기반으로 하는 규율 있고 수익성 있는 스캘핑 전략을 사용하여 전반적인 거래 경험을 탁월하게 만듭니다. 6,000명 이상의 멤버로 구성된   MQL5 커뮤니티에   가입하여 다른 트레이더와 소통하세요. 최신 제품 업데이트, 팁, 독점 콘텐츠로 최신 정보를 받아보세요. MT5 버전 Infinity EA 설정 방법 특징 Infinity EA는 AI 기반 스캘핑 전략을 활용합니다. EA는 실시간 데이터 분석을 위해 ChatGPT-4 Turbo와 통합되어 있습니다. Infinity EA는
Bonnitta EA
Ugochukwu Mobi
3.42 (19)
Bonnitta EA는 보류 포지션 전략(PPS)과 매우 진보된 비밀 거래 알고리즘을 기반으로 합니다. Bonnitta EA의 전략은 비밀 사용자 지정 지표, 추세선, 지원 및 저항 수준(가격 조치) 및 위에서 언급한 가장 중요한 비밀 거래 알고리즘의 조합입니다. 실제 돈으로 3개월 이상 테스트하지 않고 EA를 구입하지 마십시오. 실제 돈으로 BONNITTA EA를 테스트하고 아래 링크에서 결과를 확인하는 데 100주 이상(2년 이상)이 걸렸습니다. BONNITTA EA는 사랑과 권한 부여로 만들어졌습니다. 불법 복제 알고리즘의 가격 및 구현의 이유는 소수의 구매자에게만 해당됩니다. Bonnitta EA는 테스트를 거쳤으며 22년 동안 99,9% 품질의 실제 진드기를 사용하여 실제 시장 조건에 가까운 슬리피지 및 수수료로 스트레스 테스트를 성공적으로 통과했습니다. Expert Advisor에는 완전한 통계 제어를 통해 통계 수집 및 미끄러짐 제어 알고리즘이 포함되어 있습니다
Bitcoin Robot MT4
Marzena Maria Szmit
5 (17)
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
EA Gold Stuff
Vasiliy Strukov
4.73 (967)
EA Gold Stuff 는 금 거래를 위해 특별히 고안된 전문가 고문입니다. 작업에 기반의 개방의 주문 금을 사용하여 물건의 표시는,그래서 고문 작품에 따라"트렌드를 따라"전략을 의미,다음과 같은 추세이다. 중요! 구매 후 즉시 저에게 연락하여 지침과 보너스를 받으십시오!  강력한 지원 및 트렌드 스캐너 표시기의 무료 사본을 받으실 수 있습니다. 메시지를 보내주세요. 나!   실시간 결과는 여기에서 볼 수 있습니다 매개 변수 새로운 시리즈 열기-주문의 새로운 시리즈의 온/오프 시작. 시작 로트-시작 로트. 무역 구매-전문가 고문이 구매할 수 있도록하십시오. 무역 판매-전문가 고문이 판매 할 수있게하십시오. 사용하지면서 기능을 사용한 고문이 무역은 모두 구매 및 판매하는 방향,기능 장애인,고문관이 무역에 단 하나의 방향이다. 돈 Manadgement 를 사용-온/오프 자동 로트 계산의 사용. 오토롯. 각 0.01 로트에 대한 자유 마진-각 0.01 로트 단위의
Way To Stars는 낮은 위험 기회를 활용하기 위해 시장 변동성이 낮은 기간에 거래하도록 특별히 설계된 야간 암표 EA입니다.이 야간 암표 EA는 잦은 거래를 위한 작은 가격 움직임을 포착하여 시간이 지남에 따라 수익을 축적하는 데 집중합니다.거래당 잠재적 손실을 제한하기 위해 엄격한 스톱로스 조치를 사용하여 효과적인 리스크 관리를 보장합니다.Way To Stars는 소위 말하는 신경망, 인공 지능, ChatGPT 또는 완벽한 직선 백테스팅 결과에 의존하지 않는 진실되고 정직한 거래 시스템입니다. MT5       사용 설명서   signal :  https://www.mql5.com/en/signals/2260126   다음 가격: $ 699 setfile of Medium-low Risk setfile of High Risk 이 EA의 특징: 적합한 통화쌍:GBPUSD Load timeframe:임의의 시간 그리드도 없고, 마팅게일도 없고, 한 번에 한 번 트레이드 주문을
AI TradingVision GPX MT4
Yu Mei Cheng
4.64 (14)
Strategy Introduction The EA will find the best entry and exit points based on the data trained by the neural network and the current market trend. It includes multiple loss exit strategies to ensure capital safety. Because the market is full of uncertainties, it is impossible to enter at the most ideal point every time. Our EA uses a unique batch entry method, adding up to 5 entry points. Even occasional misjudgments can quickly recover subsequently. Each order has a fixed stop loss (SL) and t
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 990$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 골드 리퍼에 오신 것을 환영합니다! 매우 성공적인 Goldtrade Pro를 기반으로 구축된 이 EA는 동시에 여러 기간에 걸쳐 실행되도록 설계되었으며 거래 빈도를 매우 보수적인 것부터 극단적인 변동까지 설정할 수 있는 옵션이 있습니다. EA는 여러 확인 알고리즘을 사용하여 최적의 진입 가격을 찾고 내부적으로 여러 전략을 실행하여 거래 위험을 분산시킵니다. 모든 거래에는 손절매와 이익 실현이 있지만, 위험을 최소화하고 각 거래의 잠재력을 극대화하기 위해 후행 손절매와 후행 이익 이익도 사용합니다. 이 시스템은 매우
HFT Prop Firm EA
Dilwyn Tng
4.97 (666)
HFT Prop Firm EA는 고유한 로고로 인해 Green Man으로도 알려져 있으며, 고빈도 거래(HFT) 전략을 허용하는 독점 트레이딩 회사(prop firms)의 도전 과제나 평가를 극복하기 위해 특별히 제작된 전문가 자문(EA)입니다. 한정 기간: HFT Prop Firm EA를 구매하면 $198 상당의 무료 유틸리티 제공 MT5 버전: https://www.mql5.com/en/market/product/117386 HFT 챌린지 성능 모니터(시작가 $200): 브로커: IC Markets 계좌 번호: 66603384 서버: ICmarketsSC-Demo06 비밀번호: Greenman 브로커: IC Markets 계좌 번호: 21718043 서버: ICmarketsSC-Demo02 비밀번호: Greenman 결과 1: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4333.gif 결과 2: https://c.mql5.com/3
Diamond PRO
Fanur Galamov
5 (20)
Sale 30% OFF! Only 1 copy left for $199.  Next price --> $299.  Diamond PRO is enhanced powerful version of Diamond for advanced traders. Pro version includes optimized cores, new impoved entry points filters, new multistage profit closure algorithm and сontains number of external control parameter that allows build and fine tune own tradind decisions and algorithms. The system provides more accurate market entries, analyzes and filters upcoming economic news, contains spread protection and an
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool t
HeXon FX MT4
Arseny Potyekhin
HeXon FX – 외환 트레이더를 위한 프리미어 트레이딩 솔루션 HeXon FX는 외환 시장에서 정확하게 작동하도록 설계된 고급형 전문가 어드바이저(EA)입니다. 최첨단 거래 전략을 활용하여 HeXon FX는 주요 통화쌍인 EURUSD 거래에 유연하고 안정적인 솔루션을 제공합니다. 이 EA는 특히 변동성이 큰 시장 상황에서 탁월하며, 다양한 시장 상황에 효과적으로 적응하여 위험을 최소화하면서도 일관된 수익을 제공합니다. 신호: Live Signal 1 이 전략은 매우 독특하기 때문에 라이선스의 수를 제한하여 판매하고 싶습니다. 따라서 판매를 제한하기 위해 가격이 점차 상승할 것입니다. 다음 가격은   690 달러입니다. 브로커 모든 브로커, ECN/제로 스프레드 선호 레버리지 1:20부터 입금 최소 50$     심볼 EURUSD 타임프레임 H1 HeXon FX의 차별화된 전략들 HeXon FX는 개별적으로 또는 조합하여 최적의 성능을 발휘할 수 있는 여러 복잡한 거래 전
AI NoX EA MT4
Denis Kurnev
5 (1)
AI NoX EA is an innovative Forex expert advisor that combines advanced neural networks technologies with high-volume trading and   Matrix factorisation .The advisor uses complex algorithms to decompose large sets of market data, uncovering hidden patterns and correlations between various financial instruments. Details about Advisor Development Configuring the Advisor Real Time Signal XAUUSD:  https://www.mql5.com/en/signals/2254092 Real Time Signal USDJPY:  https://www.mql5.com/en/signals/225409
Fenghuang Rig EA MT4
Sof'ia Vlasova
5 (3)
Fenghuang EA utilizes clustering principles in machine learning to analyze data, identifying groups of objects or events with similar features or relationships. It uncovers hidden patterns and categorizes objects by similarities, aiding in the discovery of causal relationships. The EA allows for in-depth data analysis, highlighting significant relationships without risky techniques like martingale, netting, or scalping, making it compatible with various brokerage environments. Read more about t
EA Black Dragon
Ramil Minniakhmetov
4.79 (482)
EA Black Dragon은 Black Dragon 표시기에서 작동합니다. Expert Advisor는 지표의 색상으로 거래를 연 다음 주문 네트워크를 구축하거나 손절매로 작업할 수 있습니다. 실제 작업 및 기타 개발 모니터링은 여기에서 찾을 수 있습니다. https://www.mql5.com/en/users/mechanic/seller 여기에서 모든 설정을 찾을 수 있습니다! 권장 사항 통화 쌍 EURUSD GBPUSD  타임 프레임 M15  권장 보증금 1000달러 또는 센트  권장 설정 기본 설정 입력 매개변수  초기 로트 - 초기 로트 로트 승수 - 후속 주문에 대한 로트 승수. Autolot - 자동 로트 계산을 활성화/비활성화합니다. 자동 로트 크기 - 자동 로트가 활성화된 경우 어드바이저가 로트를 사용할 예치금. 거리 - 주문 사이의 거리. 최대 로트 - 어드바이저가 열 수 있는 최대 로트. 이익을 취하십시오 - 이익을 취하십시오. 손절매 - 손절매 포
Scalper Dragon
Van Hoa Nguyen
4.89 (9)
Scalper Dragon is a scalping robot developed for GBPUSD, USDCHF, EURAUD pairs. The current version adds a few features that increase system consistency. Trade with the scaling strategy on the M5 timeframe. Orders always come with stoploss, fixed takeprofit.  Download Setfile all pair Current price is $99 for the next 09 copies purchased. The next price will be $210 FEATURES Fully automatic mode with adjustable inputs. Strict use of stop loss management, every trade is protected in advance. EA
Gold Scalper Trading
Ho Tuan Thang
4.15 (13)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. Gold Scalper Trading is an EA that uses a complex trading methodology that includes cross-market analysis to find scalpable entry points with XAUUSD, one of the market's wildest running pairs. EA uses stop loss for all orders, only 1 order and does not use any dangerous trading methods: No grid, no martingale,... Gold Scalper Trading is one of the EAs I have used. using and trading with fund management account
Gold Scalping Expert
Vasiliy Strukov
5 (3)
Gold Scalping Expert is a very intelligent smart algorithm which exploits the reaction of gold during various high-impact events like geo-political news, pandemics, and economic changes.  This system trades breakouts using the popular zig-zag indicator by placing pending orders at the turning points and when the price breaks out beyond these levels the orders will get triggered.  The EA is using a very smart trailing stop and dynamic stop loss to protect your account and manage the risk properly
AW Recovery EA
AW Trading Software Limited
4.36 (73)
Expert Advisor는 수익성이 없는 포지션을 회수하도록 설계된 시스템입니다.   작성자의 알고리즘은 손실 위치를 잠그고 여러 부분으로 분할하고 각 부분을 별도로 닫습니다. 손쉬운 설정, 하락 시 지연된 시작, 다른 Expert Advisors 잠금, 비활성화, 추세 필터링을 통한 평균화 및 손실 위치의 부분 마감이 하나의 도구에 내장되어 있습니다. 전체 그룹에서만 주문을 마감하는 그리드 전략과 달리 더 낮은 예금 부하로 손실을 줄일 수 있는 부분에서 마감 손실을 사용하여 손실과 함께 더 안전한 작업을 보장합니다. 주문이 복원되는 방법: 1 EA는 선택한 상품의 다른 창을 닫아 수익성이 없는 EA를 끕니다(선택 사항). 2 EA는 처리된 모든 주문에 대해 TakeProfit 및 StopLoss 수준을 재설정하고 해당 식별자가 있는 보류 주문을 삭제합니다. 3 EA는 수익성이 없는 주문의 일부를 충당하고 총 포지션 볼륨을 줄이기 위해 이익을 사용하기 위해 처리된 모든 수익성 있
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
수요와 공급의 원칙에 기반한 완전 자동화된 조언자입니다 . 처음으로 우리는 완전히 자동화된 공급 및 수요 조언자를 제공합니다 . 거래가 쉬워졌으며 이제 거래 전략을 완벽하게 제어할 수 있습니다. 편리한 그래픽 제어판을 사용합니다. 15,000줄 이상의 코드가 포함된 매우 높은 품질의 알고리즘 거래 소프트웨어를 얻을 수 있습니다. EA 프로봇 공급 및 수요 가이드 Prop Firms를 거래하는 가장 좋은 방법은 자격을 갖춘 거래자가 되기 위한 모든 단계에 도전합니다. 모든 거래는 자동으로 이루어지고 관리됩니다. 항목을 선택하고 긴장을 풀면서 상금이 커지는 것을 지켜보세요. 패널 입력 매개변수: 거래 방향 선택(매수 또는 매도) 거래하려는 기간을 선택하세요. 서비스하려는 구역 유형 (넓음, 중간, 좁음, 매우 좁음)을 선택하십시오. 세 가지 자금 관리 옵션 중에서 선택하세요 일련의 승리 또는 손실 거래 후에 그만 두는 고문을 선택하십시오 . 위험 또는 ATR을
Trend Line PRO EA mt4
Evgenii Aksenov
4.7 (43)
The Expert Advisor trades on the signals of the Trend Line PRO indicator. Orders are managed automatically. The EA has a Recovery function that increases the order size if the previous trade was closed with a loss. You can use from 1 to 3 orders at the same time. The Expert Advisor fully complies with the indicator signals and FIFO rules, does not use the grid function, which allows you to start trading with a minimum deposit of $100 The EA has a mobile trading panel for managing auto-trading f
AW Classic MACD EA
AW Trading Software Limited
3.67 (3)
완전 자동화된 거래 시스템. 신호로 사용되는 고전적인 표시기       MACD   는 진입점을 감지하기 위해 오실레이터와 추세 표시기를 결합합니다. 평균화, 첫 번째 및 마지막 바구니 주문을 마감하는 기능 및 자동 로트 계산 기능을 사용합니다. 고급 대시보드와 세 가지 유형의 알림이 있습니다. Problem solving ->   HERE  / MT5 version ->  HERE   /   Instruction  ->   HERE   이익: 완전 자동화된 거래 시스템 쉬운 설정과 직관적인 패널 인터페이스 캔들당 하나의 주문만 열 수 있는 기능 자동 로트 계산 내장 첫 번째 및 마지막 장바구니 주문을 마감하는 내장 시스템 세 가지 유형의 알림: 푸시, 이메일, 알림 전략: EA는 표시기에서 신호를 수신할 때 위치를 엽니다. - 제로 레벨: "0" 표시의 빠른 선이 아래에서 위로 교차할 때 - 구매 신호, BUY 주문 시작. 위에서 아래로 "0" 표시를 넘을 때 - 매도 신호,
Indicement MT4
Profalgo Limited
5 (1)
Indicement에 오신 것을 환영합니다! PROP FIRM 준비 완료! ->   여기에서 세트 파일을 다운로드하세요 프로모션 출시: 현재 가격으로는 몇 개밖에 남지 않았습니다! 최종 가격: 990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 최고의 콤보 딜     ->     여기를 클릭하세요 공개 그룹에 가입하세요:   여기를 클릭하세요   LIVE SIGNAL INDICEMENT는   제가 15년 동안 축적한 경험을 바탕으로 지수 시장에 전문적 거래 알고리즘을 개발했습니다. EA는 매우 잘 고안된 알고리즘을 사용하여 최상의 진입 가격을 찾고, 거래 위험을 분산하기 위해 내부적으로 여러 가지 전략을 실행합니다. 모든 거래에는 손절매와 이익실현이 있지만, 거래의 위험을 최소화하고 잠재력을 극대화하기 위해 추적 손절매와 추적 이익실현도 사용합니다. 이 시스템은 매우 인기 있고 검증된 전략, 즉 중요한
AI Meta EA MT4
Denis Kurnev
4.43 (7)
Introducing the AI Meta EA advisor - a remarkable leap in the world of trading! If you've always aspired to something greater and uncharted, then AI Meta EA is what you need. It harnesses cutting-edge artificial intelligence technologies, developed using neural networks and hidden algorithms in the deepest corners of the internet. What makes AI Meta EA so uniquely exceptional? Forget about old strategies and mundane indicators! My advisor possesses an intuition that even the most experienced tra
제작자의 제품 더 보기
MQL Universal EA
Martin Eshleman
4.56 (9)
Summary of the Expert Advisor This EA will trade using standard MT4 indicators such as Moving Averages, MACD, RSI, Bollinger Bands, and so on. The EA was made so that these indicators can be mixed or matched so a number of possibilities can be traded with. Each indicator can be enabled or disabled and many settings are adjustable for each indicator. There are also other features included like multiple time frame capability and money management. As a result, many different trading strategies can
FREE
Gann Time Clusters
Martin Eshleman
2.5 (2)
Gann Time Clusters Indicator This indicator is based on W. D. Gann's Square of 9 method for the time axis. It uses past market reversal points and applies the mathematical formula for Gann's Square of 9 and then makes projections into the future. A date/time where future projections line up is called a 'time cluster'. These time clusters are drawn as vertical lines on the right side of the chart where the market has not advanced to yet. A time cluster will result in a market reversal point (ex.
Custom Pattern Detector Indicator This indicator lets you define your own custom pattern instead of the typical candlestick patterns. Everybody already knows about common candlestick patterns like the Doji pattern. This indicator is different though. The pattern you will define is a custom pattern based on CANDLE FORMATIONS . Once the indicator knows the pattern you want it to look for, then it will go through history on the chart and find matching patterns, make them visible to you, and calcul
FREE
MQL Random EA
Martin Eshleman
3.33 (3)
Summary: This EA places a single trade at a time in a RANDOM direction (buy or sell) and uses a simple TP & SL. A lot multiplier is also optional. Once a trade hits TP/SL, it will place another trade in a random direction. And so on. Since it only ever has 1 trade open at a time, it can be used on any broker. Which means it can be used on US brokers with the FIFO rule. Inputs are few and everything is based in Points too. So it can be used on any chart reliably and easily. You will be amazed how
FREE
Summary This indicator is based on RSI and Momentum indicators. It also considers moving averages of these two indicators. The three indicators have adjustable settings. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. The arrows can be used in the EA and the inputs can also be optimiz
FREE
Fibonacci SR Indicator
Martin Eshleman
3 (2)
Fibonacci SR Indicator This indicator creates support and resistance lines. This indicator is based on Fibonacci Retracement and Extension levels. It will consider many combinations of the Fibonacci levels and draw support/resistance lines based on these. This indicator uses tops and bottoms drawn by the ZigZag indicator in its calculations. The ZigZag can also be drawn on the chart, if necessary. The indicator considers many combinations of past reversal points and Fibonacci ratio levels, and
FREE
MA RSI Arrows
Martin Eshleman
4 (3)
Summary This indicator is based on the MA applied to the RSI indicator. It draws arrows at the confirmed crosses of the MA over the RSI line. When the MA crosses upwards, then a buy arrow is displayed and vice versa. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. Inputs All inputs
FREE
MA Momentum Arrows
Martin Eshleman
4.67 (3)
Summary This indicator is based on the MA applied to the Momentum indicator. It draws arrows at the confirmed crosses of the MA over the Momentum line. When the MA crosses upwards, then a buy arrow is displayed and vice versa. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. Inputs A
FREE
Auto ZZ SR Indicator This indicator automatically draws trend lines using ZigZag top and bottom points. The more ZigZag tops/bottoms that are used, the greater the number of possible combinations. Therefore, the more possible trend lines can be drawn. And vice versa too. The fewer ZigZag tops/bottoms that are used, the lower the number of possible combinations. And therefore, the fewer the possible trend lines can be drawn. The indicator constantly updates the trend lines on the chart as the ma
FREE
Cycles Predictor
Martin Eshleman
Cycles Predictor Indicator This indicator uses past market cycles to predict future price movements. The indicator scans through past data and considers  combinations  of cycles. When cycles  coincide  at the same future date/time then it is considered a valid future prediction. The predictions are drawn as vertical lines on the right side of the chart in the future. A prediction will often result in type of candle (ex. bull or bear) and/or a reversal point (ex. bottom or top) forming at this ex
필터:
jaffd123
143
jaffd123 2017.03.10 20:38 
 

I purchased this product and downloaded to my laptop. I need this on my desktop. I reached to the developer who is not willing to support this simple process unlike other developers. MQL5 does support multiple activation but the developer is not willing to spend the time. I will change my review only when I recieve the level of support required for my request. Below are MQL5 Product Rules that developers need to obide by:

Rules of Using the Market Service

The number of free Product Activations available to the Buyer on another PC after purchasing the Product is defined by the Seller. The minimum number of such Activations is 4.

The Buyer purchases the right to activate a Product as many times as specified by the Seller at the moment of purchasing or renting this Product. For example, if a Product allows 20 activations at the moment of its purchase, the Buyers can install it on 20 different hardware + OS configurations even if the Seller will decrease this number afterwards.

https://www.mql5.com/en/market/rules

Martin Eshleman
9067
개발자의 답변 Martin Eshleman 2024.05.28 16:36
MQL5 handles licensing and distribution. I cannot help you since there is no possibility for this on my side!
리뷰 답변
버전 1.30 2024.05.28
- The EA is now FREE!
- Added a new input called 'See Example Lines'
- The EA will now set example lines at initialization if either it is backtesting and/or if the new input called 'See Example Lines' is true. These example lines show the user how to set the keywords for each line. They also give the user a quick way to see the EA in action. They can be dragged where needed, their keywords changed, or they can even be deleted. They are just examples.
- Misc. performance improvements.
- The EA now checks if there is enough available margin to make the trade. If not, the trade will be skipped and the line will remain on the chart since it was not traded.
- The EA now checks for min/max lot and lot step rules. The EA will round up/down if needed to make the trade.
- Updated code for newest MT4 compiler.
버전 1.10 2015.12.09
Various small improvements have been done resulting in increased efficiency and speed.