• 概述
  • 评论 (1)
  • 评论
  • 新特性

Rigorous Market Sessions SubWindow

1. 这是什么.

        这是一个非常严谨的以展示不同市场交易时段的指标。它展示了主要市场:NewYork, London, Frankfurt, Sydney, Wellington, Tokyo.

        非常重要:

不同的市场夏令时起止日期不同,而一个市场的交易时段又会因夏令时冬令时而不同。

同时,北半球国家、南半球国家夏令时制度也是不同的,以及一个市场在不同的年份,夏令时的制度也是变化的。 

比如:纽约夏令时制度:

  • 1987年-2006年:4月第一个星期日02:00      -->   10月最后一个星期日02:00
  • 2007年-至今:    3月的第二个星期日02:00   -->   11月的第一个星期日02:00
纽约外汇市场交易时段(UTC+3):  15:00-22:00(夏令时);   16:00-23:00(冬令时)。

            所以交易时段,必须要考虑历史上所在城市、所处年份的夏令时日期、以及对应的交易时段,否则交易时段是错误的。但是如果这些都是手工设置,非常的繁琐,本程序就可以自动设置。

    你可以参阅我的博客了解主要国家的夏令时制度以及交易时段:

    DAYLIGHT SAVING TIME RECORDS OF MAJOR COUNTRIES

    OPENING AND CLOSING TIME OF MAJOR INTERNATIONAL FOREIGN EXCHANGE MARKETS


    2. 程序特色

    • 自动判断价格的时间是否处在当年的夏令时中;
    • 根据市场是否处于夏令时,自动判断市场的交易时间段;
    • 根据你希望的UTC时区,自动转换交易时间段;
    • 历史数据全部进行了严谨的匹配,所以你可以得到准确的历史上的市场交易时段,这便于你进行研究。
    • 多种展示模式,你总能够找到适合你自己的方案。

    3. 如何使用(子窗口模式)

    参数以分组的形式表示,它非常容易理解,下面介绍下各个参数组:

    • the utc of your broker's data, usually it's +3.
    • group "=== Display Market ===" :   组内的参数为选择是否显示对应的市场,这是单个市场的总控制键。
      • Show_NewYork = true;
      • Show_London = true;
      • Show_Frankfurt = true;
      • Show_Sydney = true;
      • Show_Wellington = true;
      • Show_Tokyo = true;
    • group "=== Market Color ===" :  组内的参数为设置各个市场的颜色
      • Color_NewYork = clrRed;
      • Color_London = clrRoyalBlue;
      • Color_Frankfurt = clrGreen;
      • Color_Sydney = clrSilver;
      • Color_Wellington = clrDeepSkyBlue;
      • Color_Tokyo = clrSlateGray;
    • group "=== RectAngle On Chart ===" :   组内的参数设定是否在主窗口添加 方框
      • RectAngle_Style = STYLE_DASHDOTDOT;        //  方框的类型
      • RectAngle_Width = 3;        //  方框的宽度,根据MT5的限制,只有 STYLE_SOLID、STYLE_DASHDOTDOT 类型才可以大于1.
      • RectAngle_NewYork = true;
      • RectAngle_London = true;
      • RectAngle_Frankfurt = true;
      • RectAngle_Sydney = true;
      • RectAngle_Wellington = true;
      • RectAngle_Tokyo = true;
      • Add_Rect_MarketName = true;        //  是否在方框添加市场名称
    • group "=== Setting Market Name Label ===" :  组内的参数设定是否显示市场名称
      • Add_Sub_MarketName = true;     //  是否在子窗口添加市场名称
      • Add_Market_Label = true;        //  是否在主窗口右上角显示市场名称
      • Fond_Size = 10;        //  文字的大小
      • Fond_Clr = clrBlack;        //  文字的颜色
    • group "=== Improve Speed ===" :  组内的参数用于设定计算的数量。在研究历史数据时,可以设置大一点;在实时交易时,可以设置小一点。
      • Basic_Count_Max = 100000;     //   基本的数据数量,这个可以设置的很大。
      • Object_Count_Days = 5;        //  以日为单位,方框、名称标签的数量。


    4. 其他

            由于MT5的限制,我不得不把程序写成两种形式。 

    一个是子窗口模式;另一个是主窗口模式两种模式有所不同,总有一个适合你。当前页面为子窗口模式。


    推荐产品
    1. 这是什么.         这是一个 非常严谨 的以展示不同市场交易时段的指标。它展示了主要市场:NewYork, London, Frankfurt, Sydney, Wellington, Tokyo.         非常重要: 不同的市场夏令时起止日期不同,而一个市场的交易时段又会因夏令时冬令时而不同。 同时,北半球国家、南半球国家夏令时制度也是不同的,以及一个市场在不同的年份,夏令时的制度也是变化的。   比如: 纽约夏令时制度: 1987年-2006年:4月第一个星期日02:00      -->   10月最后一个星期日02:00 2007年-至今:    3月的第二个星期日02:00   -->   11月的第一个星期日02:00 纽约外汇市场交易时段(UTC+3):  15:00-22:00(夏令时);   16:00-23:00(冬令时)。         所以交易时段,必须要考虑历史上所在城市、所处年份的夏令时日期、以及对应的交易时段,否则交易时段是错误的。但是如果这些都是手工设置,非常的繁琐,本程序就可以自动设置。 你可以参阅我的博客了解主要国家的夏令时
    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, which helps to build seconds chart in the MT5 terminal. Use the TAB key to turn on/off the time display on the chart. Inputs Text font — you can set your own font Font size — you can set the desired font size Text color — your own text color Line col
    FREE
    News History Expoter
    Donaldo Sande Angiela
    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
    神速EA跟单(TradeMirror)是一款MT4/MT5平台的订单复制软件。 为什么选择神速EA跟单 我们深知对于金融软件而言安全、稳定和隐私的重要性,因此我们在细节处对这三大要素进行了额外的加固: 提供用户友好的图形界面,操作简单易用 注重隐私安全,适合对订单分发有隐私要求各种金融场景 精准复制订单,毫秒级分发 支持全平台,MT4/MT5全面覆盖 智能感知系统状态,邮件通知守护交易安全 核心功能列表 对于跟单软件而言,功能并不是越多越好的,因此经过严谨的需求分析,我们对程序进行了精简,并最终保留了如下核心功能: 多重连接 邮件通知 手数缩放 信号过滤 反向跟单 重置止盈/止损 免费演示 在购买Trademirror之前,你总是可以尝试免费演示。 点击本页面上的免费演示按钮 点击是的,我有Metatrader 4/5 允许浏览器打开Mt4/5 在Mt4/5中,找到专家顾问/市场/TradeMirror,打开它并点击测试 启用复盘显示(否则你将看不到GUI界面)。 点击开始 现在你可以在可视化图表上看到TradeMirror的GUI界面 使用建议 感谢您愿意关注并使用神速,针对常见问
    FREE
    * This product was converted using  "BRiCK Convert4To5 MT4 "  based on the MQL4 source file of  "BRiCK Convert4To5 MT4 Free" . "Convert4To5" is a Script that converts MQL4 source files into MQL5 source files. Experts, Indicators, Scripts, and Libraries with extension ".mq4" will be available for MT5. Parameter None. Procedure 1. Open the following folder.     terminal_data_folder\MQL4\Files\ (in the terminal menu select to view "File" - "Open the data directory") 2. Confirm that the BRiC
    FREE
    Market book tester
    Aliaksandr Hryshyn
    1 (1)
    Using data from the order book in the strategy tester Key features: Simultaneous use of several symbols, up to 7 pieces DOM visualization With the visualization of order books, real-time simulation is available, as well as acceleration or deceleration Working with the library: This product also requires a utility to save data:  https://www.mql5.com/en/market/product/71642 Speed control utility:  https://www.mql5.com/en/market/product/81409 Include file:   https://c.mql5.com/31/735/Market_book_s
    FREE
    Axilgo PipPiper CoPilot
    Theory Y Technologies Pty Ltd
    5 (2)
    Axilgo Pip Piper CoPilot Elevate your trading game with the Axilgo Pip Piper CoPilot, the first in our revolutionary Pip Piper Series. This all-inclusive toolset is meticulously crafted for serious traders, focusing on key areas such as Risk Management, Trade Management, Prop Firm Rule Compliance, and Advanced Account Management . With CoPilot, you’re not just investing in a tool—you’re gaining a strategic partner in the intricate world of trading. Important Notice: To ensure you receive the fu
    FREE
    JPY Vision MT5
    Daniel Barbosa De Lima
    5 (1)
    Atention:  This expert is free! You can run for a while, check the quality of my work and comeback for my other EAs. I have posted some and there are several being developed. Stay tuned! JPY Vision MT5   is the result of many hours of testing and validation wich works with several indicators such as Awesome Oscillator, Bears Power and Bulls Power. It is an expert advisor that demonstrates consistency and long-lasting results over the long term. Check the backtest in the images. Advantages of the
    FREE
    Close by percentage MT5
    Konstantin Kulikov
    4.86 (7)
    Hello friends. I wrote this utility specifically for use in my profile with a large number of Expert Advisors and sets ("Joint_profiles_from_grid_sets"   https://www.mql5.com/en/blogs/post/747929 ). Now, in order to limit losses on the account, there is no need to change the "Close_positions_at_percentage_of_loss" parameter on each chart. Just open   one   additional chart, attach this utility and set the desired percentage for closing all trades on the account. The utility has the following fu
    FREE
    SIMPLE AND QUICK CHART CLEANUP SCRIPT - FREE FOR ALL - EASY TO DRAG AND DROP ONTO THE CHART - A MUST HAVE IN MY EYES Everybody loves to draw on a chart! But cleaning is nobodies favor. Most of the time it will be faster to dump all and redraw the important part. Repetition makes you good! ALWAYS think about that! KEEP IT GROWING, ;-) I wish you a good day, Traders! If you need something, send me a message. Best wishes to you from Vienna!
    FREE
    Ordem Facil
    Clesio Hector Dufau Da Conceicao
    EA Ordem Fácil helps you open pending buy and sell orders (buy or sell stop) using the SHIFT, CTRL keys and mouse left button click. To create a buy stop order, press the SHIFT key (only once) and click on mouse left button on the chart above the price. To create a sell stop order, press the CTRL key (only once) and click on mouse left button on the chart below the price. While the order is not opened, when you moving the mouse cursor on the chart, on the left and above corner of the ch
    This tool will allow you to export the Historical data (Open, High, Low, Close, Volume) for any financial instrument present in your MetaTrader 5. You can download multiple Symbols and TimeFrames in the same csv file. Also, you can schedule the frequency of download (every 5 minutes, 60 minutes, etc.). No need to open a lot of charts in order to get the last data, the tool will download the data directly. The CSV File will be stored in the folder: \MQL5\Files . How it works Select the Symbols
    FREE
    This robot sends Telegram notifications based on the coloring rules of PLATINUM Candle indicator. Example message for selling assets: [SPX][M15] PLATINUM TO SELL 11:45. Example message for buying assets : [EURUSD][M15] PLATINUM TO BUY 11:45 AM. Before enable Telegram notifications  you need to create a Telegram bot, get the bot API Key and also get your personal Telegram chatId. It's not possible to send messages to groups or channels. You can only send messages to your user chatId. You shoul
    FREE
    PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
    Symbol Manager for MT5
    Taras Slobodyanik
    5 (3)
    Symbol Manager or Grid Manager, designed to group orders into one position (by symbol and by direction). This utility will be useful to multi-currency traders, who can have multiple orders on several pairs. You will be able to see the total number of lots, the total profit, and set virtual stop loss and virtual take profit. To set a real TP (or SL), you must first set the virtual value, and then enter the command in this cell: "set". If you want to set real TP/SL for all orders at once, then en
    使用说明: https://www.mql5.com/zh/blogs/post/754946 MT4版本: https://www.mql5.com/zh/market/product/88205 MT5 版本: https://www.mql5.com/zh/market/product/88204 ---------------------------------------------- 1.复制订单,从12个主帐号到100个从帐号.从帐号数量可以自定,从12个到100个。 2.支持MT4到MT4, MT4到MT5, MT5到MT4,MT5 到MT5. 3.识别不同平台的交易品种后缀,如EURUSD,EURUSDm,EURUSDk. 4.自定义货币匹配,如XAUUSD=GOLD. 5.可复制所有交易,或只复制BUY,SELL,CLOSE指令 6.可选择是否复制止盈止损 7.可反向复制,如主帐号是BUY,从帐户就是SELL,反之也是。当主帐号平仓时,从帐户不管是同向复制还是反向复制,都会同时平仓 8.发生意外如从帐号关闭时,主帐号有平仓信号而从帐号没有及时复制,当从帐号再次
    Hi you, I need your help! Be my Patron, let's make it possible! https://www.patreon.com/joaopeuko https://github.com/Joaopeuko/Mql5-Python-Integration Channel: English version - Versão Inglês: https://www.mql5.com/en/channels/Mql5_Python_Integration_EN Portuguese version - Versão Português: https://www.mql5.com/en/channels/Mql5_Python_Integration_PT Free version with 5 indicators: https://www.mql5.com/en/market/product/57574 This version has 38 indicators, 5 from the free vers
    FREE
    Tick Value
    Prince Prah Kofi Botchway
    John 14:6  Jesus saith unto him, I am the   way , the   truth , and the   life : no man cometh unto the Father, but by me. TICK VALUE : Multi-Currency Account Indicator Description:   The TICK VALUE : Multi-Currency Account Indicator is a powerful and versatile tool designed for traders looking to streamline their portfolio management across multiple currency pairs. With its robust functionality, this indicator not only provides comprehensive historical profit calculations but also allows f
    FREE
    MACD Colored ZeroLag
    Farzin Sadeghi Bonjar
    4.4 (5)
    It is the MQL5 version of zero lag MACD that was available for MT4 here: https://www.mql5.com/en/code/9993 Also there was a colored version of it here but it had some problems: https://www.mql5.com/en/code/8703 I fixed the MT4 version which has 95 lines of code. It took me 5 days to write the MT5 version.(reading the logs and testing multiple times and finding out the difference of MT5 and MT4!) My first MQL5 version of this indicator had 400 lines of code but I optimized my own code again and n
    FREE
    Value Chart Candlesticks
    Flavio Javier Jarabeck
    4.73 (11)
    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
    MarketPro toolkit
    Johannes Hermanus Cilliers
    Start earning profits by copying All trades are sent by our successful Forex trader & are extremely profitable. You can earn profits by copying trades daily Trial Period included You'll also get access to extremely powerful trading education which is designed in a simple way for you to become a profitable trader, even if you have no trading experience. https://ec137gsj1wp5tp7dbjkdkxfr4x.hop.clickbank.net/?cbpage=vip
    FREE
    Chart Service — improving the charts of the custom symbol. The service shows trading levels and the bid/ask price line on a custom symbol chart. For example, it can be used when working on a seconds chart built using the " Seconds Chart " utility, which helps to build seconds chart in the MT5 terminal. Unlike Expert Advisors, indicators and scripts, services are not linked to a specific chart. Such applications run in the background and are launched automatically when the terminal is started (if
    FREE
    这种用于从无穷远衡量货币强弱的创新指标是长期交易的黄牛和交易者不可或缺的助手。 分析货币强弱的系统早已被世界领先的交易者所熟知并在市场上使用。 没有这种分析,任何套利交易都是不完整的。 我们的指标很容易确定基础货币相对于彼此的强弱。 它显示所有或当前货币对的折线图,允许即时分析和搜索最强的入口点。 该指标直观,允许您快速找到并切换到任何一对,具有可放置在地下室和主图表上的移动面板。 通知货币强度变化的计时器模式使交易者有机会在手机上收到通知。  使用货币功率计无穷大指示器的几种策略: 1. 使用货币强度的线性显示图表搜索交叉点作为新兴趋势的信号 2. 在趋势反转信号出现后,向强势货币方向反弹 3. 使用货币强度发散分析扭转当前趋势 4. 使用其他无限指标向强势货币方向交易 
    FREE
    White Weis Volume Ticks
    Ricardo Almeida Branco
    5 (4)
    White Weis Volume This indicator shows the sum of the volume in each wave, bulish or bearish, as idealized by David Weis , but it brings an important addition , which is the marking of the bar with the highest volume of the wave (White Bar)! In coding the indicator, it was sought to optimize the code to require minimal processing during use and not to overload mt5. The indicator can be used for pre-trading analysis and study, where the trader analyzes possible points of support and resi
    Position Selective Close MT5
    Francisco Manuel Vicente Berardo
    The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input p
    FREE
    LT Ajuste Diario
    Thiago Duarte
    3.67 (3)
    This is a tool in script type. It shows in chart the actual and/or past day ajust price in a horizontal line. The symbol name and it expiration must be set up according to the actual parameters. The lines appearance are fully customizable. You need to authorize the B3 url on MT5 configurations:  www2.bmf.com.br. You need this to the tool can work. This is a tool for brazilian B3 market only!
    FREE
    BBMA Gold Martingale  Trailing EA The Moving Average Martingale Trailing EA employs a trend-following strategy, also known as the Breakout strategy, to open order trades. It also utilizes a Martingale strategy for trade placement. For money management, it implements a trailing stop loss based on support and resistance levels.  Martingale Distance Function : This function determines the distance for opening the next order in a Martingale strategy, based on specific conditions for openi
    FREE
    Volume Weighted Average Price or VWAP is an indicator wich shows different average prices on chart. This is very useful to find strong negotiation price areas and as trend following. Configurations: Day, Week and Month - Show different VWAPs according to the period. You can change each line style on "colors" tab. Any doubt or suggestion please contact us. Enjoy! This is a free indicator, but it took hours to develop. If you want to pay me a coffee, I appreciate a lot   <3 PayPal, Skrill, Ne
    FREE
    Weis Waves
    Flavio Javier Jarabeck
    2.83 (18)
    The original author is David Weis, an expert in the Wyckoff Method. The Weis Wave is a modern adaptation of the 1930's Wyckoff Method, another expert in Tape Reading techniques and Chart Analysis. Weis Waves takes market volume and stacks it into waves according to price conditions giving the trader valuable insights about the market conditions. If you want to learn more about this subject you can find tons of videos in YouTube. Just look for "The Wickoff Method", "Weis Wave" and "Volume Spread
    FREE
    News Loader Pro is a tool that automatically updates every economic news in real time with detailed information from several online data sources. It uses the unique technology to load data with full details from popular Forex websites. An alert will be sent to your mobile/email before an upcoming news release. Moreover, it also marks the news release points on the chart for further review and research. In Forex trading, news is one of the important factors that move the market. Sticking with ne
    该产品的买家也购买
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.39 (167)
    它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。   注意,该应用程序在策略测试器中不起作用。 您可以在描述页面下载演示版  Manual, Description, Download demo 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 :
    欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
    TradePanel MT5
    Alfiya Fazylova
    4.85 (120)
    交易面板是一个多功能的交易助手。该应用程序包含超过 50 个用于手动交易的交易功能,并允许您自动化大多数交易操作。 注意,该应用程序在策略测试器中不起作用。购买之前,您可以在模拟帐户上测试演示版本。演示版 这里 。 完整说明 这里 。 贸易。 让您一键执行交易操作: 通过自动风险计算打开挂单和仓位。 一键打开多个订单和仓位。 打开订单网格。 按组关闭挂单和持仓。 头寸反转(关闭买入并打开卖出或关闭卖出并打开买入)。 锁定头寸(开立额外头寸,以平衡买入和卖出头寸的交易量)。 一键部分平仓所有仓位。 为同一价格水平的所有头寸设置止盈和止损。 将所有头寸的止损设置为该头寸的盈亏平衡水平。 开单建仓时,您可以应用以下功能: 计算交易量的多个订单或仓位之间的分布(一键开仓多个订单或仓位时)。 图表上未来订单交易水平的可视化。 设置开仓时允许的最大点差大小。 止盈和止损之间的自动比率。 虚拟止损和止盈。 根据当前点差的大小自动增加止损和止盈的大小。 根据 ATR 指标的读数计算止盈和止损。 设置挂单的到期日期。 挂单设置为“追踪”(挂单自动跟随当前价格移动指定距离)。 管理通过移动终端(手机)开立
    Local Trade Copier EA MT5
    Juvenille Emperor Limited
    4.99 (76)
    通过 Local Trade Copier EA MT5 获得非常快速的交易复制体验。它的简单1分钟设置,使您可以在同一台Windows计算机或Windows VPS上在多个MetaTrader终端之间复制交易,具有闪电般快速的复制速度,低于0.5秒。 无论您是初学者还是专业交易者, Local Trade Copier EA MT5 都提供了广泛的选项,可根据您的特定需求进行自定义。对于任何希望增加利润潜力的人来说,这都是终极解决方案。 今天就尝试一下,看看为什么它是市场上最快、最简单的贸易复印机! 提示: 您可以在您的模拟账户中下载并试用 Local Trade Copier EA MT5 模拟版: 这里 将下载的免费演示文件粘贴到您的 MT5 >> 文件 >> 打开数据文件夹 >> MQL5 >> 专家文件夹并重新启动您的终端。  免费演示版本每次可在 4 小时内发挥全部功能,仅限演示帐户。 要重置试用期,请转至 MT5 >> 工具 >> 全局变量 >> Control + A >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 Loc
    Trade Dashboard MT5
    Fatemeh Ameri
    4.97 (58)
    疲于复杂的订单下达和手动计算?Trade Dashboard 是您的解决方案。凭借其用户友好的界面,订单下达变得轻而易举,只需点击一下,您就可以开设交易、设置止损和止盈水平、管理交易手数,并计算风险回报比,让您只需专注于您的策略。告别手动计算,使用 Trade Dashboard 简化您的交易体验。 立即下载演示版本 。 您可以在这里找到仪表盘功能和特性的详细信息 。 加入 Telegram 频道 。 购买后请给我发消息以获取支持。如果您需要添加更多功能,可以在产品的评论区留下您的想法,我愿意听取任何建议,希望您能在使用我的产品时获得最佳体验 。 这是 MT4 版本。 风险管理:使用 Trade Dashboard,可以将您的风险设置为账户余额或权益的百分比,或将风险设置为总金额。在图表上直观地定义您的止损,让工具准确计算每个货币对的适当手数。该工具还可以根据您期望的风险回报比自动设置止盈水平。它甚至可以在手数计算中涵盖佣金和点差费用。此外,您的止损和止盈可以转变为虚拟水平,隐藏于经纪商。通过 Trade Dashboard 的高级风险管理功能,掌控风险,保护您的资本。
    Invi Gold Hunters
    Niruban Chakravarthy R
    Gold Hunters is one of the straightforward tool to analysis the volatile market of Gold with demands precision, in-depth analysis, strong risk management and eliminating the need for constant market monitoring. Gold Hunter will hunt the good trade position with precise risk management on all market conditions on Gold.  Hunters plug-and-play functionality means you can get started with minimal effort, Simply install me and let me handle the rest. We will diligently monitor the market, identify t
    MT5 to Telegram Signal Provider 是一个易于使用且完全可自定义的工具,它允许向 Telegram 的聊天室、频道或群组发送 指定 的信号,将您的账户变为一个 信号提供商 。 与大多数竞争产品不同,它不使用 DLL 导入。 [ 演示 ] [ 手册 ] [ MT4 版本 ] [ Discord 版本 ] [ Telegram 频道 ] 设置 提供了逐步的 用户指南 。 不需要了解 Telegram API;开发者提供了您所需的一切。 关键特性 能够自定义发送给订阅者的订单详情 您可以创建分层的订阅模型,例如铜、银、金。其中金订阅获得所有信号等。 通过 id、符号或评论过滤订单 包括执行订单的图表截图 在发送的截图上绘制已关闭的订单,以便额外核实 延迟发送新订单消息的可能性,以便在发送前对位置进行调整 订单详情完全透明: 新的市场订单*带截图 订单修改(止损、获利) 已关闭的订单*带截图 部分关闭的订单** 新的挂单 修改的挂单(进场价格) 挂单激活(作为新的市场订单附加) 已删除的挂单 历史订单报告*** 可自定义的评论 注意: *
    B e sure to watch this video before using A community for users, product discussion, update news, and first line of support  Use Webmoney For payments in cryptocurrencies. How I use this algo tool   Lazy Trader is NOT SUITABLE FOR SCALPING EVERY MINUTE MOVEMENT, ESPECIALLY IN CRYPTO. WITHOUT UNDERSTANDING WHAT IS HAPPENING ON THE CHART, THERE IS NO POINT IN BLINDLY HOPING FOR PROFITS! Lazy Trader does NOT USE openAI chat-gpt-4 technologies, which are added to descriptions for product promoti
    The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Merry Christmas and Happy New Year Price 169$ until Jan 01 2025 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 co
    Trade Manager DaneTrades
    Levi Dane Benjamin
    4.74 (23)
    交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 5 平台。多语言支持。 MT4版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停
    Telegram To MT5 Receiver
    Levi Dane Benjamin
    4.89 (9)
    将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT5。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |   MT4版本  |   不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT5 接收器在策略测试器中不起作用! Telegram 至 MT5 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止过度交易
    Trade Manager DashPlus
    Apex Software Ltd
    5 (1)
    DashPlus 是一款先进的交易管理工具,旨在提升您在 MetaTrader 5 平台上的交易效率和效果。它提供一整套功能,包括风险计算、订单管理、先进的网格系统、基于图表的工具和绩效分析。 主要功能 1. 恢复网格 实施一个平均和灵活的网格系统,以在不利的市场条件下管理交易。 允许设置战略性进出点,以优化交易恢复。 2. 叠加网格 通过在强劲的市场波动中增加仓位,最大化有利交易的潜在回报。 帮助您通过扩展获利交易来利用趋势市场。 3. 盈亏线 在图表上直接提供潜在利润和损失场景的可视化表示。 调整设置并拖动盈亏线,以在执行之前评估各种交易结果。 4. 篮子模式 简化同一交易品种的多仓位管理,将它们合并为一个聚合仓位。 基于平均价格,便于监控和应用止损、止盈以及其他订单修改。 5. 图表上的新闻 将预定的经济新闻事件整合到您的交易图表中。 帮助您随时掌握可能影响市场波动的即将发生的事件,从而更好地规划交易。 6. 警报 设置基于时间或价格的警报,通知会显示在 MT5 中,或通过 MT5 应用发送到您的移动设备。 对监控关键价格水平或重要的交易时段非常有用。 7. 绩效统计 提供详细的
    Exp COPYLOT CLIENT for MT5
    Vladislav Andruschenko
    4.12 (26)
    MT5 交易复印机是 МetaТrader 5 平台的交易复印机 。 它复制外汇交易 之间   任何账户 MT5   -   MT5, MT4   -   MT5 对于 COPYLOT MT5 版本(或 MT4   - MT4 MT5   -   MT4 对于 COPYLOT MT4 版本) 值得信赖的复印机! MT4版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 您还可以在 МТ4 终端 (   МТ4   -   МТ4, МТ5   -   МТ4   ) 中 复制交易: COPYLOT CLIENT for MT4 此版本包括在终端 МТ5   -   МТ5, МТ4   -   МТ5 之间 。 交易复制器用于在 2/3/10 终端之间复制交易/头寸。 支持从模拟账户和投资账户复制。 该程序可以在多个终端绑定上运行。 使用它作为您在一个账户上交易的各种投资者账户的交易的同步器, - COPYLOT 会将您的交易复制到其他终端。 从 多个 终端复制到一个; 从一
    YuClusters
    Yury Kulikov
    4.93 (41)
    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
    Trade copier MT5
    Alfiya Fazylova
    4.48 (27)
    Trade Copier 是一种专业实用程序,旨在复制和同步交易账户之间的交易。 复制发生从供应商的帐户/终端到收件人的帐户/终端,安装在同一台计算机或 vps 上。 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 主要功能和优点: 支持复制MT5>MT5、MT4>MT5、MT5>MT4,包括МТ5 netting账户。 供应商和收件人模式在同一产品中实现。 简单直观的界面,允许您直接从图表中实时控制复制。 连接中断或终端重新启动时不会丢失设置和位置。 允许您选择要复制的符号,也可以替换接收者的符号,例如 EURUSD> USDJPY。 支持回拷贝。 能够仅复制某些订单。 允许您设置开仓交易价格的最大差异和最大时间延迟。 正确复制部分订单关闭的执行。 计算复制手数的几种方法。 同步止盈和止损。有几种方法可以计算它们的位置。 支持通过执行在“Market account”上工作,其中 SL / TP 仅在开仓后设置。 如何使用简单的设置复制交易 将供应商终端和接收终端安装在同一台计算机或 VPS 上。 在供应商终端上以“Master”模式安装复印机,然后
    使用自定义警报,领先于市场走势:您的终极多市场扫描器 Custom Alerts 是功能强大的多合一市场监测工具,能让您轻松识别多个市场的高潜力设置。 Custom Alerts 涵盖所有八种主要货币(美元、加元、英镑、欧元、瑞士法郎、日元、澳元、新西兰元)、黄金 (XAU),以及多达七种关键指数(包括 US30、UK100、WTI 和比特币),让您随时了解各种资产的关键变化。 该工具无缝整合了我们先进的 FX Power、FX Volume 和 IX Power 指标的 数据,以完全可定制的格式为您提供重大市场事件的实时警报。 自定义警报可确保您随时准备好对潜在交易采取行动,而无需不断查看图表。 自定义警报的主要优势 多市场覆盖:一站式洞察货币、指数、商品和加密货币。 实时事件警报:通过重要市场变化通知,不错过任何关键动向。 完全定制:根据您独特的交易风格定制警报,让您只获得所需的信息。 数据驱动的洞察力:利用来自 FX Power、FX Volume 和 IX Power 指标的数据,提供强大的数据驱动信号。 设置简单 要充分释放 Custom Alerts 的潜力,请
    交易面板一键交易。 处理仓位和订单! 通过 图表 或 键盘 进行交易 。 使用我们的交易面板,您只需单击一下即可直接从图表中执行交易,执行交易操作的速度比使用标准 MetaTrader 控件快 30 倍。 参数和函数的自动计算使交易者的交易更加快捷、方便。 图形提示、信息标签和有关贸易交易的完整信息均位于图表 MetaTrader 上。 MT4版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 打开和关闭、反转和锁定、部分关闭/Autolot。虚拟/真实止损/止盈/追踪止损/盈亏平衡,订单网格... МetaТrader 5 中主要订单的交易控制面板 :买入、卖出、buystop、buylimit、sellstop、selllimit、平仓、删除、修改、追踪止损、止损、获利。 有 5 个选项卡 可用:头寸、挂单、账户信息、信号和总利润。 Description on English VirtualTradePad在“  MQL5语言最佳图形面板  ”竞赛中 获得二等奖 。 注意
    Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
    -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
    Market Screener
    Andrey Khatimlianskii
    5 (1)
    Professional tool for professional traders It allows you to browse all available financial instruments and select best ones to trade with lightning speed. Fastest market screening ever Move your mouse over the instruments and instantly see 3 charts with selected timeframes and predefined indicators! Click on the symbol name to hold it. Use UP and DOWN keys to select previous /  next instrument. Ultimate charting Smooth scale, automatic indicator lines width, smart grid and much more. You'll
    -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
    Risk Manager for MT5
    Sergey Batudayev
    4.53 (15)
    MT5 的 Expert Advisor 风险管理器是一个非常重要的程序,我认为对每个交易者来说都是必要的程序。 使用此 EA 交易,您将能够控制您交易账户中的风险。风险和利润控制可以以货币形式和百分比形式进行。 要让智能交易系统工作,只需将其附加到货币对图表并以存款货币或当前余额的百分比设置可接受的风险值。 PROMO BUY 1 GET 2 FREE -   https://www.mql5.com/en/blogs/post/754725 顾问功能 该风险经理将帮助您控制风险: - 交易 - 每天 - 一个星期 - 一个月 你也可以控制 1) 交易时允许的最大手数 2) 每天最大订单数 3) 每天最大利润 4) 设置 Equity 的获利了结 不仅如此,如果您在设置中指定自动设置,顾问还可以为您设置默认的止损和止盈。 顾问会在每个事件中附上警报,并向您解释删除订单的原因。比如你开了,你开了第6个订单,按照你的规则你每天只允许开5个订单,顾问会立即删除6个并说明原因。 例如,您开仓的手数比您最初向自己指示的手数大,顾问将删除订单并解释原因。
    Grid Manual MT5
    Alfiya Fazylova
    4.88 (16)
    Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 完整说明和演示版 此處 。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。 計算初始手數時,
    Profit or Loss Pad
    Vladislav Andruschenko
    4.5 (10)
    在 MetaTrader 5 中使用利润跟踪功能在达到总利润/亏损时平仓。 带尾随的 CloseIfProfitorLoss 您可以启用 虚拟停止(单独订单)   , 分别计算和关闭 买入和卖出头寸 (Separate BUY SELL)   , 关闭和计算 所有交易品种或仅当前交易品种(所有交易品种)   , 启用追踪获利( 追踪 利润) 头寸是根据存款货币、点数、% 和回撤 的价值平仓的。 该应用程序旨在与任何其他 EA 一起用于任何账户或与手动交易结合使用。 MT4版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 一旦某些货币对或所有货币对的交易总余额大于或等于设置中指定的值,所有头寸将被关闭并删除订单。 此版本不仅能够在指定的利润水平平仓,而且还可以追踪利润以获得更好的结果。 我们实用程序的主要功能 按所有交易品种的总利润平仓; 按单独交易的总利润结算。 (虚拟模式); 按总利润结算并追踪利润; 按总利润以点数、百分比或货币结算; 所有交易或单独交易均以总亏损结束
    DrawDown Limiter
    Haidar, Lionel Haj Ali
    5 (18)
    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
    Trade Assistant 38 in 1
    Makarii Gubaydullin
    4.89 (18)
    多功能工具:超过65个功能,其中包括:手数计算,价格行为,盈亏比,交易管理,供需区域。 演示版   |   用户手册   |  MT5版 任何问题 / 改进意见 / 如果发生了故障或错误    都可以联系我 该实用程序在策略测试器中不起作用:您可以在此处下载 演示版来测 试产品。 Trading functions require permitted auto trading (including on the broker's side) 简化,加快并且自动化你的交易过程。利用这款工具的控制功能就能增强普通交易端的执行力。 建立一笔新的交易:手数 / 风险 / 盈亏计算 1. 手数计算工具 (基于风险规模的交易量计算) 2. 风险计算工具 (基于手数大小的风险额计算) 3. 盈亏比 4. 订单的激活和触发,买入或卖出限价/买入或卖出止损 5. 虚拟的止损/止盈 (隐藏的止损,止盈:交易商不可见) 6.  智能的止损/入场点:当价格柱在收盘时已超越了才入场 (避免无效触发) 7. 隐藏掉挂单 (虚拟的订单) 8. 预订挂单:在市场关闭的时候你也可以下挂单 (适合周末
    Take a Break MT5
    Eric Emmrich
    4.78 (18)
    The most advanced news filter and drawdown limiter on MQL market Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when Account Equity, Balance or Margin is low. Only trade on specific dates/times, e.g. the Asian session. Stop t
    跟单->方便快捷的界面交互,用户上手即用       ->>>> 推荐在windows电脑,或者VPS Windows上使用 特色功能: 多样化个性跟单设置: 1.对不同的信号源可以设置不同的手数模式 2.不同的信号源分别设置正向反向跟单 3.信号分别设置注释 4.是否根据合约手数校准手数 多样化个性跟单设置2: 1.对不同的品种可以设置不同的手数模式 2.不同的品种分别设置正向反向跟单 3.信号分别设置注释 4.是否根据合约手数校准手数 注释过滤,MAGIC过滤,信号手数过滤,本地品种过滤 工作时间设置 反向同步接收端的平仓 订单绑定功能:任意订单可以绑定到设置信号源订单上( 双击表格更改) 账户风险控制 基本功能: 跟单正常交互速度0.5s以下 自动检测信号源,并显示信号源账号列表 自动匹配品种,不同平台常用交易品种(后缀不同等特殊情况)95%自动匹配,基本无需手动设置,品种映射表可随意双击更改对应品种.(映射表具有快速搜索品种功能) 4种手数计算模式(1.倍率 2.固定手数 3.自适应资金风险 4.源账户资金比例风险) 特殊手数模式:可以根据止损资金风险反算手数(可能止损过
    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
    实用程序旨在更改当前、所有或选定图表的交易工具、时间范围更改以及历史记录中的同步移动(自动或单击)所有图表。交易品种列表是从“市场概览”中读取的。您可以更改按钮的颜色、大小和位置。当您单击同步按钮或在自动模式下移动鼠标/键盘时,图表同步发生在活动图表中的第一个可见条时。可以使用光标键更改 TF:向左/向右,以及交易符号 - 向上/向下。 8 种主要货币的按钮允许您从货币对列表(取自市场概览或用户字符串)中打开图表。可以在“新图表的模板名称”参数中指定新图表的模板。更改货币时,会保存当前图表的模板,并在指标打开的图表上替换货币对的货币。当您再次选择货币时,会加载相应的模板。 复制模式允许您一次将对象复制到当前工具的所有图表。 全局十字准线允许您查看所选图表上指定柱线的价格走势。 参数说明及说明 。 主要功能列表(该实用程序不断改进,所有新功能和更新都可在“新增功能”选项卡中找到): 为当前/选定/所有图表切换交易工具。 使用向上/向下光标键切换交易工具。 在主图表上更改时为所有/选定图表切换交易工具(主图表是安装了实用程序的图表)。 使用鼠标按钮突出显示交易工具的按钮。 预设交易工
    作者的更多信息
    Do you think it's a bit cumbersome when you need to switch symbols or timeframes with mouse click? 1. What is this? This is a program that can switch symbols and timeframes with direction keys. Fast switching, very convenient, no mouse click required. For traders, one symbol with multi-timeframe charts are usually added,  you can change symbol on those charts  easily . For multi-currency traders, different symbol charts are usually added, you can also change those timeframes easily. I wrote thi
    This product can be used to synchronize multiple Charts, and each Chart can be set to a different sync mode. With this product you can better view and manipulate charts: different time frames for a single Symbol, the same time frame for multiple Symbols... and more. PS: The link below is the FreeDemo product, you can use it on EURUSD/XUAUSD/USDCNH symbol: https://www.mql5.com/en/market/product/38557 Feature: Chart settings  can be synchronized, including : background, indentation, size, etc.
    Do you think it's a bit cumbersome when you need to switch symbols or timeframes with mouse click? 1. What is this? This is a program that can switch symbols and timeframes with direction keys. Fast switching, very convenient, no mouse click required. For traders, one symbol with multi-timeframe charts are usually added,  you can change symbol on those charts easily. For multi-currency traders, different symbol charts are usually added, you can also change those timeframes easily. I wrote this p
    1.这是什么         上涨波动和下降波动是不一样的,无论是学术研究还是实际检验都说明了这一点。         原始的ATR指标是把上涨波动和下降波动放在一起进行计算。本指标则是把上涨波动和下降波动分开进行计算,这样能更好的帮助你研究市场。 2.指标说明         本指标的计算有两种模式,如下表所示: 0 1 2 3 4 5 波动方向 + - + + - + TR 15 20 17 5 16 8 原始ATR (15+20+17+5+16+8)/6=13.5 模式1 不以0填充位置,周期数改变 模式1上涨TR 15 17 5 8 模式1下跌TR 20 16 模式1上涨ATR (15+17+5+8)/4=11.25 模式1下跌ATR (20+16)/2=18 模式2 以0填充位置,周期数不变 模式2上涨TR 15 0 17 5 0 8 模式2下跌TR 0 20 0 0 16 0 模式2上涨ATR (15+0+17+5+0+8)/6=7.5 模式2下跌ATR (0+20+0+0+16+0)/6=6         如上表。比如周期为6的序列中,有4个上涨2个下跌。模式
    1.这是什么: 下载Market Watch中所有的Symbol数据到系统。PS:不是把数据输出到文档。 2.为什么要用这个: 如果系统中没有数据:网络链接不好的时候,用MT5看一个Symbol需要等待很长时间;在不同Symbol或不同TimeFrame切换,如果系统没有数据也需要等待很久;如果进行长时间回测,系统没有数据,需要下载很长时间。 所以提前把历史数据下载到系统中,能提高工作效率。 3.怎么使用: parameters: input bool bool_usualtimeframe=true; //true-系统默认TimeFrames; || false-所有的TimeFrames. input bool bool_allSymbol=true; //true-Market Watch中所有品种; || false-根据你的输入 input string input_Symbol=NULL; //上面参数为false时,输入你的Symbol名称 input datetime time_Start=D'2017.01.01'; //默认数据下载开始时间 input int s
    According to trading experience: Some symbols are easy to reverse on certain days, such as Monday, or afternoon, and so on. So comparing the current price with the corresponding historical moment price is valuable. If the price coordinate system uses a logarithmic price, you will get a lot of valuable information. 1. What is this? This program can convert the symbol price and add it to your Chart. You can compare it with your major chart. The DEMO version Link: https://www.mql5.com/en/market/p
    What is this: Violent trading: means sending a large number of orders to your brokerage server,  it can conduct a stress test of the trading. In this program you can run a variety of trading tests.  Now you can trade at high speed, For example 1000 orders in an instant. The Demo version's link:  https://www.mql5.com/en/market/product/38431/ Why to use: Whether manual trading or EA trading,  the status of the broker server is very important. So it is beneficial to conduct a trading stress test on
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    1. Why did I develop this series of indicators I found that most traders need to use multiple time frame indicators. They usually switch time frame to see indicators. However, once the timeframe is switched, you cannot see the  corresponding relationship  between  the price in the smaller timeframe  and  the indicator in the larger timeframe . For example: if your price chart is in H1 timeframe, you can see H4, D1 and W1 indicators in H1 timeframe Chart. This is more helpful for you to find t
    筛选:
    Аврора
    96
    Аврора 2021.10.15 03:47 
     

    用户没有留下任何评级信息

    回复评论
    版本 1.4 2022.06.26
    Increase computing speed.
    版本 1.3 2021.11.26
    fix some bug.
    版本 1.2 2021.11.26
    Added functionality for adaptive brokers to automatically adjust data time zones.
    add the parameters:
    bool bool_BrokerAuto = true; // Whether the broker automatically adjusts the time zone, usually True.
    int Inp_utc = 3; // if the above is true, summer utc; if false summer or winter utc.
    版本 1.1 2021.10.13
    reset default parameters