BVCandleStream

  • ユーティリティ
  • Katsura Yamanouchi
    Katsura Yamanouchi
    MT5ユーザー。
    エキスパートアドバイザー、インジケーター、スクリプト、サービス、クラスの開発者です。
    私たちは、ボブ・ボルマンのプライスアクション戦略にインスパイアされ、その手法をMT5に取り入れることを目指しています。
    ぜひ、私たちのコードをお楽しみください!
    Machine translated
    نحن مستخدمو MT5.
    نقوم بتطوير المستشارين الخبراء والمؤشرات والسكربتات والخدمات والفئات.
  • バージョン: 1.20
  • アップデート済み: 15 12月 2025

Product name BVCandleStream

##概要

スキャルピングおよびプライスアクション分析のために、カスタムのティックベースシンボル(等ティックバー)を自動生成するバックグラウンドサービスです。
標準シンボルの生ティックを、1本あたりのティック数が固定されたカスタムバーに変換し、これらの合成ティックチャートに対して任意の標準MT5インジケーターやEAを適用できるようにします。


主な特長

1. ティックベースのバー生成

  • 開いているチャートのシンボルを監視し、ティックを指定本数( InpTicksPerBar )ごとにまとめたバーを自動生成
  • Bid / Ask / Mid いずれかの価格基準を選択可能
  • TickVolumeの表示で、バーの生成程度を目視判定可能

2. 履歴+リアルのシームレス連結

  • 過去ティックをさかのぼってヒストリカルバーを構築。
  • ヒストリ生成完了後、リアルタイムティックへ即接続し、バーを継続更新。

3. カスタムシンボルによるチャート表示

  • 標準のインジケータが適用可能。

4. マルチチャート対応

  • MT5 上で開いた複数チャートを自動スキャンし、対象シンボルごとにタスクを生成。
  • プレフィックス指定(例: "BV_" )でカスタムシンボル名を一元管理。


Input Parameters

input int           InpTicksPerBar              = 144; // バーあたりのティック数(ティックをまとめる本数)
input int           InpHistoryHoursBack         = 8; // 取得する履歴の過去時間(時間単位)
input Eprice_types  InpTargetValue              = Mid; // 使用する価格種別(Bid / Ask / Mid)

input Eround_types  InpOutputRounding           = Round; // 価格の丸め方法(四捨五入・切り上げ・切り下げ・変更なし
input int           InpCheckIntervalMs          = 300; // メインループのチェック間隔(ミリ秒)
input string        InpCustomSymbolPrefix       = "BV_"; // 生成されるカスタムシンボルの接頭辞
input bool          InpOverwriteExistingCustom  = true; // 既存カスタムシンボルを上書き再生成するかどうか


使い方ガイド

ステップ1:サービスインストール

  1. BVCandleStream.ex5 を MetaTrader 5 の MQL5/Services フォルダへ配置。
  2. ターミナルを再起動し、ナビゲーター内「サービス」欄から表示を確認。


ステップ2:パラメータの設定

InpTicksPerBar バーあたりのティック数(ティックをまとめる本数)
InpHistoryHoursBack 取得する履歴の過去時間(時間単位)
InpTargetValue 使用する価格種別(Bid / Ask / Mid)
InpOutputRounding 価格の丸め方法(四捨五入・切り上げ・切り下げ・無処理)
InpCheckIntervalMs メインループのチェック間隔(ミリ秒)
InpCustomSymbolPrefix 生成されるカスタムシンボルの接頭辞
InpOverwriteExistingCustom 既存カスタムシンボルを上書き再生成するかどうか

ステップ3:サービス起動

  1. 対象銘柄のチャートを開く(時系列や時間足は任意)。
  2. サービスを起動すると、開いているチャートの銘柄を自動検出し、対応するカスタムシンボルを生成。
    シンボル名は、プレフィックス+元シンボル名+Ticks+1バーあたりティック数(例:BV_EURUSD_Ticks144)になる
  3. ターミナルの「File>NewChart>Custom」から開きたいカスタムシンボルを選択してチャートを開く。
    Periodが1Mでない場合は1Mに変更する(1Mでないとティックチャートが崩れてしまうため)。


