Info Exporter MT5

Info Exporter MT5は、ターミナル情報、アカウント情報、取引履歴、注文履歴をローカルCSVファイルへエクスポートし、メールを送信したり、Apps ScriptでデプロイされたURLを使用してGoogleスプレッドシートに直接エクスポートしたりできます。 CSVへのエクスポート、メールを使用したエクスポート、Googleスプレッドシートへのエクスポートから選択できます。また、エクスポートしたファイル名やスプレッドシート名を変更することもできます。 使用する入力パラメータ:

export terminal informations? : 端末情報をエクスポートするかどうかを選択します。値は true または false に変更できます。
terminal info file or sheet name : デフォルトは「Terminal_Info」ですが、入力プロンプトで変更できます。
export historical deals? : 取引履歴をエクスポートするかどうかを選択します。値は true または false に変更できます。デフォルトは false で、エクスポートしません。
history deals file or sheet name : デフォルトは「History_Deals」ですが、入力プロンプトで変更できます。
export historical orders? : 注文履歴をエクスポートするかどうかを選択します。値は true または false に変更できます。デフォルトは false で、エクスポートしません。
history orders file or sheet name : デフォルトは「History_Orders」ですが、入力プロンプトで変更できます。
export account informations? : アカウント情報をエクスポートするかどうかを選択します。値は true または false に変更できます。デフォルトは false で、エクスポートしません。
account info file or sheet name : デフォルトは「Account_Info」ですが、入力プロンプトで値を変更できます。
do you want to write to file? : 有効なデータを csv ファイルにエクスポートするかどうかを選択します。デフォルトは false で、書き込まないことを意味します。
do you want to send informations to email? : 有効なデータをメールにエクスポートするかどうかを選択します。デフォルトは false で、メールを送信しません。
do you want to export to Google sheet? : 有効なデータを Google スプレッドシートにエクスポートするかどうかを指定するオプション。デフォルトは false で、Google スプレッドシートに書き込まないようにします。
Apps Script deployed url : デプロイされた Apps ScriptURL


実際に動作する Apps Script のコードを以下に示します(doPost 関数にコピー&ペーストするだけです)。

function doPost(e) {
  try {
    // Validate input
    if (!e || !e.postData || !e.postData.contents) {
      throw new Error("no Input data found");
    }

    // Parse JSON safely
    const json = JSON.parse(e.postData.contents);
    const sheetName = json.sheetName || "Sheet1";

    // Get sheet (with error handling)
    const spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
    var sheet = spreadsheet.getSheetByName(sheetName);
    if (!sheet) {
      sheet = spreadsheet.insertSheet(sheetName);
    }
    
    // formatting data to be written in sheet
    var terminalInfo = json.data.split("#;#");
    var insertingData = [];
    for(var i = 0; i < terminalInfo.length; i++) {
      insertingData.push(terminalInfo[i].split("#:#"))
    }
    var startRow = 1;
    var startColumn = 1;
    var numRows = insertingData.length;
    var numColumns = insertingData[0].length;
    var range = sheet.getRange(startRow, startColumn, numRows, numColumns);

    // Overwrite the rows with the new data
    range.setValues(insertingData);


    // Return success
    return ContentService.createTextOutput(JSON.stringify({
      status: "success",
      message: "Data written to sheet"
    })).setMimeType(ContentService.MimeType.JSON);

  } catch (err) {
    // Return error details
    return ContentService.createTextOutput(JSON.stringify({
      status: "error",
      message: err.message
    })).setMimeType(ContentService.MimeType.JSON);
  }
}


