• Genel bakış
  • İncelemeler
  • Yorumlar

Fast Sliding SMA algorithm

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 https://en.wikipedia.org/wiki/Moving_average.

In simple terms, the SMA is the average value of a sequence of data over a specified time period. This period can be in days, weeks, hours, etc., depending on the context and analysis objectives.

For the basic calculation of the Simple Moving Average (SMA) with a fixed window size n, the standard asymptotic time complexity is O(n). This means that the algorithm's execution time is linearly proportional to the size of the window or the number of data points.

However, the improvved version of the algorithm use a queue and has an execution asymptotic of O(1) for each new element, making the algorithm efficient compared to the linear asymptotic of O(n).  

The improved version of the moving average algorithm using a queue offers several advantages over the basic implementation:

  1. Constant Time for Each New Element: The algorithm ensures constant time (O(1)) for adding new elements and removing old elements from the queue, making it efficient regardless of the window size.

  2. Efficient Update Operations: Leveraging a queue enables efficient addition of new elements at the end and removal of old elements from the beginning, reducing the number of operations required for updating the average.

  3. Optimized Window Management: The queue serves as an effective data structure for window management in the moving average, eliminating the need to recalculate the entire average when adding a new element.

  4. Increased Efficiency with Large Data Sets: Constant time for each new element ensures the algorithm remains efficient even when processing large volumes of data.

  5. Easy Implementation and Maintenance: The use of a queue makes the code more understandable and easy to maintain, avoiding the necessity of iterating through the entire window for updating the average.

In summary, the enhanced algorithm provides more efficient data processing while maintaining a fixed window for the moving average.

Import section:

#import "FastSlidingSMA.ex5"

bool InitNewInstance(string key, const long windowSize); // Initialize a new instance of FastMovingSMA

bool PushValue(string key, const double &value); // Push a single value into the FastMovingSMA instance

bool PushArray(string key, double &values[]); // Push an array of values into the FastMovingSMA instance

bool PushVector(string key, vector &values); // Push a vector of values into the FastMovingSMA instance

bool GetSMA(string key, double &sma); // Get the value of the moving average from the FastMovingSMA instance

bool ClearInstance(string key); // Clear the FastMovingSMA instance

bool GetTopValue(string key, double &topValue); // Get the top value from the FastMovingSMA instance

bool GetPoppedValue(string key, double &poppedValue); // Get the popped value from the FastMovingSMA instance

#import

How to use code example:

#property copyright "Copyright 2023, Andrei Khloptsau Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"

#import "FastSlidingSMA.ex5"
    bool InitNewInstance(string key, const long windowSize);
    bool PushValue(string key, const double &value);
    bool PushArray(string key, double &values[]);
    bool PushVector(string key, vector &values);
    bool GetSMA(string key, double &sma);
    bool ClearInstance(string key);
    bool GetTopValue(string key, double &topValue);
    bool GetPoppedValue(string key, double &poppedValue);
#import

const string INSTANCE_KEY = "MyInstance";

input int NumberOfBars = 5;

int OnInit()
{
    if (!InitNewInstance(INSTANCE_KEY, NumberOfBars))
        return INIT_FAILED;
        
    double closePrices[];
    ArraySetAsSeries(closePrices, true);
    if (CopyClose(_Symbol, _Period, 0, NumberOfBars, closePrices) > 0)
        PushArray(INSTANCE_KEY, closePrices);
    else
        return INIT_FAILED;
  
    return INIT_SUCCEEDED;
}

void OnDeinit(const int reason)
{
    ClearInstance(INSTANCE_KEY);
}

void OnTick()
{
    double currentPrice = iClose(_Symbol, _Period, 0);
    PushValue(INSTANCE_KEY, currentPrice);

    double sma;
    if (GetSMA(INSTANCE_KEY, sma))
    {
        Print("Current value SMA: ", sma);
    }
}


