Optimal F Service

Service Optimal F

  • Type d'application : Service
  • Fonctions de l'application : Calcul de la fraction optimale et du volume d'opérations pour maximiser la croissance de la courbe de capital, basé sur les résultats des opérations précédentes.

À propos de cette application

La gestion du capital est le composant le plus crucial et souvent sous-estimé de tout système de trading. Une gestion appropriée peut améliorer—et dans certains cas de manière significative—les performances de votre algorithme de trading.
Cette application calcule automatiquement la fraction optimale et le volume d'opérations en utilisant l'algorithme proposé par Ralph Vince dans son livre The Mathematics of Money Management. Cet algorithme vise une croissance géométrique maximale du solde du compte. Ce point est unique pour chaque système de trading et il est essentiel de le connaître. Dans vos systèmes de trading, vous ne devez jamais utiliser une taille d'opération qui dépasse la valeur optimale !

Les algorithmes de gestion du capital ne sont pas conçus pour les systèmes perdants sur le plan mathématique, basés sur des moyennes, des martingales ou des stratégies similaires. Ces systèmes seront filtrés par l'application avant tout calcul, car leur fraction optimale et leur volume d'opérations sont toujours égaux à zéro. Les algorithmes de gestion du capital peuvent uniquement améliorer les résultats pour les systèmes de trading mathématiquement rentables (ceux ayant une espérance mathématique positive). Ce service est donc recommandé uniquement aux professionnels qui comprennent ce qu'ils font.
Par ailleurs, l'algorithme ne prend pas en compte les corrélations (dépendances) entre les systèmes qui fonctionnent simultanément. Pour que l'algorithme fonctionne efficacement, un ensemble bien diversifié de systèmes de trading est nécessaire.

Comment utiliser

Paramètres :

  • LOG_LEVEL - Niveau de journalisation pour la section Experts du terminal. DEBUG fournit les informations les plus détaillées, tandis qu'ERROR enregistre le minimum.
  • MAGIC_LIST - Liste d'identifiants des systèmes (Magic Numbers) séparés par des virgules, pour lesquels des calculs sont nécessaires.
  • TRADE_FILES_PATH - Chemin du répertoire contenant les fichiers avec les résultats des opérations précédentes (relatif au dossier <Données>/MQL5/Files/).
  • OUTPUT_FILE_PATH - Chemin du fichier où seront enregistrés les résultats des calculs (relatif au dossier <Données>/MQL5/Files/).
  • WORK_PERIOD - Fréquence des recalculs en secondes.
  • BALANCE_MATRIX_PERIOD - Période sur laquelle les résultats sont agrégés, avec des calculs basés sur cette période agrégée plutôt que sur chaque opération individuelle.

Avant le premier lancement, chaque système de trading doit être testé dans le simulateur de stratégies jusqu'à la date actuelle. Il est recommandé de sélectionner une période incluant au moins 100 opérations. Utilisez le Test Trade Saver Script et suivez les instructions pour extraire les fichiers de résultats des tests (*.tst) au format requis.

Si le système de trading a déjà été utilisé dans le terminal et que des positions dans l’historique contiennent le MAGIC spécifié, configurez un paramètre CUSTOM_MAGIC_NUMBER différent dans le script !

Ensuite, pour garantir que les fichiers de données soient mis à jour régulièrement, exécutez le Trade Saver Service en suivant les instructions.
Après l’exportation initiale des données depuis les tests avec le Trade Saver Script, le Trade Saver Service mettra à jour continuellement les fichiers avec de nouvelles données à mesure qu'elles seront disponibles, tandis que le Service Optimal F calculera et enregistrera régulièrement de nouvelles valeurs dans le fichier de résultats.

Algorithme :

  1. Extraire la liste des systèmes nécessitant des calculs à partir du paramètre MAGIC_LIST.
  2. Utiliser des fichiers texte nommés <MAGIC>.csv au format <MAGIC>,<POSITION_CLOSE_TIME>,<LOTS>,< RESULT_$>, contenant les résultats des opérations précédentes, depuis le répertoire spécifié par TRADE_FILES_PATH. Construire une matrice pour la fonction de courbe de balance, où chaque valeur a[i][j] représente le résultat du système de trading i pour la période j.
  3. Vérifier chaque système pour au moins une période négative dans ses résultats. Si un système n’a pas de périodes négatives, l’exclure des calculs suivants (ces systèmes doivent être éliminés).
  4. Évaluer l’espérance mathématique de chaque système. Si un système n’a pas une valeur espérée positive, l’exclure des calculs suivants (ces systèmes doivent être éliminés).
  5. Déterminer la marge d’erreur nécessaire pour calculer le volume d’opérations avec une précision de 0,01.
  6. Pour chaque système restant, calculer sa fraction optimale.
  7. Diviser le solde actuel en parts égales pour les systèmes restants. Pour chaque système et son solde assigné, calculer le volume d’opérations en lots correspondant à la fraction optimale.
  8. Écrire les résultats dans le fichier texte spécifié par OUTPUT_FILE_PATH, au format <MAGIC>,<BIGGEST_LOSS>,<OPTIMAL_F>,<OPTIMAL_LOTS>.

