• Genel bakış
  • İncelemeler
  • Yorumlar (1)

Optimum lot size calculator

Important Note:

Before using it in a real account test it in your demo account.


//+------------------------------------------------------------------+

//|                                             Optimum_Lot_Size.mq5 |

//|                                  Copyright 2023, MetaQuotes Ltd. |

//|                                             https://www.mql5.com |

//+------------------------------------------------------------------+

#property copyright "Copyright 2023, MetaQuotes Ltd."

#property link      "https://www.mql5.com"

#property version   "1.00"

#property script_show_inputs

#include <Trade/Trade.mqh>

#include <Trade/PositionInfo.mqh>


CTrade Trading;

//+------------------------------------------------------------------+

//| Script program start function                                    |

//+------------------------------------------------------------------+


input bool IsBuy=true;

input double StopLoss;

input double TakeProfit;

input double RiskPercent=0.01;

double LotSize; 

void OnStart()

  {   

      

      double temp_RiskPercent=RiskPercent;

      double Ask=SymbolInfoDouble(Symbol(),SYMBOL_ASK);

      double Bid=SymbolInfoDouble(Symbol(),SYMBOL_BID);

       

      

      

      

      

      if(temp_RiskPercent>0.04) temp_RiskPercent=0.04;

      

      if (IsBuy && StopLoss !=0.0)

      {

         LotSize=OptimumLotSize(Symbol(),Ask,StopLoss,temp_RiskPercent);

         Trading.Buy(LotSize,Symbol(),Ask,StopLoss,TakeProfit);  

         

      }

      

      if (!IsBuy && StopLoss !=0.0)

      {

         LotSize=OptimumLotSize(Symbol(),Bid,StopLoss,temp_RiskPercent);

         Trading.Sell(LotSize,Symbol(),Bid,StopLoss,TakeProfit);  

      

      }

   

  }








double OptimumLotSize(string symbol,double EntryPoint, double StoppLoss, double RiskPercent)

{

      int            Diigit         =SymbolInfoInteger(symbol,SYMBOL_DIGITS);

      double         OneLotValue    =MathPow(10,Diigit);

      

      double         ask            =SymbolInfoDouble("GBPUSD",SYMBOL_ASK);

      

      double         bid            =SymbolInfoDouble(symbol,SYMBOL_BID);

      

      string         BaseCurrency   =SymbolInfoString(symbol,SYMBOL_CURRENCY_BASE);

      string         ProfitCurency  =SymbolInfoString(symbol,SYMBOL_CURRENCY_PROFIT); 

      string         AccountCurency =AccountInfoString(ACCOUNT_CURRENCY);

      

      double         AllowedLoss    =RiskPercent*AccountInfoDouble(ACCOUNT_EQUITY);

      double         LossPoint      =MathAbs(EntryPoint-StoppLoss);

      double         Lotsize;

      

      

      

      

      

      if (ProfitCurency==AccountCurency) 

         { 

         Lotsize=AllowedLoss/LossPoint; 

         Lotsize=NormalizeDouble(Lotsize/OneLotValue,2);

          

         return(Lotsize); 

         }

         

      else if (BaseCurrency==AccountCurency)

         {

         AllowedLoss=ask*AllowedLoss;  //// Allowed loss in Profit currency Example: USDCHF-----> Return allowed loss in CHF

         Lotsize=AllowedLoss/LossPoint; 

         Lotsize=NormalizeDouble(Lotsize/OneLotValue,2); 

         return(Lotsize);

         }

      

         else

         {

            string TransferCurrency=AccountCurency+ProfitCurency;

            ask=SymbolInfoDouble(TransferCurrency,SYMBOL_ASK);

            

            if(ask!=0) 

            {

               AllowedLoss=ask*AllowedLoss;  //// Allowed loss in Profit currency Example: USDCHF-----> Return allowed loss in CHF

               Lotsize=AllowedLoss/LossPoint; 

               Lotsize=NormalizeDouble(Lotsize/OneLotValue,2); 

               return(Lotsize);   

            

            }

            else

            {

               TransferCurrency=ProfitCurency+AccountCurency;

               ask=SymbolInfoDouble(TransferCurrency,SYMBOL_ASK);

               ask=1/ask;

               AllowedLoss=ask*AllowedLoss;  //// Allowed loss in Profit currency Example: USDCHF-----> Return allowed loss in CHF

               Lotsize=AllowedLoss/LossPoint; 

               Lotsize=NormalizeDouble(Lotsize/OneLotValue,2); 

               return(Lotsize);

            

            }

            

            if (ProfitCurency=="JPY") 

               { 

               Lotsize=AllowedLoss*1.5/LossPoint; 

               Lotsize=NormalizeDouble(Lotsize/OneLotValue,2);

                

               return(Lotsize); 

               }

                  

         return Lotsize; 

         }

          


}