ステップ4:再起動時の自動起動、終了

  • サービス起動のままMT5 や PC を再起動すると、次回起動時にも自動的に作成済みカスタムシンボルを生成します。
  • サービスを終了したいときは、NavigatorウインドウからServeces>BVCandleStreamを選択し、右クリックメニューから、Removeを選択してください。


要件と制限

  • プラットフォーム: MetaTrader 5 のみ(MT4版はありません)。
  • プログラム種別: MT5サービス(チャートにアタッチせずバックグラウンドで動作します)。
  • 時間軸: 生成されたカスタムシンボルは M1 タイムフレームでのみ開いてください。他のタイムフレームではティックバーが歪みます。
  • ティックデータ: 生成される履歴の品質と長さは、ブローカーサーバ上のティック履歴の有無と量に完全に依存します。
  • ストラテジーテスター: 生成されたカスタムシンボルでEAをテストする際は、「Every tick」または「real ticks」モードを使用してください。「Open prices only」などの簡易ティック生成モードはサポートされていません。


ご活用シーン

  • ティックベース分析
    ボリューム均等バーやティック数固定バーを使ったプライスアクションの分析に最適。
  • アルゴリズム取引の前処理
    カスタムシンボルに出力されたバーをインジケータ/EAで利用可能。
  • 複数銘柄の同時監視
    開いているチャートを自動スキャンするため、取引銘柄が多いトレーダーでも管理が容易。
