• 概要
  • レビュー
  • コメント (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; 

         }

          


}


おすすめのプロダクト
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)
自動設定、ストップロス、テイクプロフィット、トレーリングストップ、損益分岐点レベルにより、 仮想 ストップロスとテイクプロフィットが可能になります。 Exp Assistant は、 ポジションの維持を計画するのに役立ちます。 このプログラムである Expert Advisor は、 リアルまたはバーチャルを 自動的に設定するように設計されています。     取引中のポジションの ストップロスとテイクプロフィット のレベル。 Expert Advisor のすべての操作は、チャート上のコントロール パネルから簡単に管理できます。 オープンポジションの ストップロス、テイクプロフィット、 トレーリングストップ 、 損益 分岐点 の設定が難しい場合 、または手動で取引したい場合は、アシスタントを使用できます。 取引のストップロスとテイクプロフィットの設定、トレーリングストップのオン、必要に応じてストップロスを損益分岐点に移動するなど、必要なアクションが自動的に実行されます。 アシスタントには、 パラボリック Sar インジケーターに基づくトレーリング ストップ機能も備えています。 MT4
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用NAS100 Auto SL and TP Makerをご紹介します: MetaTrader5でナスダック100市場をナビゲートするトレーダーにとって不可欠なアシスタントであるNAS100オートSLおよびTPメーカーで、ストップロスおよびテイクプロフィットの設定をもう見逃すことはありません。このツールは、ストップロスとテイクプロフィットのレベル管理を自動化するシームレスなソリューションを求める方々のために設計されています。 主な特徴 簡単な自動化: ストップロスやテイクプロフィットのないナスダック100取引を自動的に監視します。 ユーザーが構成した設定に基づいてレベルを動的に調整します。 注文タイプの多様性: Nasdaq100の成行注文と未決済注文の両方に対応。 MetaTrader 5で利用可能なさまざまな注文タイプをサポートします。 カスタマイズされた設定: ユーザーフレンドリーなパラメータ設定により、トラッキング設定とストップロス/テイクプロフィットレベルのカスタマイズが可能です。 柔軟な範囲: 実行する特定のNAS100商品または取引されるす
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 カラー レベルは、トレンドライン、四角形、テキストなどの要素を使用してテクニカル分析を適用する人にとって便利なツールです。グラフにテキストを直接追加したり、スクリーンショットを撮ったりすることができます。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 4] インジケーターの操作は ワンクリック で実行できます。これを行うには、線の付いたボタンをクリックすると、カーソルの下に傾向線が表示されます。次に、カーソルを移動して 線の位置 を選択し、もう一度クリックして修正します。 インジケーター の特徴は、スタイルと色のすべての変更が自動的に保存され、その後すべての 新しく作成された グラフィック オブジェクトに適用されることです。 このインジケーターには、異なるスタイルのトレンド ラインを設定するための 2 つの独立したボタン、異なるスタイルの 2 つの独立した四角形、独自のスタイルを持つ 1 つのテキスト フィールド、およびスクリーンショ
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.4 (172)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 注意、アプリケーションはストラテジーテスターでは機能しません。 説明ページからデモ版をダウンロードできます  Manual, Description, Download demo ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、
価格が一瞬で変わる可能性のある市場では、注文はできるだけ簡単にすべきだと思いますか? Metatraderでは、注文を開くたびに、開始価格を入力し、損失を止めて利益を得るウィンドウと、取引サイズを開く必要があります。金融市場の取引では、初期預金を維持し、それを増やすために資本管理が不可欠です。それで、あなたが注文をしたいとき、あなたはおそらくあなたがどれくらいの大きさの取引を開くべきか疑問に思いますか?この単一の取引であなたの預金の何パーセントを危険にさらすべきですか?この取引からどれだけの利益を得ることができますか?また、リスクに対する利益の比率はどのくらいですか?トレードサイズを設定する前に、トレードサイズがどうあるべきかという質問に対する答えを得るために必要な計算を行います。 これらすべてを自動的に行うツールがあると想像してみてください。チャートを開き、市場分析を行い、エントリーポイント、ディフェンスポイント(ストップロス)、ターゲット(テイクプロフィット)を水平線でマークし、最後にリスクのレベルを定義します。利用可能な資本の%として、このトランザクションで負担することができ、こ
Local Trade Copier EA MT5
Juvenille Emperor Limited
5 (63)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動し
TradePanel MT5
Alfiya Fazylova
4.86 (114)
Trade Panel は、多機能の取引アシスタントです。 このアプリケーションには手動取引用の 50 以上の機能が含まれており、ほとんどの取引アクションを自動化できます。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモは こちら から。 詳しい手順は こちら をご覧ください。 アプリケーションは、相互接続された一連のパネルとして設計されています。 取引パネル 基本的な取引操作を実行するように設計されています: 未決の注文とポジションをオープンする 未決の注文とポジションを決済する 立場の逆転。 位置をロックします。 ワンクリックですべてのポジションの部分決済を実行します。 ワンクリックで、すべてのポジションの利食いやストップロスを共通のレベルに設定します。 ワンクリックで、すべてのポジションのストップロスを損益分岐点レベルに設定します。 注文とポジションをオープンするときは、次のことができます。 確立されたリスクに応じて取引量の自動計算を使用します。 ワンクリックで複数の注文を開きます。 計算された数量を複数の注文に分割します(計算された数量が注文あたりの最
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャートのスクリーンショットが含まれます 追加の
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
Trade copier MT5
Alfiya Fazylova
4.37 (27)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位置が失われることはありません。 コピーするシンボルを選択できます。また、受信者のシンボルを置き換えることもできます(例:EURUSD> USDJPY)。 バックコピーをサポートします。 特定の注文のみのコピーを有効にする機能。 取引開始価格の最大差と最大遅延時間を
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
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナ
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
-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
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
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
OrderManager をご紹介:MT5用の革新的なユーティリティ 新しく設計されたOrder Managerユーティリティを使用して、MetaTrader 5での取引をプロフェッショナルなものにしましょう。シンプルさと使いやすさに焦点を当てたこのユーティリティは、各取引に関連するリスクを簡単に定義し、視覚化できます。これにより、情報に基づいた意思決定が可能になり、取引戦略を最適化できます。OrderManagerに関する詳細は、マニュアルをご参照ください。 [ マニュアル ] [ MT4 バージョン ] [ Telegram チャンネル ] 主な特長: リスク管理:取引のリスクを素早く簡単に定義し、より良い意思決定を行い、取引パフォーマンスを向上させます。 視覚表現:オープンなポジションとそれに関連するリスクをグラフィカルに表示し、明瞭かつ簡潔な理解が可能です。 注文変更:数回のクリックで注文を簡単に変更またはクローズし、取引プロセスを効率化し、貴重な時間を節約します。 手のひらの上の最新ニュース:ボタン一つで最新の市場ニュースに常にアクセスできます。 MT5トレーダーにと
MT5 to Discord Signal Provider は、Discord へ直接トレーディングシグナルを送信するために設計された、使いやすく完全にカスタマイズ可能なユーティリティです。このツールは、あなたのトレーディングアカウントを効率的なシグナルプロバイダーに変えます。 スタイルに合わせてメッセージフォーマットをカスタマイズ!利便性を考え、事前にデザインされたテンプレートから選択し、メッセージのどの要素を含めるか除外するかを選択できます。 [ デモ ] [ マニュアル ] [ MT4 バージョン ] [ Telegram バージョン ] セットアップ 簡単なセットアップのために、私たちの詳細な ユーザーガイド に従ってください。 Discord API の事前知識は必要ありません。必要なツールはすべて提供されます。 主な特徴 購読者の更新のための注文詳細をカスタマイズ。 ブロンズ、シルバー、ゴールドなど、各レベルで異なるシグナルアクセスを提供する階層的サブスクリプションモデルを実装。 注文が実行されたチャートのスクリーンショットを添付。 これらのスクリーンショットに表
Trade Assistant 38 in 1
Makarii Gubaydullin
4.87 (15)
多機能ツール 搭載機能: ロット計算機、プライスアクション、リスク/リワードレシオ、トレードマネージャー、需要供給ゾーンなどをはじめ65以上の機能。 バージョ:デモ版   |   ユーザーマニュアル   |    MT5版 このユーティリティはストラテジー テスターでは機能しません。 ここからデモ   バージョンをダウンロードして製品をテストできます。 ご不明な点や改善提案、バグの発見などございましたら、 連絡してください 。 取引プロセスを簡素化、高速化、自動化します。このダッシュボードで標準端末機能を拡張します 1. 新しい取引を開始します : ロット / リスク / RR の計算 1. Lot計算機(リスクサイズに基づく取引量計算 2. リスク計算機(ロットサイズに基づくリスク量) 3. リスク/リワードレシオ (R/R) 4. 注文のアクティベーション トリガー + Buy StopLimit / Sell StopLimit 5. 仮想 SL / TP レベル (隠しSL、TP: ブローカーには見えない) 6.  Smart SL / エントリー レベル: バ
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
-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
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
UTM Manager は、迅速かつ効率的な取引執行を提供する直感的で使いやすいツールです。際立った機能の 1 つは、「スプレッドを無視」モードです。これにより、スプレッドを完全に無視して、ローソク足の価格で取引できるようになります (たとえば、LTF でより高いスプレッドのペアを取引でき、スプレッドによって取引から除外されるのを回避できます)。 UTM Manager のもう 1 つの重要な側面は、独自のローカル取引コピー機であり、各ブローカーで異なる取引戦略と設定 (たとえば、さまざまな TP、BE、およびリスク ルール) を柔軟に実行できます。 取引執行: 迅速かつ効率的な取引執行: チャート上のエントリー価格とストップロス価格をクリックして簡単に取引を入力するか、ワンクリックの固定ストップロスサイズ機能を使用します。 自動ロットサイズ計算: ロットは事前定義されたリスク設定に基づいて計算され、ドラッグによってポジションが変更されると再計算されます。 1 つまたは複数のポジションを同時に処理できる能力。 利益確定と損益分岐点: 柔軟なテイクプロフィット設定: 特定のリスク対報
Expert advisor は 、 資産 を 監視 し 、 パラメーター の 入力 に 従っ て ルール に こと で 、 予期 し ない 損失 アカウント アカウント を ます ルール に 違反 と 、 、 は 取引 を し ます。 特定 の または 金銭 金銭 金銭 金銭 金銭 金銭 金銭 金銭 金銭 金銭 HIP損失ですべての取引をクローズするか、特定のパーセンテージまたは金銭的利益でクローズするように EA を設定できます。 このユーティリティは、プロップ トレーディング チャレンジでドローダウンを低く抑え、エクイティを保護するのに非常に役立ちます。 私の信号と他の製品はここにあります 応援、プレゼントは購入後ご連絡ください。 パラメーター: 1ペア限定:運用したいペアにEquity Guardを貼る アカウントのすべてのペアについて: Equity Shield TPアットマネー(0:OFF):TPインマネー SL アット マネー (0: オフ): SL アット マネー TP at % at account Equity: TP は、口座の X SL at % acc
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
ワンクリックで取引できるトレーディングパネル。ポジションと注文の操作!チャートまたはキーボードから取引。 当社の取引パネルを使用すると、チャートから直接シングルクリックで取引を実行でき、標準の MetaTrader コントロールよりも 30 倍高速に取引操作を実行できます。 パラメータと関数の自動計算により、トレーダーにとって取引がより速く、より便利になります。 グラフィックのヒント、情報ラベル、取引取引に関する完全な情報はチャート MetaTrader にあります。 MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 手動取引用の取引パネル。チャート(チャートウィンドウ)またはキーボードから取引できます。  開閉、リバース、ロックポジションと注文を処理する МetaТrader5 のメインオーダーのトレーディングコントロールパネル:売買、売却、売却、売却、売却、閉じる、削除、修正、トレーリングストップ、ストップロス、takep
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
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
T Manager Plus, the ultimate trade management solution designed by traders for traders. If you are searching for a simple and efficient trade panel, trade manager, or trade assistant, you are at the right place. T Manager Plus includes advanced charting utilities with a single goal to help traders analyze, plan, execute, and manage their trades on a single platform. The market contains a diverse number of those tools, but   this one is designed by traders for traders . I designed this tool, an
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.76 (17)
MT5のトレードコピー機は、МetaТrader5プラットフォームのトレードコピー機です 。 それは間の 外国為替取引をコピーします   任意のは 、MT5 - MT5、MT4 - MT5   COPYLOT MT5版の アカウント (またはを MT4 - MT4   MT5 - MT4   COPYLOT MT4版用) 信頼できるコピー機! MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 МТ4ターミナルでトレードをコピーすることもできます(   МТ4   -   МТ4、МТ5   -   МТ4   ):   MT4のCOPYLOT CLIENT このバージョンには、端末間 МТ5   -   МТ5、МТ4   -   МТ5が含まれ ます。 ディールコピー機は、2/3/10端末間でディール/ポジションをコピーするために作成されます。 デモ口座と投資口座からのコピーがサポートされています。 プログラムは、複数の端末
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 --------------------
このプログラムを使用すると、非常に使いやすいユーザーインターフェースを使用して、MetaTraderアカウントからすべての取引を直接Notionにエクスポートできます。 MT4バージョン  |  ユーザーガイド + デモ 開始するには、ユーザーガイドを使用してNotionテンプレートをダウンロードしてください。 デモをご希望の場合は、ユーザーガイドにアクセスしてください。ストラテジーテスターでは機能しません! 主な機能 取引アカウントからすべての取引をNotionにエクスポート 実行中の取引および保留中の注文をNotionにエクスポートし、更新 テンプレートを作成する 前日からの取引をエクスポート 前週からの取引をエクスポート 前月からの取引をエクスポート カスタム時間範囲からの取引をエクスポート 新しいクローズされた取引をすべて自動的にNotionに送信 エクスポートに含めるフィールドを選択します。注文タイプ、ボリューム、オープン時間、クローズ時間など 開始方法 上記のユーザーガイドに移動するか、EAを起動して「接続ヘルプを取得」をクリックします 接続後、「開始:すべての取引
作者のその他のプロダクト
このエキスパートアドバイザーは取引を行いませんが、マーケットウォッチ内のシンボル全体をスキャンし、異なる時間枠で各株を 1 つずつスキャンし、最後に、どの時間枠のどのシンボルが強力な巻き込みローソク足を持っているかを示します。 さらに、MA 期間と RSI の上限と下限を定義でき、どのタイムフレームのどのシンボルが調整済み移動平均を超えるか、また、どのタイムフレームのどのシンボルが調整移動平均の上限または下限を超えるかが表示されます。 RSI。 Kono ekisupātoadobaizā wa torihiki o okonaimasenga, mākettou~otchi-nai no shinboru zentai o sukyan shi, kotonaru jikan-waku de kaku kabu o 1-tsu zutsu sukyan shi, saigo ni, dono toki-waku no dono shinboru ga kyōryokuna makikomi rōsoku ashi o motte iru ka o shimeshimasu.
FREE
フィルタ:
レビューなし
レビューに返信