Shawrie

This Pine Script implements a Gaussian Channel + Stochastic RSI Strategy for TradingView. It calculates a Gaussian Weighted Moving Average (GWMA) and its standard deviation to form an upper and lower channel. A Stochastic RSI is also computed to determine momentum. A long position is entered when the price closes above the upper Gaussian band and the Stoch RSI K-line crosses above D-line. The position is exited when the price falls back below the upper band. The script includes commission, capital management, and date filtering.




here is the code

//@version=5 strategy("Gaussian Channel + Stoch RSI Strategy", overlay=true, margin_long=100, margin_short=100, initial_capital=100000, commission_type=strategy.commission.percent, commission_value=0.1, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=1) // User Inputs length = input.int(20, "Gaussian Length", minval=5) multiplier = input.float(2.0, "Channel Multiplier", step=0.1) rsiLength = input.int(14, "RSI Length", minval=1) stochLength= input.int(14, "Stoch RSI Length", minval=1) kLength = input.int(3, "Stoch K Smoothing", minval=1) dLength = input.int(3, "Stoch D Smoothing", minval=1) // Gaussian Weighted Moving Average Function f_gaussian(source, length) => half = (length - 1) / 2.0 sum = 0.0 norm = 0.0 // Gaussian standard deviation chosen as length/6 for a smooth curve denom = (length / 6.0) * (length / 6.0) for i = 0 to length - 1 x = i - half w = math.exp(-(x * x) / (2 * denom)) sum += source[i] * w norm += w sum / norm // Gaussian Weighted Standard Deviation Function f_gaussian_std(source, length) => half = (length - 1) / 2.0 gavg = f_gaussian(source, length) sum = 0.0 norm = 0.0 denom = (length / 6.0) * (length / 6.0) for i = 0 to length - 1 x = i - half w = math.exp(-(x * x)/(2*denom)) diff = source[i] - gavg sum += diff * diff * w norm += w math.sqrt(sum/norm) // Compute Gaussian Channel gaussMid = f_gaussian(close, length) gaussStd = f_gaussian_std(close, length) gaussUpper = gaussMid + gaussStd * multiplier gaussLower = gaussMid - gaussStd * multiplier // Stochastic RSI Calculation rsi = ta.rsi(close, rsiLength) rsiLowest = ta.lowest(rsi, stochLength) rsiHighest = ta.highest(rsi, stochLength) stoch = 100 * (rsi - rsiLowest) / math.max(rsiHighest - rsiLowest, 1e-10) k = ta.sma(stoch, kLength) d = ta.sma(k, dLength) // Conditions // Long entry: Price closes above upper Gaussian line AND Stoch RSI K > D (stochastic is "up") longCondition = close > gaussUpper and k > d // Exit condition: Price closes below upper Gaussian line exitCondition = close < gaussUpper // Only trade in the specified date range inDateRange = time >= timestamp("2018-01-01T00:00:00") and time < timestamp("2069-01-01T00:00:00") // Submit Orders if inDateRange if longCondition and strategy.position_size <= 0 strategy.entry("Long", strategy.long) if exitCondition and strategy.position_size > 0 strategy.close("Long") // Plot Gaussian Channel plot(gaussMid, "Gaussian Mid", color=color.new(color.yellow, 0)) plot(gaussUpper, "Gaussian Upper", color=color.new(color.green, 0)) plot(gaussLower, "Gaussian Lower", color=color.new(color.red, 0))