Liens et références
Ralph Vince - The Mathematics of Money Management: Risk Analysis Techniques for Traders (ISBN-13: 978-0471547389)

Pour les développeurs
Vous pouvez utiliser la classe suivante pour intégrer les résultats dans vos systèmes de trading :

#include "OptimalFResultsLoader.mqh"
   // create loader
   COptimalFResultsLoader* optimalFResultsLoader = new COptimalFResultsLoader("/SRProject/results.csv");
   // print all fields for magic = '1111'
   Print(optimalFResultsLoader.getOptimalFFor(1111), " ",
         optimalFResultsLoader.getBiggestLossFor(1111), " ", 
         optimalFResultsLoader.getOptimalLotsFor(1111));
   // delete loader from memory
   delete(optimalFResultsLoader);


//+------------------------------------------------------------------+
//|                                        OptimalFResultsLoader.mqh |
//|                                                   Semyon Racheev |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "Semyon Racheev"
#property link      ""
#property version   "1.00"

#include <Files\FileTxt.mqh>

class COptimalFResultsLoader
  {
private:
   const string name_;
   const uchar delimiter_;
   const ushort separator_;
   const string srcFilePath_; 
                     bool checkStringForOptimalFResultsDeserializing(string &inputStr[]) const;
                     ushort calculateCharCode(const uchar separator) const;
public:
                     COptimalFResultsLoader(const string srcFilePath, uchar separator);
                    ~COptimalFResultsLoader();
                     double getOptimalLotsFor(const ulong magicNumber) const;
                     double getOptimalFFor(const ulong magicNumber) const;
                     double getBiggestLossFor(const ulong magicNumber) const;
  };
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
COptimalFResultsLoader::COptimalFResultsLoader(const string srcFilePath = "/SRProject/results.csv", uchar separator = ','):name_("OptimalFResultsLoader"),
srcFilePath_(srcFilePath), delimiter_(separator), separator_(calculateCharCode(separator))
  {  
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
COptimalFResultsLoader::~COptimalFResultsLoader()
  {
  }
//+------------------public------------------------------------------+
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
double COptimalFResultsLoader::getOptimalLotsFor(const ulong inputMagicNumber) const
  {
   double rsl = 0.0;
   CFileTxt* file = new CFileTxt();
   int fileHandle = file.Open(srcFilePath_,FILE_READ|FILE_UNICODE|FILE_CSV);
   while (!FileIsEnding(fileHandle))
    {
     string readString = file.ReadString(); 
     
     string str[];
     StringSplit(readString, separator_, str);
     if (checkStringForOptimalFResultsDeserializing(str))
      {
       if (inputMagicNumber == (ulong)StringToInteger(str[0]))
        {
         rsl = StringToDouble(str[3]);
        }
      }
    }   
   file.Close();
   delete(file);
   return(rsl);  
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
double COptimalFResultsLoader::getOptimalFFor(const ulong inputMagicNumber) const
  {
   double rsl = 0.0;
   CFileTxt* file = new CFileTxt();
   int fileHandle = file.Open(srcFilePath_,FILE_READ|FILE_UNICODE|FILE_CSV);
   while (!FileIsEnding(fileHandle))
    {
     string readString = file.ReadString(); 
     
     string str[];
     StringSplit(readString, separator_, str);
     if (checkStringForOptimalFResultsDeserializing(str))
      {
       if (inputMagicNumber == (ulong)StringToInteger(str[0]))
        {
         rsl = StringToDouble(str[2]);
        }
      }
    }   
   file.Close();
   delete(file);
   return(rsl);  
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
double COptimalFResultsLoader::getBiggestLossFor(const ulong inputMagicNumber) const
  {
   double rsl = 0.0;
   CFileTxt* file = new CFileTxt();
   int fileHandle = file.Open(srcFilePath_,FILE_READ|FILE_UNICODE|FILE_CSV);
   while (!FileIsEnding(fileHandle))
    {
     string readString = file.ReadString(); 
     
     string str[];
     StringSplit(readString, separator_, str);
     if (checkStringForOptimalFResultsDeserializing(str))
      {
       if (inputMagicNumber == (ulong)StringToInteger(str[0]))
        {
         rsl = StringToDouble(str[1]);
        }
      }
    }   
   file.Close();
   delete(file);
   return(rsl);  
  }
//+---------------------private--------------------------------------+
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
bool COptimalFResultsLoader::checkStringForOptimalFResultsDeserializing(string &inputStr[]) const
  {
   if (ArraySize(inputStr) < 4)
    {
     return(false);
    }
   return(true);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
ushort COptimalFResultsLoader::calculateCharCode(const uchar separator) const
  {
   string str = CharToString(separator);
   return(StringGetCharacter(str,0));
  }
//+------------------------------------------------------------------+


Produits recommandés
XAUUSD AMNESIA PROTOCOL AI     Amnesia Protocol - Exploiting the chaotic moments when the market forgets all technical analysis.    XAUUSD Amnesia Protocol AI is a breakthrough trading system based on "The Market Amnesia Hypothesis". When high-impact news hits or panic ensues, the market experiences temporary "Amnesia". Support and resistance levels become meaningless, and chaos takes over. This EA is specifically designed to remain dormant during normal market conditions and instantly awaken th
Risk Calculator MT5
Manuel Guillermo Sanchez Castro
This is an advanced Expert Advisor (EA) for MetaTrader 5 that acts as a visual and interactive panel. Its main purpose is to calculate risk/reward, manage open positions, and execute trades precisely directly from the chart. Key Functions: Interactive Panel: An on-screen graphical interface that can be dragged, minimized, and customized (dark/light themes), with bilingual support (ES/EN). Risk/Reward Calculation: Allows defining position sizing based on fixed risk (Cash), account percentage (%),
Analysez moins. Comprenez mieux. Tradez avec plus de confiance. BMAE (Best Market Analyser Edge) est un assistant de trading semi-automatique conçu pour aider les traders débutants, intermédiaires et expérimentés à analyser le marché plus efficacement, détecter des opportunités à forte probabilité et développer progressivement leur autonomie. Moins d'hésitation. Plus de méthode. Plus de confiance dans vos décisions. Le trading ne devrait pas être aussi compliqué... Au début, tout semble simple.
Gold Trend Swing
Luis Ruben Rivera Galvez
5 (1)
Send me a message so I can send you the setfile 498 $ pour l'introduction, il augmentera de 100 par mois jusqu'à atteindre 1298 $ Bot de trading automatisé pour XAUUSD (GOLD). Connectez ce bot à vos graphiques XAUUSD (GOLD) H1 et laissez-le trader automatiquement avec une stratégie éprouvée ! Conçu pour les traders à la recherche d'une automatisation simple mais efficace, ce bot exécute des transactions basées sur une combinaison d'indicateurs techniques et d'action des prix, optimisés pour
Liquidity Map
Alex Amuyunzu Raymond
Liquidity Map  Overview The Liquidity Map indicator is an advanced visualization tool based on ICT Smart Money Concepts . It automatically identifies daily Buy Zones , Sell Zones , and Liquidity Levels , showing where price is likely to reverse or continue based on institutional order flow. It calculates key levels from the daily session — such as the previous day’s high, low, and midpoint — then derives a premium (sell bias) and discount (buy bias) structure. When price trades into these mapped
NEXA Breakout Velocity NEXA Breakout Velocity est un système de trading automatique basé sur la logique de cassure de canal, combinée à un filtre de momentum (ROC), un filtre de volume et une gestion du risque basée sur l’ATR. Le système est conçu pour identifier les phases d’expansion de volatilité lorsque le prix sort d’une zone de consolidation avec une accélération et une augmentation de l’activité. Tous les signaux sont calculés uniquement sur des bougies clôturées. Une seule position par s
FREE
Born to Kill Zone  is a trading strategy in the financial markets where traders aim to profit from short- to intermediate-term price movements.  In conducting the analysis, this EA incorporates the use of a moving average indicator . As we are aware, moving averages are reliable indicators widely utilized by professional traders Key components include precise entry and exit strategies, risk management through stop-loss orders, and position sizing. Swing trading strikes a balance between active
HASuperTrendADX
Steven Wong Sing Seng
HA Supertrend ADX is a MetaTrader 5 trend Expert Advisor inspired by the TradingView Heikin Ashi Supertrend ADX concept. It combines Heikin Ashi candle alignment, Supertrend direction on HA prices, and an ADX strength filter. Features • Heikin Ashi trend confirmation • Supertrend on Heikin Ashi OHLC (TradingView-style) • ADX minimum threshold with optional DI+ / DI- filter • Supertrend flip exit and/or ATR trailing stop • Optional initial ATR stop loss • Margin cap and maximum lot limit • XAU
Anubi Terminal MT5
Marco Maria Savella
Anubi Terminal is a professional trade management assistant designed for manual traders who demand precision, speed, and strict risk control. Unlike automated bots, Anubi puts the trader in control, providing a sophisticated interface to execute and manage trades according to institutional-grade risk management rules. Why Anubi Terminal? Manual trading often fails due to calculation errors and emotional exits. Anubi eliminates these risks by automating position sizing and trade management based
HenGann
Ehsan Kariminasab
Hengann Sq, using artificial intelligence, mathematical algorithms, Fibonacci, 9 Gann and Fibonacci square strategy, which enables us to have win rate of 200% profit per month. Initial investment for minimum capital of $100 to $1000, you be able to adjust the volume, date, hour, day and profit limit. adjustable profit limit in both buy and sell positions. Able to place orders in all time frames from 5 minutes to a week. further adjustment enables you to open the position according your desir
VIX Momentum Pro EA - Description du produit Aperçu VIX Momentum Pro est un système de trading algorithmique sophistiqué conçu exclusivement pour les Indices Synthétiques VIX75. L'algorithme emploie une analyse multi-timeframes avancée combinée avec des techniques de détection de momentum propriétaires pour identifier les opportunités de trading à haute probabilité dans le marché de volatilité synthétique. Stratégie de trading L'Expert Advisor opère sur une approche comprehensive basée sur le m
Moriarti Hits Pro
Guillermo Julian Moreno Coma
Product Title: Moriarti Hits Pro: Institutional AI Gold Algo Description: Moriarti Hits Pro is not a simple moving average crossover; it is an institutional-grade quantitative ecosystem designed exclusively to dominate Gold (XAUUSD) volatility. Powered by a Neuro-Fractal Engine, the algorithm doesn't just analyze the past—it learns in real-time through weight adaptation (Online Learning), continuously adjusting its decision-making to dynamic market conditions. Developed for long-term survival an
EMA Trinity Pulse
Jonatan Gergo Schmal
EMA Trinity Pulse: Advanced Institutional-Grade Trend Alignment Engine Welcome to EMA Trinity Pulse , a state-of-the-art algorithmic trading system engineered for traders who demand precision, strict capital preservation, and uncompromising performance. Developed through thousands of hours of quantitative research, rigorous tick-data backtesting and live market validation. This EA represents the pinnacle of automated trading technology. Unlike generic grid or martingale systems that expose you
XAU Portfolio Pro 3 TimeFrames
Fernando Medina Villanueva
XAU Portfolio Pro 3 Time Frames Aperçu de la Stratégie XAU Portfolio Pro 3 Time Frames est un portefeuille d'Experts Advisors entièrement automatisé, conçu exclusivement pour le trading de l'Or sur les timeframes M15, H1 et H4. Ce portefeuille combine trois stratégies éprouvées pour offrir des rendements constants dans différentes conditions de marché. Développement et Tests de Robustesse Ce portefeuille a été développé en utilisant plus de 20 années de données tick historiques, fournissant
NEXY is a professional multi-timeframe trading system based on Market Structure (HH/HL/LH/LL) and Fibonacci Retracement zones.  CORE STRATEGY: The EA identifies pivot points (higher highs, higher lows, lower highs, lower lows) to determine the market structure. Once the main structure is established, it calculates Fibonacci retracement zones (0.618-0.786) where the price is likely to retrace before continuing in the direction of the trend. You can select which timeframes to align with the main
TradeEcho Slave Subscriber lit les positions ouvertes de votre compte maître TradeEcho et les reflète sur le terminal MetaTrader 5 local. Prend en charge lot fixe et proportionnel, contrôles par symbole et auto-rapports périodiques pour la visibilité du tableau de bord. Produit associé : TradeEcho Master Publisher (gratuit). Le compte maître doit exécuter TradeEcho Master Publisher avec le même User ID avant que les esclaves puissent refléter les positions. Prérequis : - Abonnement cloud Trad
FREE
QTS Gold Guardian AI Scalper d'or de qualité institutionnelle basé sur un réseau neuronal. Intègre une couverture intelligente, une protection du capital et une adaptation à la volatilité. Sans martingale, stratégie risquée. QTS Gold Guardian AI est la solution idéale pour le scalping de la paire XAUUSD (Or), conçue pour résister aux conditions de marché les plus volatiles. Contrairement aux scalpers traditionnels qui peuvent ruiner un compte, QTS privilégie la préservation du capital. Fo
MT5 to Telegram Bridge – Système complet de notifications de trades Guide d’installation pas à pas Créer un bot Telegram Ouvrez Telegram et recherchez   @BotFather . Envoyez   /newbot   et suivez les instructions. Copiez le   token du bot   (ex.   1234567890:ABCdef... ). Obtenir l’ID du chat Ajoutez le bot à votre groupe Telegram (ou démarrez une discussion privée). Envoyez n’importe quel message dans ce groupe/chat. Dans votre navigateur, allez à : https://api.telegram.org/bot&lt ;VOTRE_TOKEN>
NDX 100 Swing EA MT5
Carlos Osvaldo Delgado
NDX 100 Swing EA   We lower prices! This expert advisor trades the Nasdaq 100 index. The strategy buys dips by taking profit from bullish trends. The investment is long term (Swing). It uses the RSI daily indicator as a signal to open operations, the management of operations, the level of risk and capital management is carried out based on probability calculations based on statistics. To achieve this, this project has been in development for more than 5 years, during which large amounts of data
Guide de l’utilisateur NEXA Pivot Scalper PRO Présentation NEXA Pivot Scalper PRO est un système de trading automatique (Expert Advisor) conçu pour la plateforme MetaTrader 5. Le programme analyse le comportement du prix autour des niveaux Pivot et évalue les conditions de marché à court terme à l’aide d’indicateurs techniques. Les positions sont ouvertes automatiquement lorsque plusieurs conditions de trading sont réunies. L’Expert Advisor fonctionne selon des règles prédéfinies de trading et d
FREE
Ilon Clustering
Andriy Sydoruk
Ilon Clustering is an improved Ilon Classic robot, you need to read the description for the Ilon Classic bot and all statements will be true for this expert as well. This description provides general provisions and differences from the previous design. General Provisions. The main goal of the bot is to save your deposit! A deposit of $ 10,000 is recommended for the bot to work and the work will be carried out with drawdowns of no more than a few percent. When working into the future, it can gr
Synthesis X Neural EA
Thanaporn Sungthong
Forget Everything You Know About Trading Robots. Introducing Synthesis X Neural EA , the world's first Hybrid Intelligence Trading System . We have moved beyond the limitations of simple, indicator-based EAs to create a sophisticated, two-part artificial intelligence designed for one purpose: to generate stable, consistent portfolio growth with unparalleled risk management. Synthesis X is not merely an algorithm; it is a complete trading architecture. It combines the immense analytical power of
Box Breaker
Ionut-alexandru Margasoiu
The Edge Every Trader Wants. Built Into a Single EA. BoxBreaker is a professional-grade Expert Advisor for MetaTrader 5 that trades range breakouts — one of the most battle-tested setups in technical analysis. It detects consolidation zones across multiple symbols and timeframes, waits for the decisive move, and executes with surgical precision. No guesswork. No manual intervention. Just systematic, rules-based trading. What It Does BoxBreaker identifies a price range during a specific session w
Omega Algo Forge AI
Napat Puangjunkum
OMEGA ALGO FORGE AI — The No-Code Strategy Builder "Stop buying rigid Expert Advisors. Start building your own." > Omega Algo Forge AI is not just a trading robot. It is an "EA Builder" platform built directly into your MetaTrader 5 chart. It gives you the power to mix and match entry logic, trend filters, and exit strategies without writing a single line of code. Why rely on someone else's strategy when the market is always changing? With the Omega Forge, you can instantly adapt. Want to tr
Gold Breakout Quant-X  Professional Breakout Expert Advisor for XAUUSD Gold Breakout Quant X   is a precision‑engineered trading robot designed exclusively for   XAUUSD (Gold)   . It captures confirmed breakout movements using structured range detection, ATR‑based volatility validation, and strict risk management rules. The system was developed and refined through extended real‑market testing. It follows a transparent, rule‑based methodology and   does not use   dangerous recovery techniques su
DYJ WITHDRAWAL PLAN : Système de Trading sur Renversement de Tendance 1. Qu'est-ce que DYJ WITHDRAWAL PLAN ? DYJ WITHDRAWAL PLAN   est un   système de trading intelligent basé sur le renversement de tendance , conçu pour   ouvrir et clôturer automatiquement les positions   lorsque le marché change de direction. Ce système est   compatible avec tous les instruments financiers et tous les courtiers , qu'il s'agisse de   Forex   ou d' Indices Synthétiques , il s'adapte facilement à tous types de
Xau Genesis Omni-breakout Protocolthe Ultimate God-tier Breakout Matrix Xau Genesis Omni-Breakout Protocol-  is a professional-grade God-Tier Expert Advisor engineered specifically for XAUUSD (Gold). It merges the core principles of institutional breakout trading with advanced 3D dimensional support and resistance calculations. The EA uses a highly responsive MagicTrail algorithm to lock in profits during explosive moves and features the acclaimed Aegis Shield to protect your capital. Whether y
VWAP Cloud
Flavio Javier Jarabeck
4.1 (10)
Do you love VWAP? So you will love the VWAP Cloud . What is it? Is your very well known VWAP indicator plus 3-levels of Standard Deviation plotted on your chart and totally configurable by you. This way you can have real Price Support and Resistance levels. To read more about this just search the web for "VWAP Bands" "VWAP and Standard Deviation". SETTINGS VWAP Timeframe: Hourly, Daily, Weekly or Monthly. VWAP calculation Type. The classical calculation is Typical: (H+L+C)/3 Averaging Period to
FREE
ALPHATREND INSTITUTIONAL STRUCTURE MODE Descripción general: AlphaTrend es un Expert Advisor híbrido para MetaTrader 5 que combina análisis de estructura de mercado con indicadores de momentum. No es un sistema reactivo tradicional. Opera identificando primero la tendencia real mediante máximos y mínimos, luego espera un retroceso o pullback, y finalmente confirma la entrada con ADX y pendiente de media rápida. Esto permite entrar temprano en la dirección correcta, no perseguir el precio. Lógica
Les acheteurs de ce produit ont également acheté
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Adam FTMO MT5
Vyacheslav Izvarin
5 (2)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 --------------------------------------------------------------------------------
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! ONLY UNTIL 08/22 The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understand
ENGLISH VERSION tg @eeevleee TICK CHART SERVICE - Professional Tick Ch
Mt5BridgeBinary
Leandro Sanchez Marino
I automated its commercial strategies for use of binary in MT5 and with our Mt5BridgeBinary I sent the orders to its Binary account and I list: begin to operate this way of easy! The expert advisers are easy to form, to optimize and to realize hardiness tests; also in the test we can project its long-term profitability, that's why we have created Mt5BridgeBinary to connect its best strategies to Binary. Characteristics: - It can use so many strategies as I wished. (Expert Advisor). - He does
FiboPlusWaves MT5
Sergey Malysh
5 (1)
FiboPlusWave Series products Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    Features: without delving into the Elliott wave theory, you can immediately open one of
Xrade EA
Yao Maxime Kayi
Xrade EA is an expert advisor as technical indicator. For short period trade it's the best for next previsions of the trend of the market. +--------------------------------------------------------------------------------------- Very Important Our robot(data anylizer) does'nt take a trade procedure. If using only our robot you must take positions by yoursels +--------------------------------------------------------------------------------------- The technical indiator provide for a given sma
News: IDEA 2.0 is out with lot of features, like telegram bot notifications and Limits order! Check the changelog at bottom of page (*). Hi all, here you can find my Expert Advisor, called IDEA  (Intelligent Detection & managEr Algorithm) . In short, with this software you can: Have   a clear view of market status , with an indication of current trend. Simply add symbols you want to monitor to your market watch, and IDEA will notify you if some of them are in trend; Have an   automatic lots ca
PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
Market book saver
Aliaksandr Hryshyn
Saving data from the order book. Data replay utility: https://www.mql5.com/en/market/product/71640 Library for use in the strategy tester: https://www.mql5.com/en/market/product/81409 Perhaps, then a library will appear for using the saved data in the strategy tester, depending on the interest in this development. Now there are developments of this kind using shared memory, when only one copy of the data is in RAM. This not only solves the memory issue, but gives faster initialization on each
All in one Keylevel
Trinh Minh Tung
5 (1)
Instead of sticking to the Charts,let's use ALL IN ONE KEYLEVEL Announcement: We are pleased to announce the latest version 14.02 of the One In One Keylevel product. This is a reliable product that has been upgraded with many new features and improvements to make your work easier and more efficient. Currently, we have a special promotion for this new version. The current discounted price is $500, and there are only 32 units left. After that, the price will increase to $1000, and will continue to
GerFX EA Protection Filter MT5
Exler Consulting GmbH
5 (1)
The EA Protection Filter ( MT4 version here ) provides a news filter as well as a stock market crash filter, which can be used in combination with other EAs. Therefore, it serves as an additional protective layer for other EAs that do provide such filters.  During backtest analysis of my own night scalpers, which already use a stock market crash filter, I noticed that the historic drawdown,  especially during stock market crash phases like 2007-2008, was reduced significantly by using such a fil
Hedge Ninja
Robert Mathias Bernt Larsson
3 (2)
Make sure to join our Discord community over at www.Robertsfx.com , you can also buy the EA at robertsfx.com WIN NO MATTER IN WHICH DIRECTION THE PRICE MOVES This robot wins no matter in which direction the price moves by following changing direction depending on in which direction price moves. This is the most free way of trading to this date. So you win no matter which direction it moves (when price moves to either of the red lines as seen on the screenshot, it wins with the profit target you
Best for Technical Analysis You can set from one key shortcut for graphical tool or chart control for technical analysis. Graphic design software / CAD-like smooth drawing experience. Best for price action traders. Sync Drawing Objects You don’t need to repeat drawing the same trend line on the other charts. Shortcuts do that for you automatically. Of course, any additional modifications of the object immediately apply to the other charts too. Colors depend on Timeframe Organize drawings with
Gold instrument scanner is the chart pattern scanner to detect the triangle pattern, falling wedge pattern, rising wedge pattern, channel pattern and so on. Gold instrument scanner uses highly sophisticated pattern detection algorithm. However, we have designed it in the easy to use and intuitive manner. Advanced Price Pattern Scanner will show all the patterns in your chart in the most efficient format for your trading. You do not have to do tedious manual pattern detection any more. Plus you
Gold Wire Trader MT5 trades using the RSI Indicator. It offers many customizable RSI trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. The EA implements the following entry strategies, that can be enabled or disabled at will: Trade when the RSI Indicator is oversold or overbought Trade when the RSI comes back from an oversold or overbought condition Four different trading behavio
Gold trend scanner MT5 a multi symbol multi timeframe dashboard that monitors and analyzes Average True Range indicator value in up to 28 symbols and 9 timeframes  in 3 modes :  It shows the ATR indicator value in all pairs and timeframes and signals when the ATR value reaches a maximum or minimum in a given duration. Short term ATR/Long term ATR ratio: It shows ratio of 2 ATRs with different periods. It's useful in detecting short term volatility and explosive moves. ATR Value/Spread ratio: S
Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
A triangular arbitrage strategy exploits inefficiencies between three related currency pairs, placing offsetting transactions which cancel each other for a net profit when the inefficiency is resolved. A deal involves three trades, exchanging the initial currency for a second, the second currency for a third, and the third currency for the initial. With the third trade, the arbitrageur locks in a zero-risk profit from the discrepancy that exists when the market cross exchange rate is not aligned
Gold index expert MT5 Wizard uses Multi-timeframe analysis. In simpler terms, the indicator monitors 2 timeframes. A higher timeframe and a lower timeframe. The indicator determines the trend by analyzing order flow and structure on the higher timeframe(4 hour for instance). Once the trend and order flow have been determined the indicator then uses previous market structure and price action to accurately determine high probability reversal zones. Once the high probability reversal zone has bee
Golden Route home MT5 calculates the average prices of BUY (LONG) and SELL (SHORT) open positions, taking into account the size of open positions, commissions and swaps. The indicator builds the average line of LONG open positions, after crossing which, from the bottom up, the total profit for all LONG positions for the current instrument becomes greater than 0. The indicator builds the average line of SHORT open positions, after crossing which, from top to bottom, the total profit for all SH
Do you want an EA with small stoploss? Do you want an EA that is just in and out of market? Gold looks at several MT5 It is ONLY buying when the market opens and with a window of 10 minutes or less. It uses pre-market price so be sure your broker has that.   This strategies (yes, it is 2 different strategies that can be used with 3 different charts) have tight stoplosses and a takeprofit that often will be reached within seconds! The strategies are well proven. I have used them manually for
Bionic Forex
Pablo Maruk Jaguanharo Carvalho Pinheiro
Bionic Forex - Humans and Robots for profit. Patience is the key. The strategies are based on: - Tendency - Momentum + High Volatility - Dawn Scalper + Support Resistence. Again, patience is the key. No bot is flawless, sometimes it will work seamlessly, sometimes it simply won't.  it's up to you manage its risk and make it a great friend to trade automatically with fantastic strategies. Best regards, Good luck., Pablo Maruk.
ABOUT THE PRODUCT Your all-in-one licensing software is now available. End users are typically granted the right to make one or more copies of software without infringing on third-party rights. The license also specifies the obligations of the parties to the license agreement and may impose limitations on how the software can be used. AIM OF THE SOFTWARE The purpose of this system is to provide you with a one-of-a-kind piece of software that will help you license and securely track your MT4/MT5
Le but de ce service est de vous avertir quand le pourcentage du niveau de marge dépasse soit un seil vers le haut, soit vers le bas. La notification se fait par mail et/ou message sur mobile dans l'app metatrader. La fréquence des notifications se fait soit à intervalle de temps régulier, soit par étape de variation de la marge. Les paramètres sont: - Smartphone (true or false) : si true, active les notifications sur mobile ; la valeur par défaut est false. Il faut que les options du terminal
基于Goodtrade/GoodX 券商推出的黄金双仓对冲套利的交易模型/策略/系统,在日常的操作遇到的问题: 1、B账户跟随A账户即刻下单。 2:A账户 下单后  B账户 自动抄写止损止盈。 3:A账户平仓B账户同时平仓。 4:B账户平仓A账户也平仓。 5:不利点差下拒绝下单。 6:增加有利点值因子。 通过解决以上问题,改变了熬夜、手工出错、长期盯盘、紧张、恐慌、担心、睡眠不足、饮食不规律、精力不足等问题 目前解决这些问题后,有效提升了工作效率和盈利比例,由原来月10%盈利率提升到月45%的最佳盈利率。 原来的一名交易员只能管理操作两组账户,通过此EA提高到操作管理高达16组交易账户,或许你可以超越我们的记录,期待你的经验交流。 此EA分为: GoodtradeGoodX Tradercropy A       GoodtradeGoodX Tradercropy B     是一个组合EA,假设您购买的额  GoodtradeGoodX Tradercropy   A  必须同时购买 GoodtradeGoodX Tradercropy   B  两个组合使用会到最佳效果。   
BOTON para trading manual
Cesar Juan Flores Navarro
El EA Boton pone botones de Buy y Sell en la pantalla Ideal para usuarios que habren muchas ordenes y diferentes pares 9 botones buy desde 0.01 al 0.09 y 9 botones sell de 0.01 al 0.09 9 botones buy desde 0.1 al 0.9 y 9 botones sell de 0.1 al 0.9 Boton Close buy y sell Boton Close buy positivos y Boton Sell positivos Boton Close buy negativos y Boton Sell negativos un boton close all y botones buy de 1, 5 y 10 y botones de sell 1,5, 10
Отличный помощник для тех кто грамотно распоряжается своими рисками. Данный помощник просто не заменим если у вас всегда должен быть фиксированный риск на сделку. Помогает автоматически высчитывать лот в зависимости от вашего риска. Теперь можно не беспокоиться о том каким будет ваш Stoploss, риск всегда будет одинаковый. Считает объем сделок как для рыночных ордеров так и для отложенных. Удобный и интуитивно понятный интерфейс, так же есть некоторые дополнительные функции для упрощения вашей то
FTMO Sniper 7
Vyacheslav Izvarin
Dedicated for FTMO and other Prop Firms Challenges 2020-2024 Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Best results on GOLD and US100  Use any Time Frame Close all deals and Auto-trading  before  US HIGH NEWS, reopen 2 minutes after Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday Recommended time to trade 09:00-21:00 GMT+3 For Prop Firms MUST use special  Protector  https://www.mql5.com/en/market/product/94362 --------------------
Introducing TEAB Builder - The Ultimate MT5 Expert Advisor for Profoundly Profitable and Customizable Trading!     Are you ready to take your trading to the next level? Meet TEAB Builder, an advanced MT5 Expert Advisor designed to provide unparalleled flexibility, high-profit potential, and an array of powerful features to enhance your trading experience. With TEAB Builder, you can effortlessly trade with any indicator signal, allowing you to capitalize on a wide range of trading strategies.  
Plus de l'auteur
Test Trade Saver Script Application Type: Script Application Functions: Saves test results cache file data into text files About the Application The script extracts trading results from a test system cache file and saves them into text files for further analysis. How to Use Parameters: LOG_LEVEL -  Logging level in the Experts terminal section. DEBUG provides the most detailed information, while ERROR gives the minimum. CUSTOM_MAGIC_NUMBER - The system identifier (Magic Number) used to save resu
FREE
Service Trade Saver Type d'Application: Service Caractéristiques de l'Application: Recherche automatisée et sauvegarde des résultats des opérations pour plusieurs systèmes dans des fichiers texte pour une analyse ultérieure À propos de l'Application Le service enregistre automatiquement les résultats des positions fermées pour une liste de systèmes de trading dans des fichiers texte, en créant un fichier personnalisé pour chaque système. Comment Utiliser Paramètres : LOG_LEVEL - Niveau de journ
FREE
Filtrer:
Aucun avis
Répondre à l'avis