おすすめのプロダクト
Hybrid Assisted Trading Engine Manual Trading. Machine Discipline. The Hybrid Assisted Trading Engine is an institutional-grade manual trade management system designed to protect traders from emotional mistakes — without taking control away from them. You decide when to enter . The engine decides how the trade is managed . What It Does This system continuously monitors your manual trades and enforces professional-level trade management rules in real time: Smart Breakeven logic R-based trai
EasyOrder Risk Manager EasyOrder Risk Manager is a professional Risk-Based Entry panel for MetaTrader 5 designed for traders who prioritize structured execution and strict risk control. This tool allows you to define your risk as a percentage of account balance and automatically calculates the correct lot size based on your Stop Loss distance. No manual calculations. No emotional lot sizing. No risk mistakes. Key Features Risk-based position sizing (% of balance) Real-time lot calcu
Smart Money Guardian The Ultimate Trade Manager & Equity Protection Expert Transform your manual trading with professional-grade discipline. Smart Money Guardian is not just a tool; it is your "Digital CEO" that manages every trade with mathematical precision, protecting your capital from emotional decisions and unexpected market volatility. ️ Why Choose Smart Money Guardian? Most manual traders fail due to a lack of exit discipline and poor risk management. This EA solves that by automating
News Risk Guard は、経済指標の発表が近づいたときに、すでに持っている建玉を 守るためのリスク管理ツールです。方向を予測しません。自分から仕掛けません。 利益の主張も一切しません。 日程は商品に内蔵しています (15指標・4,101件)。インターネット許可も DLL も 外部ファイルも不要で、ストラテジーテスターでも実チャートでも同じに動きます。 できること 1. 保護窓    発表の指定秒前に、管理対象の建玉を引き取り、発表後に返します。動作は選べます    — 警告のみ / 建値へ移動 / ストップを詰める / 数量を割合で減らす / 決済。    本ツールが動かしたストップは、窓が閉じるときに元の位置へ戻します。 2. ストップの無い建玉    発表を無防備で迎える建玉は、口座が抱える最大の単一リスクです。ATR から算出した    緊急ストップを自動で付けます。戦略ではなくシートベルトです。 3. ロットの自動計算    数量ではなくリスクを入力します。ロットは「失ってよい金額」と「ストップまでの    距離」から、ブローカーが実際に返す tick v
Introducing the   Elite Chart Navigator   — your ultimate MetaTrader 5 Expert Advisor designed to revolutionize multi-symbol trading with seamless chart navigation and superior usability. Product Overview The   Elite Chart Navigator EA   is a sophisticated trading utility enabling rapid switching between multiple trading pairs through an intuitive on-chart button interface. Built for professional traders managing numerous instruments, this EA dramatically improves workflow efficiency, ensuring
Telegram Notify MT5 Telegram Notify MT5 is an utility tool to bridge your MetaTrader 5 activities to your Telegram chat/channel. It is useful for monitoring your MetaTrader 5 account by sending a notification to your particular Telegram chat/channel when someone/EA is placing trades, modifying order's TP/SL, closing trades and etc. This EA does not place any trade for your account. This EA also could be a convenient tool for monitoring other's EA trading activities or a tool for publishing your
Binance Grid Pro offers an alternative to the built in Grid systems Binance Platform offers. This utility let you define a grid parameters for interact with your Binance account using an Isolated Margin account. This is, similar to Spot Grid in Binance. This is not for handle with derivatives contracts, is for handle with Spot through Isolated Margin Account. But obviosly this utility offers a different approach than built in Binance Grid to handle the Grid, which I have found useful based on
Utility for reading news from investing.com To access the site, you need to add WebRequest in the Options terminal menu on the Expert Advisors tab: https://sslecal2.investing.com If reading is successful, a message about writing the file is displayed. The INV_week_this.txt file is written to the MQL5\Files folder of the terminal and is kept up to date, updating data according to its own timer. The  INV_week_last.txt   file is recorded on Saturday and saves the news data of the previous week .
革新的な Trades Time Manager を使用して、取引ルーチンを簡単に管理できます。この強力なツールは、指定された時間に注文執行を自動化し、取引アプローチを変革します。 購入から注文の設定まで、すべて手動介入なしで、さまざまな取引アクションのためのパーソナライズされたタスク リストを作成します。 Trades Time Manager のインストールと入力ガイド EA に関する通知を受け取りたい場合は、MT4/MT5 ターミナルに URL を追加してください (スクリーンショットを参照)。 MT4のバージョン     https://www.mql5.com/en/market/product/103716 MT5のバージョン     https://www.mql5.com/en/market/product/103715 手動監視に別れを告げ、合理化された効率を採用します。直感的なインターフェイスにより、シンボル、約定時間、価格、ストップロス (SL)、テイクプロフィット (TP) ポイント、ロットサイズなどの正確なパラメーターを設定できます。 このツールの柔軟性は、市
口座履歴の通貨を他の通貨に両替して出力できるスクリプトです。多通貨対応ですので、USD, JPYの相互変換をはじめ EUR, GBP, AUD等、その他マイナー通貨まで両替可能です。 特に確定申告の際には、円以外の運用口座の場合当日の相場で円換算した金額を申告する必要があるため、膨大な労力が必要となります。しかしCurrency Exchangerは一回実行するだけで他通貨へ即座に変換が可能ですので、誰でもかんたんに両替できます。 面倒な作業はCurrency Exchangerにお任せください! 口座履歴から両替した結果をhtml、またはcsv形式にてレポート出力可能。 両替レートはMetaTraderのヒストリカルデータ、またはWebより取得。 レポート出力する期間や両替のタイミングを細かく指定可能。 レポート出力項目を変更可能。 両替を行わない通常のレポート出力も可能。 レポートの言語は英語、及び日本語対応。 MT4製品版はこちら : Currency Exchanger MT4 入力項目説明 General(全般設定) Currency of after exchange :
Manage your prop firm challenges with  Raba Challenge Manager  EA  (FTMO, Rocket21, etc...). Functionalities: Close all positions when the goal profit is reached. Close all positions before reaching the daily drawdown limit. Close all positions before reaching the total drawdown limit. Notes: Auto enabling/disabling algo trading is disabled due to MQL Market policies. I you have any doubt you can leave it in comments and I will anwer it asap. If you found this tool helpful for you, a comment an
FREE
Telegram to MT5 Pro — 高度なTelegramシグナルコピー機(自動修正・マルチTP・リスク管理・完全トレード管理) Telegram to MT5 Pro — プロフェッショナル Telegram シグナルコピーツール Telegram to MT5 Pro は、TelegramのシグナルをMetaTrader 5アカウントへ自動で直接実行する高性能トレードコピーシステムです。リスク管理、執行、トレード管理を完全に制御できます。 本システムは2つのコンポーネントで構成されています: • MetaTrader 5内で動作するExpert Advisor(EA) • Telegramと接続しシグナルをローカルでEAへ送信するコンパニオンデスクトップアプリ 両方は同じPC上で動作する必要があります。MQL5の制限によりEAはTelegramへ直接接続できません。ブリッジがTelegram処理を担当し、EAが取引を実行します。 サポートとインストール支援 完全なPDFインストール&ユーザーガイドが提供されます。 サポート内容: • 完全PDFユーザーガイド(全設定説明)
The trading limiter that stops you from breaking your own daily loss and trade limits. • Please test the product in the Strategy Tester before purchasing to understand how it works. • If you face any issues, contact me via private message—I’m always available to help. • After purchase, send me a screenshot of your order to receive a   FREE EA   as a gift. Most grid robots start the same way: price moves two hundred points, so the first order opens. It does not ask whether the market was going
Smart Risk Manager – Master Your Trades with Precision and Confidence Take complete control of your manual trading with Smart Risk Manager , a professional all-in-one trade and risk management Expert Advisor for MetaTrader 5 . Designed for traders who value speed, precision, and capital protection, it simplifies every step of trade execution while ensuring your risk remains under control. Whether you trade Forex, Gold, Indices, or Cryptocurrencies , Smart Risk Manager helps you execute trades w
Atlas Trade Desk MT5 Atlas Trade Desk MT5 is a visual trade panel, risk manager and lot calculator for manual MetaTrader 5 traders. Plan market and pending orders directly on the chart, calculate position size from your selected risk, adjust Entry, Stop Loss and Take Profit visually, and manage open positions from one clean dashboard. The tool is built for discretionary traders who want faster order preparation, clearer risk control and safer position management without switching between multipl
Launch   price!  The price will increase by $10 with every 3 purchases. Final price $88. Trading ICT, FVG, SMT, liquidity sweeps, or price action? Stop switching between TradingView and your trading platform just to mark session highs/lows, adjust session boxes, and track liquidity zones manually. Accurate Sessions   is a clean and practical MetaTrader 5 indicator designed to help traders visualise key market sessions, important price levels, and timing information directly on the chart. It giv
MasterEA MT5 Premium – Professional Copy Trade Sender One Purchase. Unlimited Possibilities. MasterEA MT5 Premium is a professional MT5 trade broadcasting solution that instantly sends your trading activity to one or multiple receiving accounts. Buy only the Master EA. SlaveEA MT5 Premium (Trade Receiver) is included FREE with your purchase. No additional payment is required for the Receiver EA. What Can Be Copied? MasterEA automatically broadcasts: Market Buy Orders Market Sell Orders
TimeView Pro – カスタマイズ可能なローカル時間インジケーター (MetaTrader 5) 概要 TimeView Proは、ユーザーのPCや国の時間に自動的に適応する、完全にカスタマイズ可能な時間表示インジケーターです。類似のインジケーターとは異なり、TimeView Proは高度なカスタマイズオプションを提供し、チャートの視認性を維持しながら時間管理を強化します。 主な機能 ローソク足にスナップ (デフォルトで有効) – タイムラベルが最も近いローソク足に自動的に揃います。 ワンクリックで表示/非表示 – Click Chart + H を使用して、インジケーターの表示を瞬時に切り替え可能。 カスタマイズ可能なライン – 水平線 (デフォルト: 非表示) や 垂直線 (デフォルト: 表示) のオン/オフ切り替えが可能。 柔軟なデザイン設定 – フォントサイズや背景色 などのカスタマイズが可能。 エッジオーバーラップ防止 – ラベルがチャートの端で見えなくなるのを防ぎます。 自由な位置設定 – 上部、中央、下部、またはカスタム位置 に配置可能。 追加情報表示 – サー
Centage
Chukwuemeka Kingsley Anyanwu
Centage: Your Smart Trading Bot for Risk Management. Unlike typical trading bots, Centage prioritizes risk management by incorporating an essential feature: it closes all open trades when your account balance reaches a predefined threshold. This feature makes Centage ideal for traders who want to maintain a disciplined approach and avoid emotional decision-making.  Let Centage be your reliable partner in the world of trading, while safeguarding your investments with smart balance-based exits. Ce
Upgrade your technical analysis with a professional, lag-free Pivot and Market Session indicator. Perfect for Day Traders, Scalpers, and Prop Firm users who need precise Support & Resistance zones without cluttering their MetaTrader 5 charts. Key Features: Clean Visuals: Uses exact-length trendlines instead of infinite rays to keep your chart clutter-free. Special Calculation: Uses special calculation to determine the pivot, resistance, and support zones. The accuracy is reliable. Smart Dynamic
MQL5ブログ: https://www.mql5.com/en/blogs/post/761446 MT4版: https://www.mql5.com/en/market/product/136790 MT5版: https://www.mql5.com/en/market/product/136791 Time Wizardは、スピード、タイミング、そして執行コントロールを一つの洗練されたダッシュボードで実現したいトレーダーのために開発された、プロフェッショナルなトレーディングアシスタントです。 このエキスパートアドバイザーは、イベントベースのトレーディング、スケジュール執行、そして高速な半自動注文管理のために設計されています。注文を事前に準備し、正確な執行時間を設定し、複数の指値注文を発注し、ストップロスとテイクプロフィットでリスクを管理し、チャート上のコンパクトなインターフェースからすべてを監視できます。 経済イベント、セッション開始、ブレイクアウト、あるいは独自のカスタムスケジュールなど、どのようなタイミングで取引を行う場合でも、Time Wizardは構造と規律に
Trade Utility Pro is a bot utility designed to help you manage trades more easily, quickly, and accurately. This utility features a control panel interface and supports MetaTrader 5 exclusively. This utility does not link to any account information or external sources, ensuring safety. Main Features: Open Trade Support: Lot size calculation Fixed Lot: Custom input lot required Money Risk Lot: Automatically calculated based on stop loss and money risk Account % Risk Lot: Automatically calculated
FREE
Prop Firm Risk Manager PRO EA Professional account protection for prop-firm challenges and funded accounts. It monitors drawdown, open risk, news windows, trading sessions, manual trades, profit targets, and challenge progress in real time, then warns, locks, de-risks, deletes orders, or closes managed exposure according to your rules. Two draggable on-chart panels — Economic Calendar and Performance Stats — keep news planning and account analytics on the chart without leaving MT5. MT5 Expert Ad
DoIt EA Monitor - Multi EA Performance Dashboard for MT5 Your account can be profitable while one EA quietly drags down the portfolio. MetaTrader history shows the combined result, but it does not clearly show which strategy deserves more capital and which one needs attention. DoIt EA Monitor runs on one chart and separates live and historical performance by magic number, EA and symbol. It is completely read-only. It never opens, closes or modifies a trade. KNOW WHICH EA IS EARNING ITS PLACE Aut
FREE
Overview GoldStrikeEA is a fully automated Expert Advisor for MetaTrader 5, designed primarily for   XAUUSD (Gold)   but capable of adapting to other symbols. Built with   ICT/FVG concepts, liquidity sweeps, and S/R fractal retests , it provides both strict and flexible trading modes to suit different strategies. This EA combines advanced market structure detection with a customizable model-learning engine, giving you   high adaptability, strong risk management, and consistent performance . ️
Intenza Prop & Equity Guard is a professional account risk monitor and protection system for MT5 traders. Daily loss and drawdown tracking, hard equity floor, trailing profit lock, optional auto-close on breach, full trade journal with calendar, statistics and branded HTML/CSV reports. Single .ex5, no DLL. Everything you need to see, respect, and enforce your risk limits, all in one unified panel. Why Intenza Prop & Equity Guard? Most risk tools either just display numbers or blindly close trad
Quantum Trade Panel – The Ultimate Smart Assistant for Flawless Execution & Risk Management Tired of slow executions and calculating lot sizes manually while the market moves? Quantum Trade Panel is the ultimate, feature-rich Trading Assistant Expert Advisor (EA) for MT5 . It is specifically engineered to empower day traders and scalpers to manage, calculate, and execute trades in milliseconds with pinpoint accuracy. Combining a stunning, futuristic Cyber/Neon user interface with powerful und
Hello, trading with EAs or manual? We are coming with unique solution of how to protect your hard EARNED profits. Despite the fact you are beginner or experienced user, we all have experienced that trading can turn badly, especially before week / month end. In order to PROTECT your earnings , we are offering Trading Manager that closely overlooks the gains (or protecting the account from extreme losses) and locks the balance if certain profits is reached. HOW TO USE: 1. Please understand that T
Tick Chart Constant Volume Generator
Trade The Volume Waves Single Member P.C.
1. Overview   The Tick Chart Toolset is a pair of tightly coupled MQL5 files that generate and control professional Constant Volume charts inside MetaTrader 5 as custom symbols. Unlike time-based charts, each bar closes only when a target volume threshold is reached, giving you a noise-filtered, activity-proportional view of the market. Free "Tick Chart Monitor Indicator" to control the generator EA:  https://www.mql5.com/en/market/product/17104   Component Type Role Tick_Chart_Generator_AI_MT5
Initial Balance Session  The Initial Balance Indicator is a professional-grade tool for MetaTrader 5 traders, designed to enhance your trading by visualizing key price levels during the Australia, Tokyo, London, and US market sessions. This indicator plots the Initial Balance (IB) range—the high, low, and midpoint prices—formed during the first hour of each session, with a customizable box to highlight the range and optional extension levels for advanced analysis. Optimized for smooth, flicker-f
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
25% discount due to the launch of AstroTrade : 100$ >>> 75$ (Only for the first 10 purchases) AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Visual Trade Execu
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
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 フォルダに貼り付けて、ターミナルを再起動しま
================================================================================ 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
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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 チャンネルを含む、購読しているあらゆるチャンネル、グループ、トピックを読み取ることができます。シグナルを検出すると、それを解析し
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
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 $30 insead of $50!  Maximum real discount!  ONLY UNTIL 08/22 HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. 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  -
Telegram To MT5 — シグナルコピア Telegram チャンネルのトレードコールを、実際の MT5 注文に変換します — 自動で、好きなだけの口座に対応し、リスクとルールは完全にあなたの管理下に置けます。 Telegram To MT5 は、あなたが Telegram で既にフォローしている VIP / シグナルチャンネルを MetaTrader 5 端末に接続します。無料の付属デスクトップアプリがメッセージを読み取り(ボットを禁止しているチャンネルでも可能)、この EA があなたの口座でそれらを執行します — あなた自身のリスク設定、シンボルマッピング、テイクプロフィット処理、セッションおよびニュースフィルターを適用します。 これはシグナルコピアであり、ブラックボックス戦略ではありません。どのチャンネルを信頼するか、各トレードのロットと管理方法をあなたが決めます。 ステップバイステップの設定と付属アプリのインストールガイド 仕組み [あなたの Telegram チャンネル] -> [付属デスクトップアプリ] -> [MT5 + この EA] -> 注文 付属デスクトッ
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
Timeless Charts
Samuel Manoel De Souza
5 (8)
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
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.
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:/
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (4)
Trade Copier Ultimate - Telegram to MT5 Signal Copier Trade Copier Ultimate automatically copies Telegram trading signals into MetaTrader 5. The EA can read signal messages, detect the symbol, order type, entry price, Stop Loss, Take Profit levels and selected update commands, then execute or manage the trade in MT5 using your lot and risk settings. It is more than a basic Telegram to MT5 copier. TCU also supports Bot API and user-account Bridge workflows, Discord signal routing, local MT5 to MT
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
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
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
Custom Alerts AIO:マルチマーケット監視を一括で実現 — 設定不要ですぐに使えるインテリジェントツール 概要 Custom Alerts AIO は、追加のインジケーター設定が不要で、インストール後すぐに利用できる高機能マーケットスキャナーです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power を内部にすべて統合し、主要なすべての資産クラス(為替、金属、指数、暗号資産)を一括監視できます。MetaTrader の仕様により、株式は個別のシンボルとして追加可能ですが、一般的には利用頻度は低めです。 1. なぜ Custom Alerts AIO を選ぶべきか 追加ライセンス不要 • 必要なすべての Stein Investments インジケーターが内蔵されており、すぐに使用可能です。 • チャートに表示されるグラフィックは省略されており、アラート生成に特化した構成です。 市場を広範囲にカバー • 為替、金属、暗号資産、株価指数に対応(株式は手動追加可能)。 • シンボル名を入力する必要はなく、プロパティで資産クラス
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Free Demo: Seconds Chart v2.29 Demo.ex5 無料デモをダウンロードしてご自身でお確かめください: 完全機能版 - すべての機能が利用可能 24時間テスト - 精度と利便性を評価するのに十分な時間 デモ口座のみ - ほとんどのブローカーで簡単に開設可能 GBPCADチャートのみ - ほとんどの端末で利用可能 これらの制限はデモ版のみに適用されます。製品版は、あらゆる口座タイプ(リアル、デモ、コンテス
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
動作デモ版ダウンロード Copy Cat More (コピーキャット・モア) MT5 トレードコピー (Trade Copier) は、ローカルのトレードコピーであり、今日のトレード課題のために設計された完全なリスク管理・執行フレームワークです。プロップファーム (prop firm) のチャレンジから個人のポートフォリオ管理まで、堅牢な執行、資金保護、柔軟な設定、高度なトレード処理の組み合わせによって、あらゆる状況に適応します。 このコピーは、マスター (Master、送信側) とスレーブ (Slave、受信側) の両モードで動作し、成行注文・指値注文、トレードの変更、部分決済、両建て決済 (Close By) 操作をリアルタイムで同期します。デモ口座と実口座、トレード用ログインと投資家ログインの両方に対応し、永続的トレードメモリ (Persistent Trade Memory) システムにより、EA・端末・VPS が再起動しても復旧を保証します。一意の ID により複数のマスターとスレーブを同時に管理でき、ブローカー間の差異は接頭辞/接尾辞の調整やカスタムシンボルマッピングに
VirtualTradePad PRO SE MT5 — MetaTrader 5向けプロフェッショナル取引コントロールセンター VirtualTradePad PRO SE は、 MetaTrader 5 向けのプレミアムなチャートベースの取引パネルであり、トレード管理ワークスペースです。より速い執行、明確なポジション管理、構造化されたトレード管理、視覚的なレベル計画、そしてチャート上で完結するプロフェッショナルなワークフローを求めるトレーダー向けに設計されています。 これは単なる BUY / SELL パネルではありません。PRO SE は、手動取引、予約注文、ポジション管理、部分決済、バスケット損益管理、平均化レベル、ATMルール、シグナル監視、リアルタイム市場情報、ストラテジーテスター (Strategy Tester) ワークフロー、VPS向け運用を、1つの連携されたインターフェースに統合します。 MT4版 | 完全な説明とスクリーンショット | 購入方法 | インストール方法 | ログファイルの取得方法 | テストと最適化の方法 | Expforex のすべての製品 PRO
作者のその他のプロダクト
NtickChart-BVcandle 特徴 機能を限定した無料版です。 サブウインドウに表示するタイプのティックチャートインジケーターです。   Bob Volman(BV)のスキャルピング手法を参考にしており、シンプルかつ効果的なトレードを実現するためのツールとして設計されています。1 pipette の変化にもこだわるデイトレ・スキャルピング専用のティックチャートです。通常の単位時間ベースのローソク足ではなく、指定されたティック数(ticks_in_candle)ごとにローソク足を生成します。これにより、短期的な価格変動をより詳細に観察することが可能です。 このインジケーターは、特にEUR/USDなどの流動性が高い通貨ペアで、スプレッドが低い環境でのスキャルピングに適しています。  市場の急激な動きを捉え、短期的な利益を狙う。  トレンドの転換点やブレイクアウトポイントを迅速に判断する。  シンプルなチャート構成で、余計な情報に惑わされずにトレードを行う。 次の機能があります。 ティック数の設定が可能 BVは70に設定していますが、現代の大量取引環境下では144の設定をお勧
FREE
BVCandleView は、数値の丸め処理によって裁量トレードを視覚的にサポートする新感覚インジケーターです。 無料のカスタムシンボル発行サービスを組み合わせれば、ボブ・ボルマン流(BV流)のティックチャートを MetaTrader 5 で再現できます。 価格の丸みと色分けで、1ティックの動きまで直感的に把握できます。 クイックマニュアル 導入方法 BVCandleView.mq5 を MQL5/Indicators フォルダに配置。 MetaTrader 5 を再起動し、任意のチャートへインジケーターを適用。 主な設定項目 Rounding Settings : 丸め種別(四捨五入・切り上げ・切り捨て・丸めなし)、小数桁数、ステップ幅、ティックサイズ強制。 Display Settings : インフォラベル表示と位置・色。 Grid Line Settings / Current Price Line Settings : グリッドラインと現在値ラインの表示調整。 Candle Colors : 基準・上昇・下降キャンドルの色指定。 活用ポイント 丸め設定により、レンジ感やテ
フィルタ:
レビューなし
レビューに返信