추천 제품
LSTM Library
Thalles Nascimento De Carvalho
LSTM Library - MetaTrader 5용 고급 신경망 알고리즘 트레이딩을 위한 전문 신경망 라이브러리 LSTM Library는 MQL5 트레이딩 전략에 순환 신경망의 힘을 가져다줍니다. 이 전문적인 구현에는 일반적으로 특수 기계 학습 프레임워크에서만 볼 수 있는 고급 기능을 갖춘 LSTM, BiLSTM 및 GRU 네트워크가 포함되어 있습니다. "트레이딩을 위한 기계 학습의 성공 비결은 적절한 데이터 처리에 있습니다. 쓰레기를 넣으면 쓰레기가 나옵니다 – 예측의 품질은 절대 훈련 데이터의 품질을 넘을 수 없습니다." — 마르코스 로페즈 데 프라도 박사, Advances in Financial Machine Learning 주요 기능 LSTM, BiLSTM 및 GRU의 완전한 구현 더 나은 일반화를 위한 재귀 드롭아웃 다양한 최적화 알고리즘(Adam, AdamW, RAdam) 고급 정규화 기술 포괄적인 지표 평가 시스템 훈련 진행 시각화 클래스 가중치를 통한 불균형 데이터 지
MT4/5通用交易库(  一份代码通用4和5 ) #import "K Trade Lib5.ex5"    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单    void SetMagic( int magic, int magic_plus= 0 ); void SetLotsAddMode(int mode=0,double lotsadd=0);    long OrderOpenAdvance( int mode, int type, double volume, int step, int magic, string symbol= "" , string comm
FREE
A free indicator for those who purchase the full version This indicator is created by this Ai, with your desired settings Artificial Intelligence at your service Have a complete artificial intelligence and use it in your codes This artificial intelligence is trained to tell you on each candle whether the market is moving up or down. In general, artificial intelligence can be used in all markets, all timeframes and all symbols However, due to the increasing complexity and decreasing accuracy of
EagleFX10
Youssef Wajih Saeed I Said It Here
요약 EagleFX는 MetaTrader 5 전용 완전 자동화 EA로, 다양한 상품을 대상으로 24시간 알고리즘 거래를 고정밀도로 실행합니다. 감정 개입을 배제하고, 모든 신호를 엄격히 백테스트하며, 리스크 파라미터를 동적으로 조정하고, 머신러닝 기반 메모리 모듈을 활용해 성과를 지속 개선합니다. 끊임없는 감정 없는 실행 피로 없이 시장을 모니터링하고, 조건 충족 즉시 거래를 실행합니다. 검증된 백테스트 전략 ATR, EMA, RSI 같은 지표 기반 규칙을 다년간 데이터로 검증해 오버핏팅을 방지합니다. 고급 아키텍처 및 적응력 핸들 기반 지표 호출과 다계층 메모리 설계로 실시간 전략 최적화를 지원합니다. 견고한 리스크 및 자금 관리 Kelly 기준에 따른 동적 포지션 조정, 일간/주간 손실 한도 설정, 브로커 제약 자동 처리. 넓은 시장 범위 및 안정성 FX뿐 아니라 CFD, 지수, 원자재까지 확장 가능하며, 로깅과 오류 처리로 안정적 운영을 보장합니다.
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support Binance Futures USD-M and COIN-M Support Testnet mode Support all order types: Limit, Market, StopLimit, StopMarket, StopLoss and TakeProfit Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header file and EA sample https://drive.google.com/uc?export=download&id=17fWrZFeMZoSvH9-2iv4WDJhcyxG2eW17 Copy BinanceFutures.mqh to folder \MQL5\Include Copy  Bina
This library allows you to automatically filter events by symbol. Additionally, it requires the use of "flags" to classify events based on their importance (high, low, etc.). Properties: Our library is simple and only requires the export of four functions to work properly. Requirements: The library uses OnTimer , so it is not compatible with programs that also use this event. If your bot utilizes OnTimer , this may interfere with the library’s functionality and prevent event filtering. We recomm
FREE
Relative Average Cost of Open Positions Indicator Description:   The “Relative Average Cost of Open Positions” indicator is a powerful tool designed for traders who engage in mean reversion strategies. It calculates the average entry price for both buy and sell positions, considering the total volume of open trades. Here are the key features and advantages of this indicator: Mean Reversion Trading: Mean reversion strategies aim to capitalize on price movements that revert to their historical ave
FREE
NEXA Breakout Velocity Channel Breakout + ROC 속도 필터 + 거래량 필터 + ATR 리스크 관리 기반의 자동매매 프로그램입니다. 본 제품은 변동성 확장 구간에서의 가격 돌파를 감지하도록 설계되었습니다. 신호는 종가 기준으로만 계산되며, 동일 심볼에 한 개의 포지션만 유지합니다. 전략 개요 이 제품은 다음 요소를 결합합니다. 채널 기반 돌파 감지 가격 변화 속도(ROC) 필터 거래량 증가 필터 하위 시간대 확인 옵션 ATR 기반 손절 및 손익비 설정 계좌 위험 비율 기반 자동 로트 계산 동적 리스크 관리 단순한 돌파가 아닌, 속도와 거래량이 동반된 돌파를 선택하도록 설계되었습니다. 작동 방식 설정된 기간의 고점/저점 채널을 계산합니다. 직전 봉이 채널을 돌파했는지 확인합니다. ROC 값이 평균 대비 일정 배수 이상인지 확인합니다. 거래량이 평균 대비 일정 수준 이상인지 확인합니다. 필요 시 하위 시간대에서 동일 조건을 재확인합니다. ATR 기반 손절
FREE
AO Core
Andrey Dik
3.67 (3)
AO Core is the core of the optimization algorithm, it is a library built on the author's HMA (hybrid metaheuristic algorithm) algorithm. Pay attention to the MT5 Optimization Booster product , which makes it very easy to manage the regular MT5 optimizer . An example of using AO Core is described in the article: https://www.mql5.com/ru/articles/14183 https://www.mql5.com/en/blogs/post/756510 This hybrid algorithm is based on a genetic algorithm and contains the best qualities and properties of p
A Simple Moving Average (SMA) is a statistical indicator used in time series analysis. This indicator represents the arithmetic mean of a sequence of values over a specific period of time. SMA is used to smooth short-term fluctuations in data, helping to highlight the overall trend or direction of changes. This aids analysts and traders in better understanding the general dynamics of the time series and identifying potential trends or changes in direction.  More information you can find in Wiki 
Pionex API EA 커넥터 for MT5 – 완벽한 MT5 연동 개요 Pionex API EA 커넥터 for MT5 는 MetaTrader 5 (MT5) 와 Pionex API 를 원활하게 통합하는 도구입니다. 이를 통해 트레이더는 MT5 에서 직접 거래를 실행하고, 계좌 잔액을 확인하며, 주문 내역을 조회할 수 있습니다. 주요 기능 계정 및 잔액 관리 Get_Balance(); – Pionex 의 현재 계정 잔액을 조회합니다. 주문 실행 및 관리 orderLimit(string symbol, string side, double size, double price); – 특정 가격으로 지정가 주문 실행. orderMarket(string symbol, string side, double size, double amount); – 특정 금액으로 시장가 주문 실행. Cancel_Order(string symbol, string orderId); – 특정 주문을 ID 로 취
Molo kumalo
James Ngunyi Githemo
Trading Forex with our platform offers several key advantages and features: Real-time Data : Stay updated with live market data to make informed decisions. User-Friendly Interface : Easy-to-navigate design for both beginners and experienced traders. Advanced Charting Tools : Visualize trends with interactive charts and technical indicators. Risk Management : Set stop-loss and take-profit levels to manage your risk. Multiple Currency Pairs : Access a wide range of forex pairs to diversify your tr
NewsXpert
Steve Rosenstock
여기를 클릭하여 제 모든 무료 제품을 확인하세요 NewsXpert 는 향후 발표될 모든 경제 이벤트를 차트 위에서 명확하고 구조적으로 보여주기 위해 개발되었습니다. 당신의 MetaTrader 5 를 위한 실시간 뉴스 필터 입니다. 이 인디케이터는 선택한 통화와 관련된 모든 중요 뉴스를 자동으로 감지하고, 색상으로 구분된 라인(낮음, 중간, 높음 영향도)으로 표시합니다. 이를 통해 외부 캘린더나 탭을 열 필요 없이, 시장을 움직일 뉴스가 언제 , 무엇인지 항상 정확하게 파악할 수 있습니다.  NewsXpert 는 경제적 불확실성을 예측 가능하게 만들어주며, 필요한 정보를 바로 필요한 위치 — 즉 차트 위에 실시간으로 제공해줍니다. 명확한 시각화, 정확한 사전 알림 시간, 그리고 정말 중요한 통화와 이벤트만 필터링할 수 있는 기능 덕분에, 당신의 트레이딩은 더 차분하고, 더 구조적이며, 훨씬 더 프로페셔널해집니다. 반응하는 것이 아니라, NewsXpert 를 사용하면 미리 준비하고
FREE
Overview AlgoNLP.mqh   is a standalone MQL5 library that converts   human-written trading instructions   into   structured trade intents   that your Expert Advisor (EA) or indicator can understand. Example input: Buy gold at 2370 with TP 0.3% and SL 1% Output intent: Side: BUY | Type: LIMIT | Symbol: XAUUSD | Entry: 2370 | TP: 0.3% | SL: 1% | Lot: 0.00 This enables you to build   chat-controlled   or   Telegram-integrated EAs   that can interpret plain English commands and execute structured
FREE
Steady Runner NP EA
Theo Robert Gottwald
2.5 (2)
Introducing Steady Runner NP EA (Free Version): Precision Trading for GBPUSD M5 What is Steady Runner NP EA? Steady Runner NP EA is a   mathematically designed Expert Advisor (EA)   exclusively crafted for the   GBPUSD M5 timeframe . Built with advanced algorithms and statistical models, this EA automates your trading strategy to deliver   precision, consistency, and discipline   in every trade. Whether you're a seasoned trader or just starting out, Steady Runner NP EA is your reliable par
FREE
Bookeepr
Marvellous Peace Kiragu
Bookeepr is an advanced MQL5 trading bookkeeping software that automates trade logging, tracks real-time P&L, and integrates a ledger-style financial system for deposits, withdrawals, and expenses. It supports multi-currency assets , generates detailed performance reports , and provides risk management tools to help traders optimize their strategies. With secure cloud storage, exportable reports, and seamless MetaTrader 5 integration , Bookeepr ensures accurate, transparent, and hassle-free fina
Automatic Replenishment Trading Within a Defined Range The EA operates   only within the predefined price range . When an order is   closed, filled, or cancelled   (reducing the total number of orders), the EA will   automatically place new orders   to maintain the continuous operation of the trading strategy. This EA is   designed for ranging / sideways market conditions . You can control the total number of orders using   Max Orders . Example: Max Orders:   8 Active trades:   2 Pending Sell L
What is SMC Market Structure Pro? SMC Market Structure Pro is an automated trading Expert Advisor for MetaTrader 5 , developed based on Smart Money Concept (SMC) and market structure analysis . The EA is designed to help traders follow the natural flow of the market , focusing on price structure instead of indicators or lagging signals. How Does the EA Work? The EA analyzes market structure changes using pure price action: Detects higher highs & higher lows for bullish structure Detects l
FREE
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
FREE
MA Crossover Pro EA
Mohammed Lamine Kasmi
EA Title: MA Crossover Pro EA Tagline: Intelligent Automated Trading to Seize Strong Trend Opportunities Full Description: The MA Crossover Pro EA is a fully automated trading system designed for traders looking to harness the power of trends in the financial markets. The Expert Advisor is based on one of the most classic and reliable strategies: the Moving Average Crossover . Key Features: 100% Fully Automated: From analysis to opening and closing trades. Reliable Strategy: Built on the time-te
FREE
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 1、分类别、分标的关仓。 适用场景:开了多个标的的仓位,并且波动不一,快速频繁的波动影响了整体的判断。 2、增加只关闭盈利仓位、只关闭亏损仓位。 适用场景:持仓较多,趋势发生变化。 个人建议:一般建议选择一键全部关仓,因为如果行情与持仓方向一致,只关闭盈利仓位无形就是扩大了亏损。如果行情方向与持仓方向相反,只关闭亏损仓位,当前已盈利的后面又会变为亏损,盈利无法变现。 3、按照仓位顺序由大到小关仓、按照仓位顺序由小到大关仓。 适用 场景:行情发生波动,对于未来行情判断把握不确定的,可根据自己需求选择仓位关仓顺序,由大到小关仓的话,可以避免亏损的进一步扩大。 4、减小仓位量,保持绝对的安全距离。 适用 场景:对未来趋势相对确定,不想错过当前行情,但是认为当前持仓体量又有点大,想降低仓位。
Period Breakout Indicator MT5
Komang Putra Riswanjaya
Overview The Period Breakout Indicator is a versatile tool designed for traders seeking to identify breakout opportunities based on customizable time periods. This indicator automatically determines the highest and lowest prices within a user-defined period, allowing you to tailor it precisely to your trading strategy. Key Features Customizable Time Periods:   Define the start and end times based on your preferred trading hours or any specific period. The indicator will then calculate the highes
FREE
Trend Strength Visualizer
Alexander Denisovich Jegorov
Trend Strength Visualizer A Simple Tool for Trend Analysis This indicator helps you quickly assess the strength of market trends using fast and slow moving averages. It’s designed to give you a clear visual representation of the trend, so you can make better trading decisions. ~Displays: Green Line : Strong uptrend (potential buying opportunities). Red Line : Strong downtrend (potential selling opportunities). ~Values That Can Be Changed: Fast MA period. Slow MA period. Line color for uptrend an
Nova DC Trader is a precision-focused breakout Expert Advisor built to capitalize on price compression and clean directional expansion. By identifying structured consolidation phases and high-quality breakouts, it transforms controlled price action into deliberate trading opportunities. Rather than chasing volatility or relying on lagging indicators, Nova DC Trader emphasizes structure, timing, and disciplined execution. It is designed for traders who value logic over randomness and prefer trade
FREE
여기를 클릭하여 제 모든 무료 제품을 확인하세요 SignalXpert 는 RangeXpert 인디케이터를 사용하는 트레이더에게 강력한 분석 도구를 제공하기 위해 제가 개발한 것입니다. RangeXpert 는 시스템의 기반 역할을 하며, 시장의 정확한 영역을 감지하고 해당 데이터를 제공하고, SignalXpert 는 이를 실시간으로 분석하여 명확하고 실행 가능한 신호를 생성합니다. 이를 통해 시스템은 여러 시간대에서 최대 25개의 다양한 자산을 동시에 모니터링할 수 있으며 , 가장 중요한 시장 움직임을 실시간으로 포착합니다. 통합된 알림 기능 덕분에 알림, 푸시, 이메일로 신호를 전달할 수 있어 , 트레이딩 기회를 놓치지 않게 됩니다. MetaTrader VPS 에 설치하면 SignalXpert 는 24/7 중단 없이 실행되며 안정적인 신호 모니터링을 제공합니다. 진입 또는 청산을 계획 중이든, SignalXpert 는 빠르고 정확한 지원을 제공하여 높은 변동성 시장에서도 자신 있
FREE
Evoque Global MT5
Muhammad Mubashir Mirza
Evoque Global – Reliable Automated Hedging The price will keep increasing by $100 with every  single purchase, so don't be late. Evoque Global   offers a hands-free, adaptive trading solution designed to deliver consistent profits with controlled risk. Using a smart hedging approach, it balances trades to reduce drawdowns and maximize smooth equity growth. This expert advisor works seamlessly in all market conditions—trending or ranging—automatically managing entries, exits, and trade sizes with
key features of the Smart Trend Catcher Indicator ATR-Based Trend Detection Uses Average True Range (ATR) with a multiplier to identify market trends and volatility. SuperTrend Logic Implements a SuperTrend-style algorithm to determine uptrend and downtrend levels . Custom Price Source Selection Allows multiple price sources like Open, High, Low, Close, HL2, HLC3, OHLC4 , etc. Trend Lines on Chart Displays Uptrend (Green) and Downtrend (Red) lines directly on the chart. Trend Change Signals
FREE
MT5 Account Protector Basic Account Protector Basic is a streamlined risk management tool for MetaTrader 5 (MT5) that helps traders safeguard their accounts with clear, customizable limits. Designed for simplicity and reliability, it ensures that trading remains disciplined and capital is protected. This EA closes all trades once the maximum loss is reached either in value or account percentage. It is especially useful for those trading prop funds account. Key Features: Loss Selection You can
FREE
Lironmaster Harmonic
Syaeful Handy Arifin
!! Disclaimer . PROFIT IS NOT GUARANTED This is FREE Version with limited LOT SIZE 0.01 This EA Use HARMONIC PATTERN for recognized all the price movement when the pattern show up, then EA calculated all teh risk and make decision Pair XAUUSD and  TIMEFRAME H1 use LOW SPREAD BROKER and RAW ACCOUNT This EA is only allow 1 open position with Take Pofit and Stop Loss for safety . Enjoy this EA and i hope all of you can make profit
이 제품의 구매자들이 또한 구매함
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
Applying these methods, I managed to arrive at a nuanced conclusion that is crucial to understanding the importance of unique strategies in contemporary trading. Although the neural network advisor showed impressive efficiency in the initial stages, it proved to be highly unstable in the long run. Various factors such as market fluctuations, trend changes, external events, etc. cause its operation to be chaotic and eventually lead to instability. With these experiences, I accepted the challenge
Kaseki
Ben Mati Mulatya
The Hybrid Metaheuristic Algorithm (HMA) is a cutting-edge optimization approach that combines the strengths of genetic algorithms with the best features of population-based algorithms. Its high-speed computation ensures unparalleled accuracy and efficient search capabilities, significantly reducing the total time required for optimization while identifying optimal solutions in fewer iterations. HMA outperforms all known population optimization algorithms in both speed and accuracy. Use Cases AO
[Gold Intelligent Trading EA | Risk Control is Steady, Profit Breakthrough] The intelligent trading EA, which is customized for the fluctuation characteristics of gold, takes the hard-core trading system as the core, and each order is derived from the accurate judgment of market trends and supporting pressures by quantitative models, so as to eliminate subjective interference and make trading decisions more objective and efficient. Equipped with multi-dimensional risk control system, dynamic s
Questo Expert Advisor (EA) è stato progettato per offrire un'esperienza di trading automatizzata di alto livello, adatta sia ai trader principianti che a quelli esperti. Utilizzando algoritmi avanzati e tecniche di analisi del mercato, l'EA è in grado di identificare opportunità di trading redditizie con precisione e velocità. L'EA è configurabile per operare su vari strumenti finanziari, tra cui forex, indici e materie prime, garantendo una flessibilità senza pari. Le caratteristiche princip
Automatic Replenishment Trading Within a Defined Range The EA operates only within the predefined price range . When an order is closed, filled, or cancelled (reducing the total number of orders), the EA will automatically place new orders to maintain the continuous operation of the trading strategy. This EA is designed for ranging / sideways market conditions . You can control the total number of orders using Max Orders . Example: Max Orders: 8 Active trades: 2 Pending Buy Limit orders: 6 In t
WalkForwardOptimizer MT5
Stanislav Korotky
3.78 (9)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
Native Websocket
Racheal Samson
5 (6)
An   easy to use, fast,  asynchronous   WebSocket library  for MQL5. It supports: ws://   and   wss://  (Secure "TLS" WebSocket) text   and   binary   data It handles: fragmented message  automatically (large data transfer) ping-pong   frames  automatically (keep-alive handshake) Benefits: No DLL required. No OpenSSL installation required. Up to 128 Web Socket Connections from a single program. Various Log Levels for error tracing Can be synchronized to MQL5 Virtual Hosting . Completely native t
이 라이브러리를 사용하면 EA를 사용하여 거래를 관리할 수 있으며 설명에 언급된 스크립트 코드와 전체 프로세스를 보여주는 비디오의 데모 예제를 사용하여 모든 EA에 통합하기가 매우 쉽습니다. - Place Limit, SL Limit, Take Profit Limit 주문 - 플레이스 마켓, SL-마켓, TP-마켓 주문 - 지정가 주문 수정 - 주문 취소 - 쿼리 주문 - 레버리지, 마진 변경 - 위치 정보 얻기 그리고 더... MT5에 바이낸스 차트가 없는 경우를 제외하고 암호화폐 차트 대여는 선택 사항입니다. 스크립트 데모를 보려면 여기를 클릭하세요. 트레이딩 패널과 거래하고 싶다면 이 제품에 관심이 있으실 것입니다. 이 제품은 Crypto Charting의 애드온입니다. 이 라이브러리를 사용하면 EA를 사용하여 거래를 관리할 수 있으며 설명에 언급된 스크립트 코드와 전체 프로세스를 보여주는 비디오의 데모 예제를 사용하여 모든 EA에 통합하기가 매우 쉽습니
After downloading this service program, it will be used as a service support program for Dom BookHeatMAP Lightning Trading Panel. Dom BookHeatMAP Lightning Trading Panel   download link: https://www.mql5.com/zh/market/product/159414?source=Site+Market+MT5+Search+Rating006%3aDom+BookHeatMAP+Lightning+Trading+Panel Please first drag and drop the downloaded file to the corresponding service folder (` MQL5 \ Services `) in the MT5 data directory, and confirm that the file has been successfully pla
Here   is   the   English translation   of   your   description   for   the EA   (Expert   Advisor): --- This   is a   time -based   automatic trading   EA . It allows   you   to   set the   exact   time   for trading , down   to   the   second , and   specify the   maximum number   of   orders . You   can choose   to   place   either   buy   or   sell   orders . It   is possible to   set take   profit and   stop   loss   points . Additionally , you can   specify   how   long after   placing  
突破交易策略:智能风控系统升级版‌ 当价格突破关键阻力位时,往往意味着趋势的质变时刻。我们的突破交易策略通过三重智能系统——‌动态阈值识别‌、‌量能验证机制‌和‌自适应止损算法‌,帮助交易者精准捕捉这些跃迁机会。 ‌核心优势‌: ‌智能预警‌:实时监测200+技术指标,自动标记潜在突破位 ‌风险对冲‌:突破失败时自动触发0.5秒内止损,保护本金安全 ‌多周期验证‌:结合日线/4小时/1小时数据过滤假信号 ‌实战案例‌: 2025年第二季度,该策略在现货黄金市场实现连续23次有效突破,平均持仓周期缩短至4.7小时,收益率达传统趋势策略的3.2倍。 ‌智能风控系统‌: ‌动态止盈‌:根据ATR指标自动调整止盈位,锁定利润的同时保留上行空间 ‌分级止损‌:首次突破失败后自动切换至1:1盈亏比保护模式,二次突破确认后恢复原策略 本EA依下图设置做黄金1小时图线,经长时期实盘验证年利润达到30多倍,修改参数可以用作比特币和纳斯达克指数都有很好的收益。
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEven
Binance Library
Hadil Mutaqin SE
5 (1)
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Gold plucking machine   Gold plucking machine is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number      -  is a special number that the EA assigns to its orders. Lot Multiplier        - 
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 5.ex5"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
If you're a trader looking to use Binance.com and Binance.us exchanges directly from your MetaTrader 5 terminal, you'll want to check out Binance Library MetaTrader 5. This powerful tool allows you to trade all asset classes on both exchanges, including Spot, USD-M   and COIN-M futures, and includes all the necessary functions for trading activity. Important: you need to have source code to properly implement the library. With Binance Library MetaTrader 5, you can easily add instruments from Bi
1. What is this The MT5 system comes with very few optimization results. Sometimes we need to study more results. This library allows you to output more results during backtest optimization. It also supports printing more strategy results in a single backtest. 2. Product Features The results of the optimized output are quite numerous. CustomMax can be customized. The output is in the Common folder. It is automatically named according to the name of the EA, and the name of the same EA will be au
T5L Library is necessary to use the EAs from TSU Investimentos, IAtrader and others. It contains all the functions framework needed to Expert Advisors working properly.  ツ - The Expert Advisors from  TSU Investimentos does not work without this library,  the T5L library can have updates during the year - At this Library you will find several funcionalities like order sends, buy and sell, trigger entry points check, candlestick analyses, supply and demmand marking and lines, and much more. 
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news   Even In Strategy Tester   . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT5 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator ba
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
Applying these methods, I managed to arrive at a nuanced conclusion that is crucial to understanding the importance of unique strategies in contemporary trading. Although the neural network advisor showed impressive efficiency in the initial stages, it proved to be highly unstable in the long run. Various factors such as market fluctuations, trend changes, external events, etc. cause its operation to be chaotic and eventually lead to instability. With these experiences, I accepted the challenge
필터:
리뷰 없음
리뷰 답변