Optimal F Service

Serviço Ótimo F

  • Tipo de Aplicação: Serviço
  • Funções da Aplicação: Cálculo da fração ótima e do volume de operação para alcançar o crescimento máximo da curva de capital, com base nos resultados de operações anteriores.

Sobre esta aplicação

A gestão de capital é o componente mais crucial e frequentemente subestimado de qualquer sistema de trading. Uma gestão adequada pode melhorar — e em alguns casos significativamente — o desempenho do seu algoritmo de trading.
Esta aplicação calcula automaticamente a fração ótima e o volume de operação utilizando o algoritmo proposto por Ralph Vince no livro "The Mathematics of Money Management", para alcançar o crescimento geométrico máximo do saldo da conta. Este ponto é único para qualquer sistema de trading e é essencial conhecê-lo. Nos seus sistemas de trading, nunca use um tamanho de operação que exceda o valor ótimo!

Os algoritmos de gestão de capital NÃO são projetados para sistemas matematicamente perdedores baseados em médias, martingale ou estratégias similares. Esses sistemas serão filtrados pela aplicação antes de realizar cálculos, pois a fração ótima e o volume de operação para esses sistemas são sempre iguais a zero. Os algoritmos de gestão de capital podem melhorar os resultados SOMENTE para sistemas de trading matematicamente rentáveis (aqueles com expectativa matemática positiva). Portanto, este serviço é recomendado APENAS para profissionais que entendem o que estão fazendo.
Além disso, o algoritmo não considera correlações (dependências) entre sistemas que operam simultaneamente. Para que o algoritmo funcione de forma eficaz, é necessário um conjunto bem diversificado de sistemas de trading.

Como usar

Parâmetros:

  • LOG_LEVEL - Nível de registro para a seção de Especialistas do terminal. DEBUG fornece informações mais detalhadas, enquanto ERROR registra o mínimo.
  • MAGIC_LIST - Lista separada por vírgulas de identificadores de sistemas (Magic Numbers) que operam simultaneamente e requerem cálculos.
  • TRADE_FILES_PATH - Caminho para o diretório contendo os arquivos com os resultados das operações anteriores (relativo a <Pasta de Dados>/MQL5/Files/).
  • OUTPUT_FILE_PATH - Caminho para o arquivo onde os resultados dos cálculos serão salvos (relativo a <Pasta de Dados>/MQL5/Files/).
  • WORK_PERIOD - Frequência dos recálculos em segundos.
  • BALANCE_MATRIX_PERIOD - Período sobre o qual os resultados são agregados, com cálculos baseados nesse período agregado em vez de cada operação individual.

Antes do primeiro uso сada sistema de trading deve ser testado no testador de estratégias até o momento atual. Recomenda-se selecionar um período de tempo que inclua pelo menos 100 operações. Use o Test Trade Saver Script e siga as instruções para extrair os arquivos de resultados dos testes (*.tst) no formato exigido.

Se o sistema de trading já tiver sido usado no terminal e houver posições no histórico com o MAGIC especificado, você deve configurar um parâmetro CUSTOM_MAGIC_NUMBER diferente no script!

Depois para garantir que os arquivos de dados sejam atualizados regularmente, execute o Trade Saver Service seguindo as instruções.
Após a exportação inicial de dados dos testes com o Trade Saver Script, o Trade Saver Service atualizará continuamente os arquivos com novos dados à medida que estiverem disponíveis, enquanto o Optimal F Service calculará e gravará regularmente novos valores no arquivo de resultados.

Algoritmo

  1. Extraia a lista de sistemas que requerem cálculos do parâmetro MAGIC_LIST.
  2. Use arquivos de texto chamados <MAGIC>.csv no formato <MAGIC>,<POSITION_CLOSE_TIME>,<LOTS>,< RESULT_$> contendo os resultados das operações anteriores do diretório especificado por TRADE_FILES_PATH.
  3. Construa uma matriz para a função da curva de saldo, onde cada valor a[i][j] representa o resultado do sistema de trading i para o período j.
  4. Verifique cada sistema quanto a pelo menos um período negativo nos seus resultados. Se um sistema não tiver períodos negativos, exclua-o dos cálculos posteriores (esses sistemas devem ser removidos).
  5. Avalie a expectativa matemática de cada sistema. Se um sistema não tiver valor esperado positivo, exclua-o dos cálculos posteriores (esses sistemas devem ser removidos).
  6. Determine a margem de erro necessária para calcular o volume de operação com precisão de 0,01.
  7. Para cada sistema restante, calcule sua fração ótima.
  8. Divida o saldo atual em partes iguais para os sistemas restantes. Para cada sistema e seu saldo alocado, calcule o volume de operação em lotes correspondente à fração ótima.
  9. Grave os resultados no arquivo de texto especificado por OUTPUT_FILE_PATH no formato <MAGIC>,<BIGGEST_LOSS>,<OPTIMAL_F>,<OPTIMAL_LOTS>.