おすすめのプロダクト
Orange Indicator by Quant Atlas Creator:  https://www.quant-atlas.com/ Orange Indicator is a clean reversal focused indicator for MetaTrader 5, designed to highlight potential turning points directly on the chart using simple orange buy and sell markers. The indicator focuses on moments where price may be transitioning out of short term exhaustion and into a possible reaction phase. When a bullish setup appears, an orange upward triangle is displayed below the candle. When a bearish setup appear
FREE
Limiter Drawdown EA – Automatic Account Protection for MetaTrader 5 Description Limiter Drawdown EA is a lightweight risk management tool for MetaTrader 5. It monitors your account drawdown in real time and will automatically close all open trades once the threshold you define is reached. This provides a reliable safeguard for any trading strategy. Main Functions Monitors equity versus balance continuously Closes all positions when your chosen drawdown percentage is reached Optionally removes
FREE
Cable Hunter EA
Mathis Philippe Jean Deroy
Cable Hunter EA Turtle Soup Strategy — Counter-breakout + RSI Divergence | GBPUSD M15 Profit Factor Max Drawdown Annual Return Walk-Forward IS/OOS 1.67 5% ~15%/year 1.51 / 1.53 Compatible: GBPUSD M15 | All MT5 brokers | FTMO / Prop firms | VPS 1. Strategy Description Cable Hunter EA is based on the Turtle Soup strategy, a counter-breakout approach that exploits false breakouts of swing levels. Markets regularly trap traders who follow classic breakouts. Cable Hunter detects these traps and trade
SPECIAL ANNOUNCEMENT: Get the Ultimate Trading Suite! Before you grab this utility, did you know? The LogicLadder Visual Trade Planner is so powerful that it serves as the core visual execution engine for my flagship MT5 trading systems! If you are looking for a massive, all-in-one trading dashboard, advanced trade management, or strict prop-firm guardrails, you can get this exact visual planner already included inside my premium and free full-suite EAs: Pro LTS TradeDashboard MT5 (Paid
FREE
MetaTrader 5 用 RiskFrame Trade Manager チャート上で完全な取引プランを構築し、注文がブローカーへ送られる前に検証し、同じパネルからポジションを管理します。 RiskFrame は MetaTrader 5 用の手動取引プランニング、発注、ポジション管理ユーティリティです。独自の相場判断を持つ裁量トレーダーが、アイデアをより明確に注文へ変換できるよう設計されています。 Entry、Stop Loss、Take Profit、必要に応じて TP2 をチャート上に配置します。RiskFrame は選択したリスクからロットを計算し、予定リスクと想定結果を表示し、送信前に取引を検証し、同じ画面からポジションを管理できます。 RiskFrame はシグナルを生成せず、独立して売買しません。判断はトレーダーが行い、RiskFrame は準備、検証、実行、管理を支援します。 導入価格:2026年7月31日まで39米ドルです。 2026年8月1日に49米ドルへ値上げします。 マニュアル: RiskFrame の完全マニュアルを開く 実行前に完全なプランを確認 Vi
This program is designed to download economic calendar news events for a specified country over a selected date range, allowing traders to analyze and incorporate important economic data into their trading strategies. By specifying both a start and end date, as well as a country code, the program retrieves relevant news events within the defined period and exports them to a CSV file for easy review and analysis. This tool helps traders stay informed about scheduled economic events that may impac
FREE
This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
By :Rapid Growth  Ea. 1.0     Positive Grid System With New Logic and The Best R/R Ratio. You Can Only lose on The First trade (The percentage That You Choose), On The Rest of The Top-ups you will BrakeEven. In
Ea does not use martingale or grid and has a stop loss for every position.  Symbols: EURCHF, EURCAD, USDCHF and other. Time frame: M15 Best results on EURCAD M15. Live signals and other products here -  https://www.mql5.com/ru/users/leron34/seller#products The EA should run on a VPS continuously without interruption.  Multicurrency advisor. You can enter pairs in the EA settings for tests. I recommend the default settings. You can install an adviser on any pair on M15. The EA has a news filter
概要 このインジケーターは、クラシックな ドンチャンチャネル を強化したバージョンで、実践的なトレード機能を追加しています。 標準の3本線(上限、下限、中央線)に加え、 ブレイクアウト を検出し、チャート上に矢印で視覚的に表示します。また、チャートを見やすくするために、 現在のトレンド方向と逆側のラインのみを表示 します。 インジケーターの機能: 視覚的シグナル :ブレイクアウト時にカラフルな矢印を表示 自動通知 :ポップアップ、プッシュ通知、Eメール RSIフィルター :市場の相対的な強弱に基づいてシグナルを検証 カスタマイズ可能 :色、ラインの太さ、矢印コード、RSI閾値など 動作原理 ドンチャンチャネルは次のように計算します: 上限線 :直近N本のクローズ済みローソク足の最高値 下限線 :直近N本のクローズ済みローソク足の最安値 中央線 :最高値と最安値の平均値 上方ブレイクアウト は終値が上限線を超えたときに発生し、 下方ブレイクアウト は終値が下限線を下回ったときに発生します。 インジケーターは以下を行います: 3本のドンチャンラインを描画 方向転換後の最初のブレイクアウト
FREE
Get Economic Calendar History Script is an economic calendar data downloader. The time of the Economic Calendar is based on your broker's time, so if you are going to use the same calendar history file on different brokers, make sure their times are the same. The economic calendar history is organized as follows: Time: Date and time of the news. Importance: Degree of Possible impact of the news on the market. Currency: Currency. Country: Country. Description: Description of the news. Peri
FREE
Smart FVG Stats
- Md Rashidul Hasan
5 (1)
The  Smart FVG Statistics Indicator  is a powerful MetaTrader 5 tool designed to automatically identify, track, and analyze Fair Value Gaps (FVGs) on your charts. Love it? Hate it? Let me know in a review! Feature requests and ideas for new tools are highly appreciated. :) Try "The AUDCAD Trader": https://www.mql5.com/en/market/product/151841 Key Features Advanced  Fair Value Gap  Detection Automatic Identification : Automatically scans for both bullish and bearish FVGs across specified histo
FREE
Margin Tick Ratio — margin efficiency analysis for all broker's instruments Margin Tick Ratio is a script for MetaTrader 5 that runs through your broker's tools in one run and answers a practical question: how much "tick" profit do you get for each unit of collateral, and how expensive is the entry spread. The script does not trade. It collects data, ranks tools by efficiency, and generates a user-friendly report in a terminal, CSV, and interactive HTML file. Who is this product for • T
FREE
TDO is a free utility for optimizing the Trading Direction indicator. In addition to signals for trading, the indicator also has an information vector that fully provides all the statistical information on the operation of the indicator; this effect can be used to ensure that the indicator is automatically optimized. You just need to select the instrument and timeframe and specify the hourly interval in the utility settings and drop it on the chart chart. That's all, now we are waiting for the
FREE
Fx Trade Monitor – Professional Strategy Tracker & Risk Manager A powerful, free utility to monitor open/closed trades, visualize history, and manage risk with advanced Drawdown Alerts. Includes Excel-ready CSV export. Fx Trade Monitor  is an essential dashboard tool designed for both manual traders and EA users. It provides a crystal-clear overview of your trading performance directly on the chart, filtering by Magic Number or Comment. Unlike simple info panels, this tool focuses heavily on  Ri
FREE
AURIC MOHD-iK is a dynamic, logic-based Expert Advisor (EA) engineered specifically for trading XAUUSD (Gold). Unlike standard trading systems that rely on lagging, unreliable indicators, this EA operates purely on clean price logic—executing trades the way an experienced human trader naturally reads the market. This version is completely free with limitations, offering permanent value to your trading setup with zero hidden costs. Active Auric Mode That's it!!!!!!!!!! Core Trading Parameters Ac
FREE
Check out our website at ergodiclabs.co . Trade Health Indicator A vital-signs monitor for your trading account. Most stats panels show you win rate and profit — this one reads the health of your strategy and tells you, in plain language, whether your edge is real or just lucky. It reads your closed trade history directly from the account, reconstructs every position, and surfaces the diagnostics that a pretty equity curve hides — starting with the single most overlooked one: how long you hold
FREE
Бесплатная версия советника Trade Panel PRO Данная торговая панель предназначена для быстрой и удобной торговли в один клик. Создавался продукт для частичной автоматизации своей личной ручной торговли  https://www.mql5.com/ru/signals/1040299?source=Site+Profile+Seller Советник имеет ряд возможностей, а именно: Открытие BUY или SELL ордеров. SL выставляется ниже (выше)  минимальной (максимальной) цены, задаваемых в параметрах количества свечей. Размер TP рассчитывается в соотношении от размера S
FREE
The RSI Engine EA は、SPLpulseによって開発されたMetaTrader 5 (MT5) プラットフォーム用の自動売買ロボット(EA)です。その中核機能は、相対力指数(RSI)インジケーターからのシグナルに基づいて取引戦略を実行することです。このEAは高度に設定可能で、ユーザーは複数のRSIベースのエントリー戦略から選択し、確認フィルターを適用し、特定の​​リスクパラメータで取引を管理することができます。 取引戦略とシグナル EAのロジックは、主にユーザーが選択可能なエントリーおよびエグジット戦略によって駆動されます。 エントリーシグナル ユーザーは、取引シグナルを生成するために以下の方法の1つ以上を選択できます。 RSIダイバージェンス(デフォルト戦略): デフォルトで有効になっている主要な戦略は、RSIダイバージェンスに基づく取引です。EAは過去60本(設定変更可能)のバーをスキャンし、価格の動きとRSIインジケーターが逆方向に動いている時を特定します。これはしばしば反転が差し迫っていることを示唆します。 強気のダイバージェンス(買いシグナル): 価格が新安値
FREE
================================================================ MATRIX CONDITION MONITOR Live Trade Condition Panel for MetaTrader 5 Fully Automatic -- Works with ALL Matrix EAs ================================================================ NEVER MISS A TRADE SETUP AGAIN Matrix Condition Monitor is a free utility that attaches to any chart and automatically checks all 10 trade conditions in real time -- showing you exactly why a trade will or will not open, and alerting you the moment ever
FREE
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
FREE
PulseBar is a visual trading tool designed for MT5/MT4 that eliminates guesswork when planning your trades. It draws an interactive horizontal line on your chart that instantly calculates and displays the projected PnL (Profit/Loss) of your open positions (long or short) if the price were to reach that exact level. It is ideal for Price Action traders, Scalpers, and Day Traders who need to quickly and cleanly visualize Take Profit targets, partial exit levels, or risk zones without leaving the
IMPORTANT NOTE: This is a professional Trade Management Utility and on-chart assistant. It is NOT an automated trading robot. It does not open trades on its own. The UltraFast Trade Manager MT5 is the ultimate execution and risk-management suite designed to give you absolute control over your manual and algorithmic trades. When managing multiple positions, calculating complex net break-even points, or constantly monitoring the economic calendar, hesitation can lead to costly mistakes. This utili
FREE
Bar Follow EA
Aurelio Miguel Machado Da Silva
1 (1)
FREE
Chart Drawing Toolkit is a complete drawing and chart-analysis workspace for MetaTrader 5 . It places more than 40 drawing and markup tools in one fast, clean panel that docks to the edge of your chart, so every manual analysis tool you need is a single click away. It runs as an indicator, so it works alongside your Expert Advisors and other indicators on the same chart. Overview The toolkit combines a docking sidebar, a quick tool flyout, a live properties bar for the selected object, and a set
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 このEAには、有効/無効を切り替えられる複数のテクニカルフィルターが含まれてい
FREE
Exact Time — detailed time on the seconds chart. The utility shows the opening time of the selected candle. This is necessary when working with seconds charts. For example, it can be used on a seconds chart built using the Seconds Chart utility. Inputs Base corner — the chart corner to which an object Is attached. X distance — the horizontal distance from the chart corner. Y distance — the vertical distance from the chart corner. Text font — font name Font size — font size Color — text color
FREE
It is a utility that posts customized messages on Telegram based on account trading activity. Once the utility is on the chart, with each new position opened from the same chart symbol the utility is added, a customized message will be sent to the Telegram group defined in the input parameters. The utility will post to the Telegram group if a new position is opened and if it is the same symbol as the chart the utility is running on. If you are using an Expert Advisor for Buy and Sell and want to
VR カラー レベルは、トレンドライン、四角形、テキストなどの要素を使用してテクニカル分析を適用する人にとって便利なツールです。グラフにテキストを直接追加したり、スクリーンショットを撮ったりすることができます。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 4] インジケーターの操作は ワンクリック で実行できます。これを行うには、線の付いたボタンをクリックすると、カーソルの下に傾向線が表示されます。次に、カーソルを移動して 線の位置 を選択し、もう一度クリックして修正します。 インジケーター の特徴は、スタイルと色のすべての変更が自動的に保存され、その後すべての 新しく作成された グラフィック オブジェクトに適用されることです。 このインジケーターには、異なるスタイルのトレンド ラインを設定するための 2 つの独立したボタン、異なるスタイルの 2 つの独立した四角形、独自のスタイルを持つ 1 つのテキスト フィールド、およびスクリーンショット
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
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 フォルダに貼り付けて、ターミナルを再起動しま
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
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:/
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
MetaTrader 5 用のプロフェッショナル取引コピー機 MetaTrader 向けの高速・高性能・信頼性の高い 取引コピー機 です。 COPYLOT は、MT4 と MT5 のターミナル間で Forex 取引をコピーでき、 Hedge 口座と Netting 口座の両方に対応しています。 COPYLOT MT5 版の対応構成: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版 完全な説明 + DEMO + PDF 購入方法 インストール方法 ログファイルの取得方法 テストと最適化の方法 Expforex のすべての製品 MT4 ターミナルへのコピーも可能です(MT4 → MT4、MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT は、2台、3台、さらには10台のターミナル間で同時に動作できる、プロフェッ
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! 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
Telegram to MT5 Multi-Channel Copier は、Telegram チャンネルのトレードシグナルを MetaTrader 5 に自動的に直接コピーします。ボットも、ブラウザ拡張機能も、手動コピーも不要。Telegram でシグナルを受信すると、EA が数秒でターミナル上でトレードをオープンします。 本製品は 2 つのコンポーネントで構成されています:Telegram チャンネルを監視する Windows アプリケーションと、MT5 ターミナルでシグナルを実行するこの Expert Advisor です。MT4 版も利用可能です。 セットアップガイドとアプリケーションのダウンロード: https://www.mql5.com/en/blogs/post/768988 動作原理 Windows アプリケーションは、ボットではなくあなた自身の API 認証情報を使用して Telegram に接続します。つまり、プライベートおよび VIP チャンネルを含む、購読しているあらゆるチャンネル、グループ、トピックを読み取ることができます。シグナルを検出すると、それを解析し
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account — including daily loss protection built for prop firm rules. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for prop firms. Built for discipline. The Problem Running multiple EAs on the same ac
Trade copier MT5
Alfiya Fazylova
4.59 (49)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
EA Auditor
Stephen J Martret
5 (4)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
LIMITED SUMMER SALE -40% !   ONLY $30 insead of $50!  Maximum real discount! HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions -
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
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
The Ultimate TradingView to MT5 Bridge Automation 手動取引や遅延の問題に終止符を。 TradingView to MT5 Copier PRO は、TradingViewのアラートをMetaTrader 5で直接実行するための、最速かつ最も信頼性の高いブリッジツールです。カスタムインジケーター、ストラテジーテスターのスクリプト、または手動の描画ツールを使用しているかに関わらず、このEAは 高速WebSocket技術 を使用して即座にトレードを実行します。 単純なコピーツールとは異なり、このPROバージョンには Arena Statistics が含まれています。これは、トレードパフォーマンス、ドローダウン、シャープレシオをチャート上で直接分析できる、プロ仕様の統合ダッシュボードです。 主な機能 トレードコピー機能 (Trade Copier) 超高速約定: WebSocket接続(標準的なWebRequestよりも高速)を使用し、スリッページを最小限に抑えます。 ユニバーサルブローカー対応: あらゆるブローカー および プロップファーム
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Free Demo: Seconds Chart v2.29 Demo.ex5 無料デモをダウンロードしてご自身でお確かめください: 完全機能版 - すべての機能が利用可能 24時間テスト - 精度と利便性を評価するのに十分な時間 デモ口座のみ - ほとんどのブローカーで簡単に開設可能 GBPCADチャートのみ - ほとんどの端末で利用可能 これらの制限はデモ版のみに適用されます。製品版は、あらゆる口座タイプ(リアル、デモ、コンテス
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Risk Manager Pro MT5 is an account protection Expert Advisor for traders who want strict risk control inside MetaTrader 5. The utility monitors your account equity, daily and weekly results, drawdown, open positions, trade count, consecutive losses, and trading hours. When a configured limit is reached, it can automatically close positions, cancel pending orders, stop other EAs, send notifications, or close the terminal. Instead of relying on discipline during a stressful trading session, you de
DrawDown Limiter
Haidar Lionel Haj Ali
5 (20)
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
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
作者のその他のプロダクト
MetaTrader 5向けWhatsApp連携 - リアルタイム取引通知 MetaTrader 5とWhatsAppのシームレスな連携で、取引体験を劇的に向上させましょう。このエキスパートアドバイザーは、取引イベントが発生するたびにWhatsAppに自動的に通知を送信し、どこにいてもポジション状況を常に把握できます。スマートフォンに直接届くリアルタイムアラートで、重要な市場の動きを見逃すことはもうありません。 主な機能 リアルタイム取引通知:すべての取引イベントをWhatsAppメッセージで即座に受信 ポジション開設アラート:銘柄、出来高、価格、チケットの詳細を表示 ポジション決済通知:損益結果を表示 ストップロスとテイクプロフィットの変更アラート 簡単なQRコード認証:MT5チャートに直接表示されるQRコードで簡単に設定。WhatsAppでスキャンするだけで接続完了 自動設定プロセス:内蔵のインストールウィザードがNode.jsの依存関係のインストールとサーバー設定を自動的に処理 カスタマイズ可能な取引パラメータ:ロットサイズ、リスクパーセンテージを設定し、監
Telegramサービスは、このEAとTelegramチャンネル間の通信を行うトレーディングアプリケーションです。このアプリはレポートを生成し、取引の開始、終了、変更時にアラートを送信します。また、新規取引の開始、未決済取引の決済、既存取引の変更、取引履歴の表示、チャートのスクリーンショット取得、ストップロスとテイクプロフィット値の取得、現在の市場状況の表示、市場ニュースの取得、ログファイルの分析、そして最も重要な機能として、他のチャンネルから取引シグナルをコピー&ペーストして有効な取引を行うことができます。 このアプリケーションの概要、チャンネルとボットの作成方法、そしてアプリケーションの実行に必要なチャンネルIDとボットトークンの取得方法について解説したYouTube動画を作成しました。 以下は使用可能なコマンドです。 []内の値はオプションです。 アカウントとレポート: /account_status または /as - 口座残高と証拠金 /daily_report または /dr - 日次取引レポート /weekly_report または /wr - 週次取引レポ
TelegramTradesは、以下の10のTelegramチャンネルからトレードシグナル(専門家によるトレードシグナル)を受信し、有効なトレードシグナルに変換するエキスパートアドバイザー(EA)です。サーバー上で常時稼働しているピログラムスクリプトがシグナルを解析し、有効なトレードシグナルに変換して、私のTelegramボットに転送します。ストップロス、テイクプロフィット、価格、トレードタイプ、シンボルを含む有効なシグナルが届くと、EAはそれを読み取り、チャート上でトレードを実行します。 下記のすべてのチャートを開く必要はありません。1つのチャートを開き、そのチャート上でEAを実行するだけで十分です。開いていないチャートにトレードシグナルが届いた場合、EAはそのチャート上で自動的にトレードを実行します。受信したトレードシグナルはファイルにも書き込まれるため、専門家が各チャンネルで発信したシグナルを検証することができます。 機能: 1. 過去データを用いたストラテジーテスターでテスト可能 2. ストップロスとテイクプロフィットの値は、ユーザーが調整可能な14バーサイズのATRイ
FREE
チャート上のトレンドを識別するための様々なインジケーターと手法があります。TickVolumeIndicatorもその一つです。ティックデータを用いて過去のトレンドを表示することで、将来のトレンドを特定し予測するのに役立ちます。 TickVolumeIndicatorは、ティックボリュームを用いてチャート上の表示可能なローソク足に色を描画するインジケーターです。ティックボリュームとは、ビッド値とアスク値です。ユーザーは、ローソク足の時間枠におけるビッド数とアスク数、またはピップの変化を選択できます。アスク数は、アスク値が前回のアスク値よりも大きい場合に加算され、ビッド数は、ビッド値が前回のビッド値よりも小さい場合に加算されます。これらは両方ともローソク足の高さに正規化されてチャートに表示されます。ピップの変化も同様に計算されます。 ユーザーには以下のオプションがあります。 1) アスク色:アスク値の色として、赤、緑、青、紫、黄、シアン、紫、茶、オレンジ、ピンク、白、なしから選択できます。デフォルトは緑です。 2) 入札色: 入札値の色として、赤、緑、青、紫、黄色、シアン、紫、
FREE
アナリティクスダッシュボードは、過去と現在の取引を分析し、詳細ビューとして円グラフを追加した分析ダッシュボードを作成するインジケーターです。 分析は主に4つのカテゴリーに分けられます。1)パフォーマンス指標、2)取引行動指標、3)約定品質指標、4)ポジションレベル指標です。 これら4つの一般的な分析指標は、さらに以下のように具体的な指標に分類されています。 パフォーマンス指標: 粗利益 粗損失 全体利益率 全体期待値 全体勝率 平均リスクリワードレシオ 最大ドローダウン 最大ランアップ これらすべてについて、円グラフを用いたチャート形式の指標表示も可能です。 取引行動指標: 総取引数 総勝ち数 総損失数 平均ホールド時間合計 平均取引サイズ SL到達により停止された取引総数 TP到達により停止された取引総数 手動ストップ注文合計 これらの指標は、平均取引サイズを除き、チャート形式でも表示されます。 約定品質指標: 平均スリッページ 平均エントリースプレッド 平均エグジットスプレッド 合計手数料 + スワップ手数料 粗利益への影響 粗損失への影響 これらの指標は、チャー
FREE
フィルタ:
レビューなし
レビューに返信