Önerilen ürünler
Playback of previously saved data from the order book. Key features: Historical data navigation Adjusting the playback speed with the "---" and "+++" buttons, as well as with the mouse, you can by scrolling the wheel over the area of ​​these buttons and between them Turning Price Centering On and Off Time display accurate to thousandths of a second Attention: This product also needs a utility to save data: https://www.mql5.com/en/market/product/71642
FREE
Helps trader to place order seamlessly  Close mulitple position at a time Place SL or TP for multiple position in a click Place hedge order same time with predefined SL and TP Place multi layer pending order in a click Place martingale layer Be informed about SL and TP in currency Get to know time remaining in current candle Get to know current spread View PnL, Balance, Equity on screen
FREE
Introducing the Moving average crossing template which is an Expert advisor template utility for two moving averages for the the cross over strategy where it enters trades based on the crossing of your specified  moving moving averages. You can select the fast moving average and the slow moving average values of your choice. you can choose your preferred trade volume.  you can  choose your preferred number of trades to execute. you can add your stop loss and take profit join my channel for free
FREE
All what you need before start a trade network connection/broker's/symbols/historical orders benchmarks/currnet orders status 01. symbol's trading privilege 02. order execution mode 03. trade session hours 04. min lot/max lots 05. max pending orders 06. freeze point pending order's distant points (zero is good) 07. Min SL/TP points required by broker if open an order (zero is good) 08. account leverage 09. Margin call open an order must > 100% 10. MarginStopOut forced to close som
FREE
Add a watermark in the background of your charts, containing the Stock Symbol followed by the current Timeframe, and the Symbol Description below it. Have you ever seen videos or screenshots of other platforms, boasting those great looking watermarks, and wondered why your MetaTrader5 doesn't have one? Well, I did... so I tried the very few options available in the Market at the time, but I still wanted to tweak everything exactly to my taste. So I developed my own solution, and now I am proud
FREE
Monkey Lite
Dang Cong Duong
3 (1)
Monkey Lite  offers the following array of features: One-click instant order entry (short or long). Track total current orders and total current profit. Instant Close Buy, Close Sell, Close All button. Utility types Risk management, Graphical objects, Panels. Main features Take Profit and Stop Loss by money (not pip). After the price reached the Take Profit threshold, trailing stop 20% of the current profit. After the price reached the Stop Loss threshold, the orders will be closed immediately.
FREE
A simple button to completely close all existing open trades (both Buy and Sell) on the current chart . Warning : Once the button is pressed, all open trades on the current chart will be deleted immediately without any more questions or dialogue. Use this utility very carefully. We recommend that you do a trial of removing open trades on a demo account first, before trying to use this utility on a real account.
FREE
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. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
Tracking positions using trailing on the Parabolic SAR indicator. It is necessary to allow automated trading in the terminal settings. In testing mode, the utility opens Buy or Sell positions on the first ticks, which allows you to visually observe the given logic, changing the utility parameters. In real mode, the utility does not open positions. Parameters magic  - magic number. If less than 0, positions with any magic number are tracked. only_this_symbol  - only chart symbol. If  false , posi
FREE
The Trade Manager is a visual trade panel that makes it simple to place and manage trades, preventing human errors and enhancing your trading activity. - Very Easy to use - Trade easily from the chart - Trade with precise risk management - Offers different risk management options to calculate appropriate lot size. - A powerful risk and position management approach
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.67 (9)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach.
FREE
这款专为MetaTrader 5设计的EA(Expert Advisor),能够在加载后自动关闭所有图表,并立即从当前图表中自行移除。它适合那些希望快速清理所有图表,并避免手动关闭每个图表的用户。 功能特点: 一次性清理: 加载后立即关闭所有打开的图表。 自动移除: 执行完毕后,EA自动从当前图表中移除,无需手动操作。 快速高效: 适用于快速清理交易环境,特别适合在需要快速重置或结束交易日的情境。 使用说明: 只需将此EA添加到任何一个图表上,它将自动执行关闭所有图表的操作并自行移除。使用前,请确保已保存所有重要的图表数据和设置。 风险提示: 请谨慎使用此EA,以防不小心关闭重要图表。 适用于MetaTrader 5平台。 技术支持: 如有任何技术问题或需求,请联系我以获得帮助。
FREE
Simple Order
Mikhail Nazarenko
5 (3)
Simple order is designed to make placing pending orders as easy and fast as possible. Setting a pending order takes just two steps. 1. Double-click on the price of placing an order, after that a panel with buttons for order names appears. 2. Click on the button of the required order That's it, the pending order is set. If necessary, we adjust the order by dragging, as well as change the sizes of stop loss and take profit. Don't forget to pre-set the size of the stop loss and take profit in the S
FREE
BuyMarket
Pietro Caporale
4.5 (2)
Simple script for Buy by Market Execution on all financial instruments. Inputs Volume - default: 0.10 Deviation - default: 10 points Stoploss - default: 50 points Takeprofit - default: 50 points Comment - default: Order by Market Confirm - default: false Inputs Details Type Order Buy Order is preset. Deviation Maximum deviation from quoted price in points. Stoploss & Takeprofit In points value, be careful that this value will be added to minimum stop allowed by the broker. For example if you
FREE
AvgVolumes
Marco Montemari
5 (2)
This indicator is based on Volumes standard indicator, calculates the average of Volumes based on the last N bars set by users, and if the value of the volume is bigger then a set % respect the average a different color will be used. The indicator is shown in a separate indicator window. This version has now a limitation in setting the % about the threshold. If you are interested to set threshold consider to buy the PRO version ( https://www.mql5.com/en/market/product/35925 ) If you want to use
FREE
Second Level Candles And Alligator Indicators 每12秒产生一个K线,而且自带Alligator指标,对超短线选手交易非常有帮助。程序启动时可能不成功,是因为MT5 MqlTick 数据加载少的原因。可以通过修改显示的数据参数避免,比如display=100,程序正常之后再将参数调大 display=300 。如果数据不正常,也可以采用重新加载的方式解决。 如果您对这个指标有任何建议,请联系作者。  Second Level Candles And Alligator Indicators  produced a candle per 12 seconds,include Alligator, it's helpful to Short-Term Trading。You'd better reload the indicator every start MT5 or change display parameter to reslove data bug. Please attach author when  you had some su
FREE
Exp Assistant 5
Vladislav Andruschenko
4.73 (125)
Otomatik Ayarlama, zararı durdurma, kar alma, takip eden durdurma, başabaş seviyeleri, zararı   sanal olarak   durdurma ve kar almayı etkinleştirme. Exp Assistant,   pozisyonlarınızın bakımını organize etmenize yardımcı olacaktır. Uzman Danışman olarak adlandırılan bu program,   Gerçek veya Sanal'ı   otomatik olarak ayarlamak için tasarlanmıştır.       İşlem yaparken pozisyonlarınız için   Zararı Durdur ve Kar Al   seviyeleri. Expert Advisor'ın tüm işlemlerini grafik üzerinde yer alan kontrol p
FREE
CloseAllPosition
Konstantin Chernov
4.67 (3)
A script for closing positions If you need to quickly close several positions, this script will make all the routine for you! The script does not have any input parameters. Allow AutoTrading before running the script. Usage: Run the script on a chart. If you need to specify the maximal deviation and the number of attempts to close positions, use the script with input parameters https://www.mql5.com/en/market/product/625 You can download MetaTrader 4 version here: https://www.mql5.com/en/market
FREE
OrderMarket
Pietro Caporale
4.5 (2)
Simple script for Order by Market Execution (only Buy or Sell) on all financial instruments. Inputs Buy - default: false Sell - default: false Volume - default: 0.10 Deviation - default: 10 points Stoploss - default: 50 points Takeprofit - default: 50 points Comment - default: Order by Market Confirm - default: false Inputs Details Type Order Buy Order set: just double click on Buy line Sell Order set: just double click on Sell line If you leave false or true both an error will be reported.
FREE
Important Lines
Terence Gronowski
4.88 (26)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of
FREE
FOREXBOB AUTO CLOSER is a very handsome tool for :- Scalping  Correlation Hedging Those who use averaging methods As this utility tool will help you by closing all your running trades when the universal floating P/L reaches a certain value that you will put in inputs. This tool consider all the trades that running on the your account either opened MANUALLY or with help of an EA. Inputs USD - Put numeric value for required profit Group Mode - False Magic No. - Zero (0) to consider manually open
FREE
This EA automatically closes all Open Trades and Pending Orders at your specified Net Profit or Net Loss. The TP and SL for a single trade can easily be set in Meta Trader, on individual basis and on hitting that TP or SL, the trade is automatically closed. However, if you have multiple trades and you want to set a Net TP and Net SL (in terms of profit & loss) for all of them, then Meta Trader cannot help you. Here comes this EA “Net TP Net SL Setter” using which you can set a Net TP and Net SL
FREE
SellMarket
Pietro Caporale
4 (1)
Simple script for Sell by Market Execution on all financial instruments. Inputs Volume - default: 0.10 Deviation - default: 10 points Stoploss - default: 50 points Takeprofit - default: 50 points Comment - default: Order by Market Confirm - default: false Inputs Details Type Order Sell Order is preset. Deviation Maximum deviation from quoted price in points. Stoploss & Takeprofit In points value, be careful that this value will be added to minimum stop allowed by the broker. For example if y
FREE
Утилита Горячие Клавиши. Работает только на неттинговых типах счетов. Позволяет совершать торговые операции без мыши. Удобно использовать для акций, фьючерсов, валютных пар, криптовалют. В совокупности со стаканом получается полноценный скальперский привод. Реализованные команды : ·          покупка по рынку; ·          продажа по рынку; ·          выставление лимитного ордера на покупку с заданным отступом (может быть отрицательным) от цены Бид; ·          выставление лимитного ордера на прод
FREE
MT5 için NAS100 Auto SL ve TP Maker ile tanışın: MetaTrader 5'te Nasdaq 100 piyasasında gezinen yatırımcılar için vazgeçilmez bir yardımcı olan NAS100 Auto SL ve TP Maker ile StopLoss ve TakeProfit ayarlarını bir daha asla kaçırmayın. Bu araç, StopLoss ve TakeProfit seviyelerinin yönetimini otomatikleştirmek için sorunsuz bir çözüm arayanlar için tasarlanmıştır. Temel Özellikler: Zahmetsiz Otomasyon: StopLoss ve/veya TakeProfit olmadan Nasdaq 100 işlemlerini otomatik olarak izler. Kullanı
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carr
FREE
啟用TrailingTrader腳本後 報價視窗的交易品種 將會進行移動止損 設定參數 TrailingDistance 啟動移動的點數 TrailingCallBack 移動止損的回調點數 工作原理 持倉單在獲利的條件下 市價超過設定的點數時 腳本自動設定止損線在市價回調的點數位置 當市價繼續往獲利的方向運行時 止損線會持續往運行方向調整 直到市價回調到止損線時獲利平倉 當同一品種持有多張持倉單時 移動止損會分開運行 當盈利超過一定的範圍時 移動止損線會形成同步狀況 特點 當交易員習慣手動開單 又無法長時間盯盤時 可以啟用移動止損 當持倉單一旦觸發工作 就可以確認該單會在獲利的條件下出場 起用條件 需要使用MT5交易的電腦全天候開機運行 可以啟用腳本後 再同步到官方VPS 此時同步的腳本可以全天候監視交易帳戶
FREE
This is the demo Version of Money and Trade Manager, which can be found here: https://www.mql5.com/en/market/product/58163# The Demo is limited to EUR/USD , but otherwise fully functional. Features: easy positioning of stoploss and takeprofit with horizontal Assistance-lines automatic Volume calculation fixed risk, set by the trader Closing of all trades of one type, with the click of one button (long or short, for this symbol) Creation of pending orders with one click Direct feedback thr
FREE
The indicator highlights in color the places on the chart where the price moves in one direction continuously from the selected number of candles. You can specify the number of points from the beginning of the movement to select only movements from this amount. It can be useful for looking for reversals or sharp impulses. I also recommend purchasing this utility to determine local weekly / monthly trends and support and resistance lines. https://www.mql5.com/en/market/product/61401
FREE
VR Renk Seviyeleri, trend çizgisi, dikdörtgen ve metin gibi unsurları kullanarak teknik analiz uygulayanlar için kullanışlı bir araçtır. Grafiğe doğrudan metin eklemek ve ekran görüntüsü almak mümkündür. Ayarlar, set dosyaları, demo versiyonları, talimatlar, problem çözme, adresinden edinilebilir. [Blog] İncelemeleri şu adresten okuyabilir veya yazabilirsiniz: [bağlantı] Sürümü [MetaTrader 4] Göstergeyle çalışma tek tıklamayla gerçekleştirilir. Bunu yapmak için, çizginin bulunduğu düğmeye tı
FREE
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Trade Assistant MT5
Evgeniy Kravchenko
4.4 (172)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Attention, the application does not work in the strategy tester. Manual, Description, Download demo Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics before opening.   Risk management  - The risk
Fiyatın saniyeler içinde değiştiği finansal piyasalarda emirleri vermekte aynı şekilde kolay olması gerektiğini düşünüyor musunuz? Metatrader programında her emir açmak istediğinizde emir fiyatını, zararı durdur emrini, kar al emrini ve işlem hacmini gireceğini pencereyi açmak zorundasınız. Finansal marketlerde işlem yaparken sermaye yönetimi sermayenizi doğru yönetmek için çok önemlidir. Bunun için işlem açmadan önce doğru işlem hacmini hesaplamanız gerekir.  Bu hesaplamaları sizin için yapabil
Local Trade Copier EA MT5
Juvenille Emperor Limited
5 (63)
Local Trade Copier EA MT5   ile olağanüstü hızlı işlem kopyalama deneyimi yaşayın. Kolay 1 dakikalık kurulumuyla bu işlem kopyalayıcısı, aynı Windows bilgisayarda veya Windows VPS'te birden fazla MetaTrader terminali arasında işlemleri kopyalamanıza olanak tanır ve 0.5 saniyenin altındaki şimşek hızında kopyalama hızları sunar. Başlangıç seviyesinde veya profesyonel bir tüccar olsanız da,   Local Trade Copier EA MT5 , spesifik ihtiyaçlarınıza göre özelleştirmek için geniş bir seçenek yelpazesi s
TradePanel MT5
Alfiya Fazylova
4.86 (114)
Ticaret Paneli çok işlevli bir ticaret asistanıdır. Uygulama, manuel ticaret için 50'den fazla işlev içerir ve çoğu ticaret eylemini otomatikleştirmenize olanak tanır. Satın almadan önce Demo sürümünü bir demo hesabında test edebilirsiniz. Demo burada . Talimatların tamamı burada . Ticaret. Tek tıklamayla temel alım satım işlemlerini gerçekleştirmenize olanak tanır: Bekleyen emirleri ve pozisyonları açın. Bekleyen emirleri ve pozisyonları kapatın. Pozisyonların tersine çevrilmesi (SATIN KAPATIN
MT5 to Telegram Signal Provider , hesabınızı bir sinyal sağlayıcı haline getirerek belirtilen sinyalleri Telegram'ın sohbetine, kanalına veya grubuna göndermeyi sağlayan kullanımı kolay, tamamen özelleştirilebilir bir araçtır. Rakip ürünlerin çoğunun aksine, DLL içe aktarması yapmaz. [ Demo ] [ Kılavuz ] [ MT4 Versiyonu ] [ Discord Versiyonu ] [ Telegram Kanalı ] Kurulum Adım adım bir kullanıcı kılavuzu mevcuttur. Telegram API'si hakkında bilgi gerekmemektedir; ihtiyacınız olan her şey gelişti
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
Riskinizi otomatik olarak hesaplarken işlemlere hızlı bir şekilde girip çıkmanıza yardımcı olacak Ticaret Yöneticisi. Aşırı Ticaret, İntikam Ticareti ve Duygusal Ticaretten korunmanıza yardımcı olacak özellikler içerir. İşlemler otomatik olarak yönetilebilir ve hesap performans ölçümleri bir grafikte görselleştirilebilir. Bu özellikler, bu paneli tüm manuel yatırımcılar için ideal kılar ve MetaTrader 5 platformunun geliştirilmesine yardımcı olur. Çoklu Dil desteği. MT4 Sürümü  |  Kullanım Kılavu
Strategy Builder offers an incredible amount of functionality. It combines a trade panel with configurable automation (covert indicators into an EA), real-time statistics (profit & draw down) plus automatic optimization of SL, TP/exit, trading hours, indicator inputs. Multiple indicators can be combined into an single alert/trade signal and can include custom indicators, even if just have ex4 file or purchased from Market. The system is easily configured via a CONFIG button and associated pop-u
Mentfx Mmanage mt5
Anton Jere Calmes
4.43 (7)
The added video will showcase all functionality, effectiveness, and uses of the trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates al
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version   right now. You can find   deta
OrderManager 'ı Tanıtıyoruz: MT5 için Devrim Niteliğinde Bir Yardımcı Program Yepyeni Order Manager yardımcı programı ile MetaTrader 5 için işlemlerinizi bir profesyonel gibi yönetin. Basitlik ve kullanım kolaylığı göz önünde bulundurularak tasarlanmış olan Order Manager, her işlemle ilişkilendirilen riski kolayca tanımlamanıza ve görselleştirmenize olanak tanır, böylece bilinçli kararlar alabilir ve ticaret stratejinizi optimize edebilirsiniz. OrderManager hakkında daha fazla bilgi için lütfen
-25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading w
Üye olduğunuz herhangi bir kanaldan (özel ve kısıtlı olanlar dahil) sinyalleri doğrudan MT5'inize kopyalayın.  Bu araç, kullanıcıyı göz önünde bulundurarak tasarlanmış olup işlemleri yönetmek ve izlemek için ihtiyacınız olan birçok özelliği sunar. Bu ürün, kullanıcı dostu ve görsel olarak çekici bir arayüzde sunulmaktadır. Ayarlarınızı özelleştirin ve ürünü dakikalar içinde kullanmaya başlayın! Kullanıcı Kılavuzu + Demo  | MT4 Sürümü | Discord Sürümü Demo denemek isterseniz lütfen kullanıcı k
Trade copier MT5
Alfiya Fazylova
4.37 (27)
Trade Copier, ticaret hesapları arasındaki işlemleri kopyalamak ve senkronize etmek için tasarlanmış profesyonel bir yardımcı programdır. Kopyalama, tedarikçinin hesabından/terminalinden alıcının aynı bilgisayarda veya vps'de kurulu olan hesabına/terminaline gerçekleşir. Satın almadan önce demo sürümünü bir demo hesabında test edebilirsiniz. Demo versiyonu burada . Tüm talimatlar burada . Ana işlevler ve avantajlar: Emirlerin kopyalanmasını destekler: МТ5> МТ5, МТ4> МТ5, МТ5> МТ4. Emirlerin kopy
The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overri
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely between multiple MT4/MT5 accounts at different computers/locations over internet. This is an ideal solution for signal provider, who want to share his trade with the others globally on his own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be able to receive the sig
-25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials, manuals, DEMO download   here .   Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extend
MT4 to Discord Signal Provider , ticaret sinyallerini doğrudan Discord'a göndermek için tasarlanmış kullanıcı dostu ve tamamen özelleştirilebilir bir araçtır. Bu araç, ticaret hesabınızı etkili bir sinyal sağlayıcısına dönüştürür. Mesaj formatlarını tarzınıza uyacak şekilde özelleştirin! Kolay kullanım için önceden tasarlanmış şablonlardan seçim yapın ve hangi mesaj öğelerini dahil etmek veya çıkarmak istediğinize karar verin. [ Demo ] [ Kullanım Kılavuzu ] [ MT4 Versiyonu ] [ Telegram Versiyonu
DrawDown Limiter
Haidar, Lionel Haj Ali
5 (17)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow develop strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA   in this market place. You can use as trade
EA DIDI Alert – ATM Systems için sayaç okuyucu Finansal piyasalardaki en iyi ticaret fırsatlarından yararlanmanıza yardımcı olacak araçlar mı arıyorsunuz? Daha sonra, ATM Systems tarafından sunulan DIDI Alert – Agulhadas Detector, bu stratejiye adanmış diğer danışmanların aksine, Didi Aguiar'ın güçlü İğne Kurulumu ticaret stratejisini DIDI INDEX ile güçlendiren piyasadaki tek danışmandır. Kaynaklarımızın çeşitli olduğunu bilmemiz gerekiyor. Çok eksiksiz, işlevsel ve pratik. Bollinger Band ge
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Build
1 tıklama ile ticaret için Ticaret Paneli.   Pozisyonlar ve emirlerle çalışmak!   Grafikten veya klavyeden alım satım. Alım satım panelimizi kullanarak, grafikten tek bir tıklamayla alım satım yapabilir ve alım satım işlemlerini standart MetaTrader kontrolünden 30 kat daha hızlı gerçekleştirebilirsiniz. Bir tüccar için hayatı kolaylaştıran ve bir tüccarın ticaret faaliyetlerini çok daha hızlı ve daha rahat gerçekleştirmesine yardımcı olan parametrelerin ve işlevlerin otomatik hesaplamaları. Gra
UTM Manager, hızlı ve verimli ticaret gerçekleştirme olanağı sunan sezgisel ve kullanımı kolay bir araçtır. Öne çıkan özelliklerden biri, spreadleri tamamen göz ardı ederek mum fiyatı üzerinden işlem yapmanızı sağlayan "Yayılmayı Yoksay" modudur (örneğin, LTF'de daha yüksek spread çiftlerinde işlem yapmanızı sağlar, spread nedeniyle alım satımların dışında kalmaktan kaçınır). UTM Manager'ın diğer bir önemli yönü, benzersiz yerel ticaret kopyalayıcısıdır ve her bir aracı kurumda farklı ticaret st
Seconds Chart — timeframes in seconds for MetaTrader 5. The utility allows you to create charts in the MetaTrader 5 terminal with a timeframe in seconds. The timeframe on such a chart is set in seconds, not in minutes or hours. Thus, you can create charts with a timeframe less than M1. For example, S15 is a timeframe with a period of 15 seconds. You can apply indicators, Expert Advisors and scripts to the resulting chart. You get a fully functional chart on which you can work just as well as on
Trade Manager EA for MT5
Odaine Ramon Mcmillan
4.5 (10)
50% Off Today Only! Price Goes Back Up at 11 PM (EST) Marketkeys Trade Manager EA for MT5: Your Pathway to Forex Trading Mastery What Traders Are Saying: "Much better than lots of other trade managers I've tested..." – R Vdr "Saves me time from manually calculating lots sizes and risks...amazing support." – Richard Obi Efficiency and precision are paramount in Forex trading. Marketkeys Trade Manager EA for MT5 offers just that - a seamless interface combined with robust risk management tools
News Trade EA MT5
Konstantin Kulikov
4.55 (11)
Birkaç yıldır kullandığım çok yararlı bir robotu tanıtıyorum. Hem yarı otomatik hem de tam otomatik modlarda kullanılabilir. Program, ekonomik takvim haberlerinde esnek ticaret ayarlarını içeriyor. Stratejiler test cihazında kontrol edilemez. Sadece gerçek bir iş. Terminal ayarlarında, haberler sitesini izin verilen URL'ler listesine eklemeniz gerekir. Servisler > Araçlar > Danışmanlar'a tıklayın. "Aşağıdaki URL'ler için WebRequest'e İzin Ver:" kutucuğunu işaretle. Aşağıdakini ekleyin (boşluğ
Trade Assistant 38 in 1
Makarii Gubaydullin
4.87 (15)
Çok amaçlı araçlar: Lot hesaplayıcı, fiyat analizi, risk/ödül oranı, pozisyon yönetici, arz  talep bölgelerini de içeren 65'den fazla fonksiyon Deneme sürümü   |   Kullanım Kılavuzu   |   MT4 Yardımcı program, strateji test cihazında çalışmaz: Ürünü test etmek için Demo Sürümünü BURADAN indirebilirsiniz. Sorularınız için iletişim İşlem sürecinizi kolaylaştırın, hızlandırın ve otomatikleştirin. Terminalin standart  özelliklerini bu program ile genişletin Yeni işlem açma : Lot / Risk / Risk/Ödül
Adam FTMO MT5
Vyacheslav Izvarin
5 (1)
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 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------
Yazarın diğer ürünleri
This Expert advisor does not do any trade, but it scans the whole symbols in your market watch and scan each shares one by one in different timeframes and at the end it shows you which symbol in which timeframe has a powerful engulfing candle. Furthermore, you can define a MA period and a high and low RSI limit, and it shows you which symbols in which timeframe is going to cross the adjusted moving average, and which symbol in which timeframe is going to cross high or low limit of the RSI.  The
FREE
Filtrele:
İnceleme yok
İncelemeye yanıt