Links e referências

  • Ralph Vince - The Mathematics of Money Management: Risk Analysis Techniques for Traders (ISBN-13: 978-0471547389)

Para desenvolvedores

Você pode usar a seguinte classe para integrar os resultados nos seus sistemas 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));
  }
//+------------------------------------------------------------------+

Produtos recomendados
Gold Trend Swing
Luis Ruben Rivera Galvez
5 (1)
Send me a message so I can send you the setfile $ 498 para introdução, aumentará em 100 por mês até atingir $ 1298 Robô de negociação automatizado para XAUUSD (OURO). Conecte este bot aos seus gráficos XAUUSD (GOLD) H1 e deixe-o negociar automaticamente com uma estratégia comprovada! Projetado para traders que buscam automação simples, porém eficiente, este bot executa negociações com base em uma combinação de indicadores técnicos e ação de preço, otimizados para spreads baixos a médios. Co
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 é um sistema de negociação automática baseado em rompimento de canal, filtrado por velocidade de preço (ROC), aumento de volume e gestão de risco baseada em ATR. O sistema foi desenvolvido para identificar fases de expansão de volatilidade, quando o preço rompe uma faixa com aumento de impulso e atividade. Todos os sinais são calculados apenas em velas fechadas. Apenas uma posição por símbolo é mantida ao mesmo tempo. Visão Geral da Estratégia O sist
FREE
Pulsar X
Dmitriq Evgenoeviz Ko
PULSAR X — Gold Market Momentum Monitoring The XAUUSD market doesn't forgive simple decisions. High volatility, false breakouts, and aggressive reactions to news make classic indicator-based strategies vulnerable. PULSAR X is a next-generation algorithmic system designed to accurately operate in market congestion and impulse exhaustion conditions. This is not a trend bot or an averaging mechanism. PULSAR X analyzes the moment when crowd pressure loses its force and the market moves from chaos t
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
HP Mechanical Trading System EA V.1 — Complete Guide  Important notes: before use into real live trading take a back testing first, set your chart to H1 timeframe and for EA inputs settings set the  TrendTF to 1 Hour. for the inputs of RishPercent any of from 0.1 to 5 percent of your balance account.  also recommend to do it your self to change in settings that during the uptrend (sell - false, buy - true). during downtrend (buy - false, sell - true). during ranging (both buy and sell - true) yo
Pullback EMA
Muhamad Adi Sujai
Maximize seu Potencial de Lucro com o Pullback EMA EA – Um Algoritmo de Trading Inteligente e Seguro Você está cansado do trading emocional ou de ficar preso em condições de mercado imprevisíveis? Apresentamos o Pullback EMA EA , um Expert Advisor (EA) avançado projetado especificamente para traders que priorizam estabilidade, precisão e proteção de capital . O Pullback EMA EA não é apenas mais um robô de trading; é o seu assistente profissional de investimentos, trabalhando 24 horas por dia
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 - Descrição do produto Visão geral VIX Momentum Pro é um sistema de negociação algorítmica sofisticado projetado exclusivamente para Índices Sintéticos VIX75. O algoritmo emprega análise avançada de múltiplos prazos combinada com técnicas proprietárias de detecção de momentum para identificar oportunidades de negociação de alta probabilidade no mercado de volatilidade sintética. Estratégia de negociação O Expert Advisor opera com uma abordagem abrangente baseada em momentum
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
ULTIMATE GOLD ENFORCER v3 PRO Institutional-Grade XAUUSD Trading System What Makes It Different Feature Why It Matters 10-Strategy Confluence Engine No single indicator decides — weighted voting across trend, momentum, SMC, order blocks, FVGs, RSI divergence, S/R, volatility & sentiment True Multi-Timeframe H4 structure → H1 signal → M15 entry precision — aligned or no trade Dynamic Risk Management Kelly-inspired position sizing that adapts to your win rate in real-time Zero Martingale/G
QTS Gold Guardian AI Scalper de ouro de nível institucional com tecnologia de Rede Neural. Oferece Hedging Inteligente, Proteção de Capital e Adaptação à Volatilidade. Sem Martingale perigoso. O QTS Gold Guardian AI é a solução definitiva para o scalping de XAUUSD (Ouro), concebida para sobreviver a condições de mercado voláteis. Ao contrário dos scalpers tradicionais que levam à perda total das contas, o QTS dá prioridade à Preservação do Capital. Principais Características: Lógica de R
MT5 to Telegram Bridge – Sistema completo de notificações de trades Guia de configuração passo a passo Criar um bot no Telegram Abra o Telegram e procure por   @BotFather . Envie   /newbot   e siga as instruções. Copie o   token do bot   (ex.:   1234567890:ABCdef... ). Obter o ID do chat Adicione o bot ao seu grupo do Telegram (ou inicie um chat privado). Envie qualquer mensagem nesse grupo/chat. No navegador, acesse: https://api.telegram.org/bot&lt ;SEU_TOKEN>/getUpdates Localize   "chat":{"id
NDX 100 Swing EA MT5
Carlos Osvaldo Delgado
NDX 100 Swing EA Este consultor especialista negocia o índice Nasdaq 100. A estratégia compra quedas ao lucrar com tendências de alta. O investimento é de longo prazo (Swing). Utiliza o indicador diário RSI como sinal para abertura de operações, a gestão das operações, o nível de risco e a gestão de capital é realizada com base em cálculos de probabilidade baseados em estatísticas. Para isso, este projeto está em desenvolvimento há mais de 5 anos, durante os quais foram recolhidas grandes qua
Chart Walker Analysis Engine
Dushshantha Rajkumar Jayaraman
Chart Walker X Engine | Machine-led instincts Powerful MT5 chart analysis engine equipped with a sophisticated neural network algorithm. This cutting-edge technology enables traders to perform comprehensive chart analysis effortlessly on any financial chart. With its advanced capabilities, Chart Walker streamlines the trading process by providing highly accurate trading entries based on the neural network's insights. Its high-speed calculations ensure swift and efficient analysis, empowering tra
Guia do Usuário NEXA Pivot Scalper PRO Visão geral NEXA Pivot Scalper PRO é um sistema de negociação automática (Expert Advisor) desenvolvido para a plataforma MetaTrader 5. O programa analisa o comportamento do preço próximo aos níveis Pivot e avalia as condições de mercado de curto prazo utilizando indicadores técnicos. As operações são abertas automaticamente quando várias condições de negociação são atendidas ao mesmo tempo. O Expert Advisor funciona com base em regras predefinidas de negoci
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
DYJ WITHDRAWAL PLAN: Sistema de Negociação de Reversão de Tendência 1. O que é o DYJ WITHDRAWAL PLAN? O   DYJ WITHDRAWAL PLAN   é um   sistema inteligente de negociação de reversão de tendência , capaz de   abrir e fechar ordens automaticamente   quando o mercado muda de direção, ajudando os traders a capturar as principais oportunidades de movimentação dos preços. Este sistema é compatível com   todos os instrumentos de negociação   e   todos os corretores , incluindo   Forex   e   Índices Sin
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
Scalper HFT EA
Felixs Triang Rosario Alves
2 (3)
[Scalper HFT EA] : Precision One-Shot Scalper [Scalper HFT EA] is a high-precision trading algorithm designed for the modern trader who values capital preservation over reckless gambling. Unlike "grid" or "martingale" systems that carry high drawdown risks, this EA operates on a strict One Shot philosophy: one trade at a time, each protected by a hard Stop Loss. The strategy utilizes a sophisticated Pending Order mechanism to catch high-probability breakouts and price inefficiencies. By entering
Send me a message so I can send you the setfile Robô robusto com diversas configurações disponíveis, Use com BTC em um período de 10 minutos com as configurações na captura de tela abaixo. Ao adquirir o robô especialista, você tem o direito de solicitar modificações para continuar melhorando o bot. Principais características Estratégia de Crossover de Média Móvel: O EA usa duas médias móveis (MA1 e MA2) para gerar sinais de negociação. Um cruzamento da MM mais rápida (MM1) acima ou abaixo
The ABC Indicator analyzes the market through waves, impulses, and trends, helping identify key reversal and trend-change points. It automatically detects waves A, B, and C, along with stop-loss and take-profit levels. A reliable tool to enhance the accuracy and efficiency of your trading. This product is also available for MetaTrader 4 =>  https://www.mql5.com/en/market/product/128179 Key Features of the Indicator: 1. Wave and Trend Identification:    - Automatic detection of waves based on mov
Aqui estão os resultados do teste forward. (MT4 ver.) USDJPY Trend Surfer é uma ferramenta de negociação inovadora projetada como um EA (Expert Advisor) de acompanhamento de tendências. Este EA captura com precisão a tendência do USDJPY combinando múltiplas SMAs (Médias Móveis Simples), RSI (Índice de Força Relativa) e StdDev (Desvio Padrão). Ao utilizar várias SMAs, ele analisa simultaneamente as tendências em diferentes períodos e, ao combinar indicadores como RSI e StdDev, detecta condições d
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
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 Apresentando Bitcoin Scalping MT4/MT5 – O EA inteligente para negociação de criptomoedas PROMOÇÃO DE LANÇAMENTO: Restam apenas 3 cópias pelo preço atual! Preço final: $3999.99 BÔNUS - COMPRE BITCOIN SCALPING DE POR VIDA E RECEBA GRÁTIS EA AI VEGA BOT (2 contas) => Pergu
O Indicador Projection da BCB Elevate é uma ferramenta completa e profissional para estrutura de mercado e acompanhamento de tendências. Desenvolvido para traders manuais, combina filtragem de macro-tendência (EMA 100), stops móveis dinâmicos baseados em ATR e rastreamento de pivôs Swing High/Low para fornecer sinais de gráfico de alta precisão. Em vez de redesenhar ou sobrecarregar o seu gráfico, o Projection Indicator aguarda o alinhamento estrito das condições antes de traçar as setas de entr
Trend light AI
Younes Bordbar
Anyone who purchases the robot, please leave a comment so I can send you the optimal input values for each currency pair to maximize your profits in the market TIME FRIM :15min Are you looking for a way to begin trading with low risk and excellent results? Or perhaps you’re ready to take on slightly higher risks for bigger rewards? Our trading robot, designed for MetaTrader 4 and 5, is exactly what you need! Why Choose This Robot? Adjustable Risk Levels: Use the Input section to customize the r
Os compradores deste produto também adquirem
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:/
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
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? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
FiboPlusWaves MT5
Sergey Malysh
5 (1)
Uma série de produtos sob marca FiboPlusWave Um sistema comercial pronto baseado nas  ondas de Elliott e níveis de Fibonacci . Simples e de fácil acesso. Exibição de marcação das ondas de Elliott (opção geral ou alternativa) em um gráfico. Construção dos níveis horizontais, linhas de apoio e resistência, canal. Sobreposição dos níveis de Fibonacci para as ondas 1, 3, 5, A Sistema de alerta (no ecrã, E-Mail, Push notificações).    Particularidade s : sem se aprofundar na teoria das ondas de Ellio
EA price is reduced to 50% discount for limited time period. Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot and Gold futures instruments
ENGLISH VERSION TICK CHART SERVICE - Professional Tick Chart Service
GRID for MT5
Volodymyr Hrybachov
GRID para MT5 é uma ferramenta conveniente para aqueles que negociam com uma grade de ordens, projetada para negociação rápida e confortável nos mercados financeiros FOREX. GRID for MT5 possui um painel personalizável com todos os parâmetros necessários. Adequado para comerciantes experientes e iniciantes. Trabalha com qualquer corretor, incluindo corretores americanos com um requisito de FIFO - em primeiro lugar, para fechar negócios abertos anteriormente. A grade de pedidos pode ser fixa - os
Mt5BridgeBinary
Leandro Sanchez Marino
Automatizei as suas estratégias comerciais para o uso do binário em MT5 e com o nosso Mt5BridgeBinary enviei as ordens à sua conta Binária e inclino-me: comece a fazer funcionar este caminho do fácil! Os aconselhadores peritos são fáceis formar, otimizar e realizar testes de robustez; também no teste podemos projetar a sua rentabilidade de longo prazo, por isso criamos Mt5BridgeBinary para unir as suas estratégias melhores ao Binário. Características: - Pode usar tantas estratégias como desej
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
Salvando dados do livro de pedidos. Utilitário de repetição de dados: https://www.mql5.com/pt/market/product/71640 Biblioteca para uso no testador de estratégia: https://www.mql5.com/pt/market/product/81409 Talvez, então, apareça uma biblioteca para utilizar os dados salvos no testador de estratégia, dependendo do interesse neste desenvolvimento. Agora, há desenvolvimentos desse tipo usando memória compartilhada, quando apenas uma cópia dos dados está na RAM. Isso não apenas resolve o problema
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
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
The purpose of this service is to warn you when the percentage of the margin level exceeds either a threshold up or down. Notification is done by email and/or message on mobile in the metatrader app. The frequency of notifications is either at regular time intervals or by step of variation of the margin. The parameters are: - Smartphone (true or false): if true, enables mobile notifications. The default value is false. The terminal options must be configured accordingly. - email (true or false)
基于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 --------------------
Mais do autor
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
Serviço Trade Saver Tipo de Aplicação: Serviço Características da Aplicação: Busca automatizada e salvamento dos resultados das operações para múltiplos sistemas em arquivos de texto para análise posterior Sobre a Aplicação O serviço salva automaticamente os resultados das posições fechadas para uma lista de sistemas de trading em arquivos de texto, criando um arquivo personalizado para cada sistema. Como Usar Parâmetros: LOG_LEVEL: Nível de registro na seção Experts do terminal. DEBUG fornece
FREE
Filtro:
Sem comentários
Responder ao comentário