Önerilen ürünler
Bu kitaplık, anahtar ve değer dizilerini sıralamak için kullanılır, genellikle değerleri sıralamamız gerekir. piton dilinde olduğu gibi sorted(key_value.items(), key = lambda kv:(kv[ 1 ], kv[ 0 ])) içe aktarma işlevi Kullanım senaryoları örneği 1. Izgara EA siparişleri açılış fiyatına göre sıralanır void SortedByOpenPride()   {    long     OrderTicketBuffer[];    double   OpenPriceBuffer[];    for ( int i = PositionsTotal ()- 1 ; i>= 0 ; i--)      {        if (m_position.SelectByIndex(i))  
30% discount only for 3-month subscription, message me : https://www.mql5.com/en/users/taiberhyphecu 70% refund policy (full version only) MT4 Version : https://www.mql5.com/en/market/product/126050 A fully automatic expert Designed and produced 100% by artificial intelligence, with the world's most advanced technology All trades have profit and loss limits, with the best and least risky market strategy, without using dangerous strategies such as Martingale and hedges, etc. A specialist who has
EASY Insight AIO – Akıllı ve zahmetsiz yatırım için hepsi bir arada çözüm Genel Bakış Tüm piyasayı — Forex, Altın, Kripto, Endeksler ve hatta Hisseler — saniyeler içinde, manuel grafik incelemesi, gösterge kurulumu ya da karmaşık ayarlar olmadan analiz edebildiğinizi hayal edin. EASY Insight AIO , yapay zekâ destekli yatırım için nihai, kullanıma hazır dışa aktarma aracınızdır. Tüm piyasanın kapsamlı bir anlık görüntüsünü tek bir temiz CSV dosyasında sunar; bu dosya ChatGPT, Claude, Gemini, Pe
Ichimoku Map (instant look at the markets) - built on the basis of the legendary Ichimoku Kinko Hyo indicator. The task of the Ichimoku Map is to provide information about the market strength on the selected time periods and instruments, from the point of view of the Ichimoku indicator. The indicator displays 7 degrees of buy signal strength and 7 degrees of sell signal strength. The stronger the trend, the brighter the signal rectangle in the table. The table can be dragged with the mouse. The
️ Tripulse Synergy EP1 “Three Forces. One Direction.” Series:  Trio Core Series Indicators: RSI   |  MACD   |  Stochastic Filter:  MA | AMA   | DEMA   | TEMA Built-in Telegram Notification: Overview: Welcome to Tripulse Synergy EP1 , the first powerhouse from the Trio Core Series — a premium EA designed to bring momentum, direction, and precision timing into perfect harmony. By combining the strengths of RSI , MACD , and Stochastic Oscillator , Tripulse Synergy doesn’t just generate sig
Disclaimer : Keep in mind that seasonal patterns are not always reliable. Therefore, thoughtful risk management is crucial to minimize losses.  Seasonal patterns in the financial world are like a well-guarded secret that successful investors use to their advantage. These patterns are recurring price movements that occur during specific periods or around special events. Additionally, there are also intraday patterns that repeat. For example, Uncle Ted from Forex Family suggests examining previou
Step Index Panther
Ignacio Agustin Mene Franco
Hello community, traders. I'm here to introduce you to Step Index Panther! It's an EA designed for the Step Index pair! It's used on the M1 timeframe (1 minute). It uses the Stochastic strategy, with its parameters already modified for your entries. The idea of ​​the strategy is to capture buying trends. With a lot size of 0.20 with a balance of 500 USD, a TP of 50 points, and a SL of 2000. For your recommendation, follow these parameters for effective trading. The bot is only 129 USD
Floating peaks oscillator - it the manual trading system. It's based on Stochastik/RSI type of oscillator with dynamic/floating  overbought and oversold levels. When main line is green - market is under bullish pressure, when main line is red - market is under bearish pressure. Buy arrow appears at the floating bottom and sell arrow appears at floating top. Indicator allows to reverse signal types. Main indicator's adjustable inputs : mainTrendPeriod; signalTrendPeriod; smoothedTrendPeriod; tre
️ Tripulse Synergy EP3 “Three Forces. One Direction.” Series:  Trio Core Series Indicators:   RSI   |  MACD   |  ADX Filter:  MA | AMA   |   DEMA   |   TEMA Built-in Telegram Notification: Overview: Welcome to   Tripulse Synergy EP3 , the first powerhouse from the   Trio Core Series   — a premium EA designed to bring   momentum, direction, and precision timing   into perfect harmony. By combining the strengths of   RSI ,   MACD , and   ADX , Tripulse Synergy doesn’t just generate signal
Hrum
Yvan Musatov
The Hrum indicator was created to neutralize temporary pauses and rollbacks. It analyzes price behavior and, if there is a temporary weakness in the trend, you can notice this from the indicator readings, as in the case of a pronounced change in trend direction. Entering the market is not difficult, but staying in it is much more difficult. With the Giordano Bruno indicator and its unique trend line, staying on trend will become much easier! Every rise and every fall is reflected in your emoti
Supimpa B3 Trader é o robô de negociação automatizada para a bolsa brasileira B3, para os ativos miniíndice WIN e minidólar WDO. A estratégia de negociação é baseada na média VWAP - Volume Weighted Average Price - que utiliza uma média ponderada dos preços em relação ao volume de negociação em cada vela. O robô é de configuração simples, com entrada do valor do período da média de análise e do takeprofit e stoploss fixos. Além disso, pode-se configurar também o número de contratos, configuração
fully automated EA designed to trade FOREX only. Expert showed stable results  with  low drawdown . EA designed to trade on 1H (One Hour) Chart. use of support or resistance as stop lose , by using different time frame can give a bigger stop lose. support or resistance levels are formed when a market’s price action reverses and changes direction, leaving behind a peak or trough (swing point) in the market. Support and resistance levels can carve out trading ranges.  Renko  designed to filter out
Shawrie
Kevin Kipkoech
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, cap
Eu tentei muitas coisas na negociação forex no passado e aprendi muito nos últimos 3,5 anos. Tentei   varias  ferramentas para negociação manual e nao tive muito sucesso. Sempre fui fascinado com o mercado forex, . A integração dos dados de volume é uma característica única e aumenta muito a qualidade das decisões comerciais do Expert Advisor. E sim, você tem que lembrar que os resultados do backtest não são os mesmos que resultados ao vivo. Mas aqui eles estão muito próximos. agora o único Exp
Introducing Etrend – Identifying Strong Market Trends Etrend is an intelligent trading robot specifically designed to detect and trade strong market trends . It avoids trading in ranging markets and focuses on capitalizing on high-momentum movements. Why Choose Etrend? Trend-Based Trading – Only trades in trending markets and avoids ranging conditions. Optimized Risk Management – Uses a 1:2 risk-to-reward ratio for better control over losses and maximizing potential gains. Minimum 2
SilverPulse AI
Babak Alamdar
3.64 (14)
Yeni enstrümanlarla işlemlerinizi çeşitlendirin, portföyünüz güçlensin    Live Signal 1    Live Signal 2 Bu fiyat promosyon süresince geçicidir ve kısa sürede artırılacaktır. Nihai Fiyat: 5000 $  Şu anki fiyatla sadece birkaç kopya kaldı, sonraki fiyat -->> 745 $ Welcome to the SilverPulse AI Hey, I'm SilverPulse AI! Bu, XAGUSD, XAGEUR ve XAGAUD gibi tam çiftlerle Gümüş veya XAG ticareti yapan ilk en akıllı robottur! Her gün haberleri kontrol ediyorum ve teknik, temel ve duygusal onayı olan
AO Core
Andrey Dik
3 (2)
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
İsim: Akıllı Para EA – XAUUSDz / XAUUSD Platform: MetaTrader 5 Sembol: XAUUSDz (XAUUSD ile de uyumludur) Zamansallık: M1 (bir dakika) Strateji: Likidite Avı – Akıllı Para Emri Blokları Kar alımı: Çift çıkış (TP1, TP2) Risk yönetimi: TP2'de stop-loss, otomatik breakeven  Lisans: Sembol, hesap veya zamana göre herhangi bir sınırlama olmaksızın çalışır Özellikler Kurumsal blokların (emir blokları) ve likidite taramalarının otomatik tanımlanması. Emir açmadan önce (Alım/Alım Limiti veya Satış/S
Hydra Trend Rider is a non-repainting, multi-timeframe trend indicator that delivers precise buy/sell signals and real-time alerts for high-probability trade setups. With its color-coded trend line, customizable dashboard, and mobile notifications, it's perfect for traders seeking clarity, confidence, and consistency in trend trading. Download the Metatrader 4 Version Message us here after purchase to get the Indicator Manual. HURRY!   FLASH SALE is  ON . Price  increasing soon! Read the product
(Kripto Para Birimi Grafikleri) Belirttiğiniz çubuk sayısı kadar geçmişi getirir ve anlık verileri direkt olarak göstermeye başlar. Tüm zaman dilimlerinde çalışma imkanı sağlar. Birden çok sembolle çalışmanıza izin verir. Bu uygulama bir arka plan hizmetidir. Piyasa izleme ekranında "S" ile başlayan tüm sembollerin geçmişini indirir ve kene verilerini gösterir. Binance Spot'un gerçek zamanlı ticaret verilerini otomatik olarak MT5'e aktarır. Programı kullanmak için linkteki betiği ç
Nova WDX Trader is a refined implementation of the classic ADX Wilder trend strength algorithm — engineered into a disciplined, automated trading strategy that respects momentum, structure, and timing. It builds on the original logic introduced by Welles Wilder, enhancing it with modern execution and risk control. Rather than reacting to short-term volatility, Nova WDX Trader waits for confirmed directional strength based on Wilder’s ADX formula, ensuring every trade has context and conviction.
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
Sorgo EA MT5
Artsiom Rekets
5 (1)
Sorgo EA - Alım satım algoritmaları, fiyatlar dengesiz olduğunda ortalamaya gerileme kavramına dayanır. Özel koşullar yok, zehirli yöntemler yok, güzel tarihsel grafikler yok. Görevi bugün sonuç üretmek olan benzersiz algoritmalarla anlaşılması kolay ticaret. MetaTrader 4 sürümü :  https://www.mql5.com/ru/market/product/93740 Parametreler:   https://www.mql5.com/ru/blogs/post/758300 Bazı Özellikler: Tüm işlemler SL tarafından korunur, güzel bir grafik ve iyileşme umudu uğruna kayıplar biriktir
AI forex robot is an advanced trading tool that utilizes sophisticated algorithms and machine learning techniques to analyze market data and make informed trading decisions. One of the key indicators it uses is the envelopes indicator, which plots a pair of parallel lines, usually representing a standard deviation away from a moving average. This indicator helps the robot to identify potential trend reversals or breakouts by highlighting areas of support and resistance. By continuously monitorin
Trade   News EA is a semi automatic expert advisor designed for trade news event. News Calendar uses the built in calendar of MT5 terminal. Expert advisor explanation :   Click here   | Free News Reminder :   Click here   Parameters input: 1. Manage Open Positions + Trade Buy : Allow buy + Trade Sell : Allow sell 2. Show news + High importance : Show high importance news + High importance color : Color of high importance news + Medium importance : Show Medium importance news + Medium importan
RS Volatilite Uzman Danışmanı (RSV EA) MT5 Önemli ön not: RS Volatilite Uzman Danışmanı MT5 (RSV EA) aşırı uyumlu değildir. RS Volatilite Uzman Danışmanı MT5'in (RSV EA) program kodu son birkaç yıldır dürüst forex ticaretine dayanmaktadır. RS Volatilite Uzman Danışmanı MT5, basit bir trend takip eden Uzman Danışmandır ve bu nedenle ticarete yeni başlayanlar için idealdir. RSV EA, RS Volatilite MTF göstergesinden gelen sinyallere dayalı emirler üreten bir EA'dır. RSV EA, ilk emri alır ve filtre k
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Take control of your trading workspace with the Switcher Dashboard – a smart and efficient tool that auto-detects all open charts (Forex, VIX, stocks) and turns them into neatly organized, color-coded buttons for instant chart switching.  Key Features: One-click chart navigation – Seamlessly switch between charts with a single click. Trend visualization – Instantly identify bullish or bearish conditions with clear color cues. Flexible layout options – Choose from 4 customizable views (left, righ
FREE
Overview In the fast-paced world of forex and financial markets, quick reactions and precise decision-making are crucial. However, the standard MetaTrader 5 terminal only supports a minimum of 1-minute charts, limiting traders' sensitivity to market fluctuations. To address this issue, we introduce the Second-Level Chart Candlestick Indicator , allowing you to effortlessly view and analyze market dynamics from 1 second to 30 seconds on a sub-chart. Key Features Support for Multiple Second-Level
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Bu ürünün alıcıları ayrıca şunları da satın alıyor
MetaCOT 2 CFTC ToolBox is a special library that provides access to CFTC (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator separately. Instead, you can obtain a single set of all 34 indicators including additional indicators that are not available as separate versions. The library supports all types of reports, and prov
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. With Binance Library MetaTrader 5, you can easily add instruments from Binance to the Symbols list of MetaTrader 5, as well as obtain information ab
WalkForwardOptimizer MT5
Stanislav Korotky
3.63 (8)
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 (5)
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
***** Ana ticaret XAUUSD'dir. Teste yaparsa, XAUUSD'e ayarlanma tavsiye ediliyor. Diğer ticaret hedefleri faydallığını garanti edemez****** Teste ihtiyacınız olursa, lütfen bir mesaj bırakın (gördüğüm anda cevap vereceğim). Çalışma sonuçlarını korumak için belirli parametreler girmeli. Sistemin öntanımlı parametreleri ekran fotoğrafında gösterilen etkileri ulaşamaz! Teste ihtiyacınız olursa, lütfen bir mesaj bırakın (gördüğüm anda cevap vereceğim). Çalışma sonuçlarını korumak için belirli par
Bu kütüphane, herhangi bir EA'nızı kullanarak işlemleri yönetmenize izin verecektir ve açıklamalarda belirtilen komut dosyası koduyla ve ayrıca tüm süreci gösteren videodaki demo örnekleriyle kendi başınıza yapabileceğiniz herhangi bir EA'ya entegrasyonu çok kolaydır. - Limit Ver, SL Limit Ver ve Kar Al Limit Emirleri - Market, SL-Market, TP-Market siparişlerini verin - Limit emrini değiştirin - Siparişi iptal et - Siparişleri Sorgula - Kaldıraç, marjı değiştir - Pozisyon bilgisini al ve
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
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
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
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        - 
Gold plucking machine S   Gold plucking machine  S Gold plucking machine S   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
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
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 );    //复杂开单
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
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
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader4 Version   |   All Products   |   Contact   Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   an
The following library is proposed as a means of being able to use the OpenAI API directly on the metatrader, in the simplest way possible. For more on the library's capabilities, read the following article: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual IMPORTANT: To use the EA you must add the following URL to allow you to access the OpenAI API as shown in the attached images In order to use the library, you must include the following Hea
Nmt5
Liang Qi Quan
这段代码是一个简单的交易专家顾问(Expert Advisor)示例,主要功能如下: 使用两个移动平均线(MA)作为交易信号: 快速MA(FastMA)和慢速MA(SlowMA) 初始化函数(OnInit): 创建两个MA指标句柄 设置数组为时间序列模式 清理函数(OnDeinit): 释放指标句柄,防止内存泄漏 主要交易逻辑(OnTick): 获取最新的MA值 判断趋势和交易信号 在无持仓时执行交易 交易规则: 上升趋势+买入信号时开多单 下降趋势+卖出信号时开空单 使用固定的止损和止盈点数 风险管理: 使用输入参数设置交易手数、止损和止盈 每次只允许一个持仓(inTrade变量) 使用MQL5的Trade库进行交易操作,简化了下单过程 这个EA适合初学者学习,展示了基本的EA结构和简单的交易策略实现方法。但在实际使用前,还需要进行更多的测试和优化。
KP TRADE PANEL EA is an EA MT5 facilitates various menus. KP TRADE PANEL EA is an EA skin care in MT5 is an EA that puts the system automatically in download EA MT5 to test with demo account from my profile page while some Trailing Stop Stop Loss require more than 0 features EA determines lot or money management calculates lot from known and Stop loss TS = Trailing stop with separate stop loss order Buy more AVR TS = Trailing stop plus
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  
Kullanımı kolay bir kütüphane, geliştiricilere MQL5 EA'ları için temel ticaret istatistiklerine kolay erişim sağlar. Kütüphaneden mevcut olan metodlar: Hesap Verileri ve Kar: GetAccountBalance() : Mevcut hesap bakiyesini döndürür. GetProfit() : Tüm işlemlerden net karı döndürür. GetDeposit() : Toplam depozito miktarını döndürür. GetWithdrawal() : Toplam çekim miktarını döndürür. Ticaret Analizi: GetProfitTrades() : Kar eden işlemlerin sayısını döndürür. GetLossTrades() : Zarar eden işlemlerin sa
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
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
Bu ürün 3 yıldır geliştirilmektedir. MQL5 programlama dilinde her türlü Yapay Zeka ve makine öğrenimi kodlarıyla çalışmak için en gelişmiş kod tabanıdır. MetaTrader 5'te birçok yapay zeka destekli ticaret robotu ve gösterge oluşturmak için kullanılmıştır. Bu, MQL5 için makine öğrenimi üzerine ücretsiz ve açık kaynaklı bir projenin premium sürümüdür. Bağlantı burada:  https://github.com/MegaJoctan/MALE5 . Ücretsiz sürüm daha az özelliğe sahiptir, belgelenmemiştir ve düzenli olarak bakım görmez. S
Filtrele:
İnceleme yok
İncelemeye yanıt