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

K Trade Lib

MT4/5通用交易库(  一份代码通用4和5 )

#import "K Trade Lib.ex4"
   //简单开单
   long OrderOpen(int type,double volume,int magic,string symbol="",string comment="",double opprice=0,double sl=0,double tp=0,int expiration=0,bool slsetmode=false,bool tpsetmode=false);
   //复杂开单
   void SetMagic(int magic,int magic_plus=0);
   void SetLotsAddMode(int mode=0,double lotsadd=0);
   long OrderOpenAdvance(int mode,int type,double volume,int step,int magic,string symbol="",string comment="",double sl=0,double tp=0,bool slsetmode=false,bool tpsetmode=false);
#import

1.简单的系统OrderSend二次封装:

OrderOpen函数

long OrderOpen(
      int type,         //交易类型
      double volume,    //交易手数
      int magic,        //魔术号
      string symbol="", //交易品种
      string comment="",//注释
      double opprice=0, //挂单价格,非挂单可以留空
      double sl=0,      //止损点数,区别于系统的SL
      double tp=0,      //止盈点数,区别于系统的TP
      int expiration=0, //挂单中设置,同系统
      bool slsetmode=false,//设置为true,设置sl为价格否则为点数
      bool tpsetmode=false //设置为true,设置tp为价格否则为点数 
);

2.复杂订单系统开单(包含逆势加仓,顺势加仓,随机间距加仓; 手数增加模式有倍数模式,增量模式,以及固定手数模式)

void SetMagic(
   int magic,        //设置MAGIC,本设置是针对需要统计订单所对应的魔术号
   int magic_plus=0  //可以设置范围  当 (魔术号>=magic ,魔术号<=magic+magic_plus) 的范围内的魔术号订单都会作为统计 
);
void SetLotsAddMode(
   int mode=0,          //1->倍数开仓  2->增量开仓 ,0或者其他->固定手数下面参数设置无效
   double lotsadd=0     //根据mode设置而定,倍率手数本参数为倍率,增量模式为增量,否则无效
);
long OrderOpenAdvance(
   int mode,         //0x1 逆势加仓,0x2顺势加仓,0x4间距随机加仓 
   int type,         //交易类型 0->BUY 1->SELL
   double volume,    //固定手数 
   int step,         //加仓间距
   int magic,        //魔术号
   string symbol="", //品种
   string comment="",//注释 
   double sl=0,      //止损设置(默认设置点数)
   double tp=0,      //止盈设置(默认设置点数)
   bool slsetmode=false,//false为sl点数设置,true为sl价格模式
   bool tpsetmode=false //false为tp点数设置,true为tp价格模式
);

交易范例:(马丁逆势加仓)  非常简单实现马丁加仓,同样可以简单的实现顺势加仓等

void OnTick()
  {
//--- 

      SetLotsAddMode(1,2.0);
      int mode=1;//逆势加仓模式
      int type=0;//0为多单,1为空单  同系统方式
      double lots=0.01; //手数设置
      int step=200; //加仓间距
      int magic =556024;//设置魔术号
      
      OrderOpenAdvance(mode,type,lots,step,magic);
  }


推荐产品
RedeeCash Statistics
Patrick Odonnell Ingle
1 (1)
Version History Date Version Changes 07/10/2022 1.00 Initial release Description A collection of modern statistical functions that can be integrated into your own strategy. The included functions are, Mean Median Range Skew Max Min IRange Deviations AbsoluteDeviations MAD StandardDeviation Variance GetCorrelation SamplingDistributionStandardDeviation ZScore CorrelationCoefficient CoVariance Beta Confidence SNormInv PercentOfValue ValueOfPercent MQL Header (mqh) The required header is //+--------
FREE
Ichimoku Signals Scanner This is the Demo version, please download Full version  here. Find Ichimoku signals as easy as you can. Ichimoku is one of the most powerful trends recognition indicators. And it has valid signals for the trades. This indicator scans several symbols and time-frames by the Ichimoku to find all the signals that you want and show in a dashboard. It's easy to use, just drag it onto the chart. It's better to add  Ichimoku indicator  to chart before adding this indicator. Ichi
FREE
Mr Beast Indicator
Luis Mariano Vazquez Marcos
Indicador Gratuito desarrollado por Mr Beast Inversiones Mr Beast : Gestión de riesgo profesional. Brindo a la comunidad la entrada a productos de M Beast. Echar un vistazo a mis señales y expert advisors. Descuentos de hasta 70% Diclaimer: La negociación en Forex, CFD y Opciones conlleva un riesgo de pérdida sustancial y no es adecuada para todos los inversores. El alto grado de apalancamiento puede actuar en su contra y también en su favor, Antes de decidirse a operar en productos tan apalanca
FREE
Lib4 EAPadPRO for MT4
Vladislav Andruschenko
5 (5)
用于将信息面板添加到您的 MetaTrader 4 EA 的库。 我们不能保证程序的信息和界面会让您在交易中获利,但我们可以肯定地说,即使是最简单的程序界面也能增强第一印象。 将我们的面板添加到您的 智能交易系统的 详细说明和说明在我们的博客中:   LIB - EAPADPRO 分步说明 我们面板的详细说明和使用 EAPADPRO 的说明 MetaTrader 5 库版本 添加的过程包括 10 个步骤 ,我们的文章中详细介绍了它们。 安装库 从此站点安装库; 打开您的智能交易系统; 打开我们的示例和安装代码的分步指南,文件 Exp - EAPADPRO LIBRARY TEST(可以在博客中找到)   ; 按照建议中的说明执行每个步骤,或使用我们网站上的分步说明。 EAPADPRO 个性化 本段描述了您可以在我们的面板中更改的所有内容: versionea   - 面板中显示的智能交易系统版本; BMPLOGO   - 显示在面板上的 BMP 60x60 顾问的徽标; icon   - 您的专家的图标,显示在专家的属性中; defEANAME - 面板中显示的您的智能 交易系统的
FREE
Base Trading System
Che Jeib Che Said
3.5 (4)
For Multi Time Frame version, please click here. BASE TRADING SYSTEM is a useful tool to trade with simple strategy. It draws automatically base up for long trade and base down for short trade. Clear trade when base is going opposite direction. User can trade by instant market entry or by pending order entry. It depends on user best strategy. input: Base Box Color- UP base box , DOWN base box, UP base shadow, Down base shadow.
FREE
This is an Indicator that plots Time & Price . This is a good ICT Starter Indicator especially if you're new. This also has 4 Silver Bullets and 4 Macros.  If you liked this one, you can purchase the updated version of this which has CBDR and Asian Range . Updated Version:  https://www.mql5.com/en/market/product/109904 Please leave a review about your experience with this Indicator
FREE
Simple RSI Forex Trading Strategy
Victor Manuel Valderrama Zamora
2.5 (2)
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades when RSI indicator enter in oversold or overbought areas. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is EURGBP and the recommended timeframe to operate and to do backtests is H4. This Expert Advisor can be profitable in any TimeFrame a
FREE
Macd Martin
Roman Yablonskiy
2.5 (2)
Double Breakout   is an automatic expert advisor with two separate strateges that uses martingale. The MACD indicator with adjustable parameters is used as inputs for each flow of orders. The specified takeprofit and stoploss levels are used to exit the position.  General recommendation The minimum recommended deposit is 1000 cents. Spread is recommended not more than 3 points. It is better to use trend currency pairs. The martingale parameter can be set from 0.1 to any value. When martingale
FREE
Vanexio
Sayan Vandenhout
VANEXIO USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 5 great strategies The EA can be run on even a $20000
FREE
After purchasing, you can request and receive any two of my products for free! После покупки вы можете запросить и получить два любых моих продукта бесплатно! Simple fully automatic trading robot with simple default settings for currency pairs: EURUSD, GBPUSD working timeframe H1. The EA has averaging with the  d'Alembert  rate system for each subsequent order in the grid. Settings: Magic Number is a magic number. SL - Fixed Stop Loss. TP - Fixed Take Profit. Lot% - market entry (lot) as a pe
FREE
Forex Market Profile and Vwap
Lorentzos Roussos
5 (2)
外汇市场概况(简称FMP) 如果您希望在实时图表上看到它而不是阅读描述, 您可以立即在此处下载免费演示。 这不是什么: FMP 不是经典的字母编码 TPO 显示,不显示整体图表数据配置文件计算,并且不将图表分段并计算它们。 它能做什么 : 最重要的是,FMP 指示器将处理位于用户定义频谱左边缘和用户定义频谱右边缘之间的数据。 用户只需用鼠标拉动指示器的每一端即可定义频谱。 当指标右边缘被拉到实时柱并进一步(到未来)时,指标被认为是“实时的”(它会更新新柱) 该指标将一个“锚点”对象放在它所附加的图表上,然后将该锚点与硬盘驱动器上的文件相关联。 这允许您在图表上运行一个持续的 FMP,您的设置在重新启动时持续存在,直到图表 - 或指标 - 关闭。 FMP 指标可以在一个图表上运行多个自身实例,并且您可以命名它们。(名称在指标数据中显示为半透明,以便您能够区分它们) 指标的数据窗口被快速切换控件包围,当它们的状态发生变化时,这些控件会更新该图表的指标设置的“内存”。 左手柄、右手柄和数据窗口的显示可以自定义。您可以从 13 种不同的样式组合中进行选择,或者选择每个部分的单
FREE
Vanda FX
Sayan Vandenhout
5 (2)
Vanda FX USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 4 great strategies The EA can be run on even a $2000
FREE
Email Drawdown Alert
Roman Starostin
5 (15)
Free informative Indicator-helper. It'll be usefull for traders who trade many symbols or using grid systems (Averaging or Martingale). Indicator counts drawdown as percent and currency separate. It has a number of settings: Count deposite drawdown according equity value and send e-mail or notifications to user if DD more than set; Sending e-mail when max open orders reached; Shows price and remaining pips amount before MarginCall on current chart and Account generally; Display summary trade lot
FREE
Trend Monitor for MT4
STE S.S.COMPANY
4.44 (57)
自定义 MT5 (Metatrader 5) 指标,用于分析趋势和波动率分析器指标。此外,它确定了适用于大多数货币对和时间框架的趋势的开始和结束。 总之,我们根据超级趋势公式对其进行了编码,以通过添加波动率分析器来更加准确。 您是否正在寻找良好且可靠的支撑和阻力指标,请尝试我们的多合一水平指标(回调区、强支撑/阻力区、市场结构筛选器等。要获得 , 点击这里。 主要特点 确定趋势的开始和结束。 轻松识别趋势的强度(最大增加和最大减少) 确定市场修正。 ( 弱趋势 ) 在 Potentiel 趋势开始时获得警报。 优势 使用所有货币对(外汇、加密货币、指数和商品) 处理所有时间范围。 (推荐时间范围:H1 和 H4 时间范围) 警报生成器。 (弹出警报,推送通知警报...等) 文件(说明) 所有趋势监视器指标、文档(说明)均可在我们 MQL5 博客的这篇文章中找到: 单击此处。 警告 我们所有的指标都只能通过官方 Metatrader 商店(MQL5 市场)获得。 通过访问我们的 MQL5 配置文件,您将找到我们所有的指标和 EA(免费和付费)。 要访问我们
FREE
TIbors Timer
Tibor Hartmut Sturm
Indikator zur klaren Anzeige im Metatrader Dieser Indikator wurde von mir Entwickelt damit die Anzeige der relevanten Parameter klar und deutlich im Chart auf einen Blick zu sehen ist.  Er dient zur Information und ist ohne Gewähr.  Folgende Parameter werden angezeigt: -   Der  Aktuelle Kurs - Das Aktuelle Handelspaar - Die Restzeit zur nächsten Kerzenbildung / Zum Abschluss der Aktuellen Kerze - Die Kontonummer des Handelskontos - Die Frei Verfügbare Margin - Die Margin auf 1 Lot - Der Akt
FREE
MACD Trader FREE
Konstantin Nikitin
3.25 (4)
This is an automated Expert Advisor that trades using the MACD and Envelopes indicators. The free version has the following limitations. No panel for opening orders. The trading is limited to the EURUSD currency pair and similar. Orders can only be opened with the minimum lot, no more than 5 orders can be opened in the same direction, to a total of 10 orders. Pause after closing of all orders is 6000 minutes. During the analysis, no more than 50 orders are added to the database and 15 bars are c
FREE
PZ Goldfinch Scalper EA
PZ TRADING SLU
2.63 (49)
这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波
FREE
The Scaled Awesome Oscillator (SAO) represents a refined adaptation of the Awesome Oscillator, aimed at establishing consistent benchmarks for identifying market edges. Unlike the standard Awesome Oscillator, which records the variation in pips across different commodities, the only unchanging reference point is the zero line. This limitation hampers investors and traders from pinpointing specific levels for trend reversals or continuations using the traditional Awesome Indicator, a creation of
FREE
[ Introduction ] . [ Installation ] Introduction Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connection of brokers and the freedom of library utilization. The potential of your EA now becomes unlimited as you can create
FREE
Indicator measures strength of each currency in your list. Main idea: It simply iterates through all combinations of pairs and adds difference between open and close in percent. Parameters: List of currencies - what currencies will be calculated (maximum is 8) Calculation type - from which data will be strength calculated Calculation data input - used as input related to calculation type Symbol suffix - used in case of suffix on symbols, e.g: when your symbols look like EURUSDm, EURUSDmicro et
FREE
Night Scalper EA Lite
Robots4Forex Ltd
2.33 (3)
The Night Scalper EA Lite is a fully automated Expert Advisor that trades at night and relies on price reversion. The EA trades using market orders and has the option to use time averaging to improve performance. This EA works best on EURUSD using the M5 timeframe, but will also work on AUDUSD, GBPUSD, NZDUSD, USDCAD, USDCHF and likely many more. A VPS is advisable when trading this system and a low spread and commission based broker is best. Check the comments for back test results and optimiz
FREE
MetaCOT 2 CFTC ToolBox Demo is a special demo version of a full-featured library MetaCOT 2 CFTC ToolBox MT4 . The demo version does not have any limitations, but it outputs data with a delay in contrast to the full version. The library provides access to the CFTC reports (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator
FREE
SAAD TrendTracker
Adnan Iqbal
4.03 (34)
SAAD TrendTracker is a fully automated EA. It is based on mathematical algorithms Trend Tracker indicator and SAADScalper. The EA scalps pips by its strong Entry strategy based on SAADScalper. Trades that are not successful to scalp are handled in a different way of uniquely designed algorithm based on Trend Tracker indicator. EA is designed for M1, M5, M15 and M30. It consults daily chart for successful trading accuracy. It consults H1 to handle unsuccessful trades using Trend Tracker Indicator
FREE
Harvest FX
Sayan Vandenhout
5 (3)
Harvest FX USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30
FREE
The Candle Countdown Timer for MetaTrader 4 (also available for MT5) is a vital indicator designed to help you manage your trading time effectively. It keeps you updated about market open and close times by displaying the remaining time before the current candle closes and a new one forms. This powerful tool enables you to make well-informed trading decisions. Key Features: Asia Range: Comes with an option to extend the range. Broker Time, New York, London Time: Displays the current broker time
FREE
Royal GER30
Hossein Davarynejad
5 (3)
Royal Ger30  This Expert Working On High Time Farm H1 , H4  the Expert can Analyze The Daily and weekly Trend of the Market and  Open Trade on H1 or H4  Trade have Not SL but have Recovery Lot size  Minim Deposit  1k  Fix Lot 0.01 For EightCap Broker because you can Trade with 0.01 on Stocks    Best Time = H1 Make sure to  Add Set File  Symbol GER30,GER Cash , DE40, DE30  on Eightcap  Broker  No need Set File  this Expert Have Auto Set File 
FREE
Swing Climber EurUsd H1
Marco Bortolamasi
5 (1)
EURUSD H1 Simple Martingale that works on daily swing levels, low DD, TP and SL defined on the basis of certain pre-set calculations in the algorithm, executes one trade at a time, weekly trading no overnight on weekends, possibility to establish customized exit times, possibility of customize money management. average return of 7.92% per year with the factory settings of the V1, it is always constantly updated, it is recommended to use it with a GMT +2 server TESTED SINCE 2003  Happy trading
FREE
Colored MACD
Billel Hamza
5 (3)
The Normale MACD have 2 Corlors ( 1 for MACD Histogram and 1 for the Signal Line ) This version of Macd have 5 Colors  ( 4 for MACD Histogram and 1 for the Signal Line ) : - When the MACD get a Positive higher value  - When the MACD get a Positive Lower value - When the MACD get a Negative  higher value  - When the MACD get a Negative  Lower value This version have the same input like the normal one : * Fast EMA Period * Slow EMA Period * Signal SMA Period * Applied Price
FREE
Free automatic fibonacci
Tonny Obare
4.63 (59)
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
OrderBlock TS Roman
Vladislav Vlastovskii
4 (7)
Индикатор строит блоки заказов (БЗ) по торговой системе (ТС) Романа. Поиск блоков осуществляется одновременно на двух таймфремах: текущем и старшем (определяемым в настройках). Для оптимизации и игнорирования устаревших блоков в настройках задается ограничение количества дней в пределах которых осуществляется поиск блоков. Блоки строятся по правилам ТС состоящем из трех шагов: какую свечу вынесли (что?); какой свечой вынесли (чем?); правило отрисовки (как?).
FREE
该产品的买家也购买
该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式 - 下限价、止损限价和止盈限价订单 - 下达市场订单、SL 市场订单、TP 市场订单 - 修改限价单 - 取消订单 - 查询订单 - 更改杠杆、保证金 - 获取位置信息 和更多... 脚本文档 1 小时编程教程,帮助初学者使用 MQL5 编写一个简单的 EA,将订单发送到币安 https://www.youtube.com/watch?v=d_r4j2V77mY 该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式
Expert Description: Equity Profits Overview: "Equity Profits" is an efficient and user-friendly Forex expert advisor designed to manage trades based on equity profits rather than balance. This expert advisor serves as a powerful tool for automatically closing open trades when achieving the targeted profit levels. Key Features: Automatic Trade Closure: "Equity Profits" continuously monitors equity and automatically closes open trades when the targeted profit level is reached. Customizable Profit
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a csv-file and some special global variabl
AutoClose Expert
Josue Fernando Servellon Fuentes
automatically closes orders from a preconfigured number of pips. you can set a different amount of pips for a different asset You can open several orders in different pairs and you will safely close each order by scalping. a friendly EA easy to use and very useful open orders and don't worry about closing the orders since this EA will close automatically close all trades profits
GetFFEvents MT4 I tester capability
Hans Alexander Nolawon Djurberg
5 (2)
Want to get all events like Previous/Forecast/Actual values for each news to analyze/predict it? By this simple library you can do it easily,Just import/integrate the library into your system,then get all possible values for each news Even In Strategy Tester . Note: Please add the address " https://www.forexfactory.com/ " of news feed at your MT4 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator based
A library for creating a brief trading report in a separate window. Three report generation modes are supported: For all trades. For trades of the current instrument. For trades on all instruments except the current one. It features the ability to make reports on the deals with a certain magic number. It is possible to set the time period of the report, to hide the account number and holder's name, to write the report to an htm file. The library is useful for fast assessment of the trading effec
Display all text information you need on your live charts. First, import the library: #import "osd.ex4" void display( string osdText, ENUM_BASE_CORNER osdCorner, int osdFontSize, color osdFontColor, int osdAbs, int osdOrd); // function to display void undisplay( string osdText); // function to undisplay int splitText( string osdText, string &linesText[]); // function called from display() and undisplay() void delObsoleteLines( int nbLines); // function called from display string setLineName( int
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lo
MetaCOT 2 CFTC ToolBox is a special library that provides access to CFTC (U.S. Commodity Futures Trading Commission) reports straight from the MetaTrader terminal. The library includes all indicators that are based on these reports. With this library you do not need to purchase each MetaCOT indicator separately. Instead, you can obtain a single set of all 34 indicators including additional indicators that are not available as separate versions. The library supports all types of reports, and prov
WalkForwardLight
Stanislav Korotky
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "tester/Files" directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the "MQL4/Files
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal
Three Crossing
Sirinya Pakkaman
Three Crossing Robot trading with 2 indicators Description Open Order Buy order condition 1)     Two lines of the EMA cross for TimeFrame12   2)     For EMA control order is EMA1 must be on the EMA line   3)     RSI_Buy > according to the specified value Sell order condition 1)     Two lines of the EMA cross for TimeFrame12   2)     For EMA control order is EMA1 must be under the EMA line   3)     RSI_Sell < according to the specified value For the operation of t
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Trend broker killer
Mansour Rahkhofteh
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 4.ex4"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
Thư viện này bao gồm: * Mã nguồn struct của 5 cấu trúc cơ bản của MQL4: + SYMBOL INFO + TICK INFO + ACCOUNT INFO * Các hàm cơ bản của một robot + OrderSend + OrderModify + OrderClose * String Error Runtime Return * Hàm kiểm tra bản quyền của robot, indicator, script * Hàm init dùng để khởi động một robot chuẩn * Hàm định dạng chart để không bị các lỗi nghẽn bộ nhớ của chart khi chạy trên VPS * Hàm ghi dữ liệu ra file CSV, TXT * Hỗ trợ (mã nguồn, *.mqh): dat.ngtat@gmail.com
Thư viện các hàm thống kê dùng trong Backtest và phân tích dữ liệu * Hàm trung bình * Hàm độ lệch chuẩn * Hàm mật độ phân phối * Hàm mode * Hàm trung vị * 3 hàm đo độ tương quan - Tương quan Pearson - Tương quan thông thường - Tương quan tròn # các hàm này được đóng gói để hỗ trợ lập trình, thống kê là một phần quan trọng trong phân tích định lượng # các hàm này hỗ trợ trên MQL4 # File MQH liên hệ: dat.ngtat@gmail.com
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS 庫是基於 4xlots.com WEB API 算法的本地化風險管理庫。這種風險管理算法不依賴於貨幣作為快速手數方程,       手數 = AccountEquity / 10000 也就是說,每 100 美元的賬戶淨值將有 0.01 手。 RedeeCash 4XLOTS 庫使用 2011 年首次開發的更詳細和增強的算法作為手動計算。 RedeeCash 4XLOTS 有一個稱為LotsOptimize 的函數。在您的項目中復制並包含以下 RedeeCash_4XLOTS.mqh 文件。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4XLOTS.mqh | //|   Copyright 2011-2022, PressPage Entertainment Inc DBA RedeeCash | //|       
TPSpro CopyOrders
Roman Podpora
5 (1)
This copier was originally developed for the professional order management of a team of traders and therefore, first of all, a risk manager was built into it. For simple operation, you need to configure the following settings: For the master! 1. Select the program type ''Program mode'' - master 2. Enter a new name for the ''Folder name'' folder, in which the EA will record information on working with orders. The name must be the same for both master and slave!!! 3. In the ''Feedback from
AO Core is the core of the optimization algorithm, it is a library built on the author's HMA (hybrid metaheuristic algorithm) algorithm. This hybrid algorithm is based on a genetic algorithm and contains the best qualities and properties of population algorithms. High-speed calculation in HMA guarantees unsurpassed accuracy and high search capabilities, allows you to save the total time for optimization, where the best solution will be found in fewer iterations. The performance of this algori
[ Introduction ] . [ Installation ] Introduction This version can be used for live trading. If you want to try a free version for backtesting only, you can go to here . Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connec
Super Woodies CCI
Biswarup Banerjee
Super Woodies CCI Indicator - Enhance Your Trading Precision Step into the realm of precision trading with the "Super Woodies CCI Indicator" for MetaTrader 4. This advanced tool, inspired by Woodie's CCI, is designed to provide you with clear insights into market trends, enabling you to make well-informed trading decisions. Basic Details : Indicator Type : Super Woodies CCI Indicator Key Metrics : Real-time CCI (Commodity Channel Index) analysis for price trends. Customization : Fully customizab
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader5 Version   | All Products | Contact Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size com
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader5 Version |  All Products  |  Contact Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   and  
This trailing stop application will helping trader to set the trailing stop value for many open positions, that apply a grid or martingale strategy as a solution. So if you apply a grid or martingale strategy (either using an EA or trading manually), and you don't have an application to set a trailing stop, then this application is the solution. For EAs with a single shot strategy, just use the FREE trailing stop application which I have also shared on this forum.
该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式 - 下限价、止损限价和止盈限价订单 - 下达市场订单、SL 市场订单、TP 市场订单 - 修改限价单 - 取消订单 - 查询订单 - 更改杠杆、保证金 - 获取位置信息 和更多... 脚本文档 1 小时编程教程,帮助初学者使用 MQL5 编写一个简单的 EA,将订单发送到币安 https://www.youtube.com/watch?v=d_r4j2V77mY 该库将允许您使用任何 EA 来管理交易,并且非常容易集成到任何 EA 上,您可以使用描述中提到的脚本代码以及显示完整过程的视频演示示例自行完成。 该产品允许通过API进行交易操作,不包括图表。 用户可以使用提供加密图表的经纪商的图表并向币安发送订单 - 支持单向和对冲模式
Expert Description: Equity Profits Overview: "Equity Profits" is an efficient and user-friendly Forex expert advisor designed to manage trades based on equity profits rather than balance. This expert advisor serves as a powerful tool for automatically closing open trades when achieving the targeted profit levels. Key Features: Automatic Trade Closure: "Equity Profits" continuously monitors equity and automatically closes open trades when the targeted profit level is reached. Customizable Profit
作者的更多信息
最友好的跟单交互界面,最丰富的易用功能,最优跟单方案.  跟单. EASY :简单使用,加载选择信号源或者接收端即可简单使用,轻松跟单 FAST: 快速复制订单,算法最优跟单机制,优先计算新信号,优先队列处理接收到特殊信号 Multiple: 1.支持多信号同时发送,多账户同时选择多个账户复制                                          2.多平台支持,MT4 和MT5互通.( 需同时购买安装MT4和MT5 ) Powerful :强大的功能,你可以找到市面上没有的功能 . .支持 减仓 ,支持手动 订单绑定信号订单 上....提供各种 过滤以及指定个性化设置( 给每个信号源或者品种分别制定跟单方案 ) ... [支持 中文,英文 ] 增加大手数分单功能 (应用场景,需要跟单较大手数,手数超出平台上限,也可以自己设置的上限,一般应用前者,分单会造成不必要的跟单性能开销,当达到平台单笔手数上限可以分单进行) 增加多种跟单内核, ①传统的强映射强绑定方式 ②可以支持设置MAGIC为0 模拟人工开单 ③可以支持默认一种MAGIC 进行跟单,类似单一
最友好的跟单交互界面,最丰富的易用功能,最优跟单方案.  跟单 EASY :简单使用,加载选择信号源或者接收端即可简单使用,轻松使用跟单系统 FAST: 快速复制订单,算法最优跟单机制,优先计算新信号,优先队列处理接收到特殊信号 Multiple: 1.支持多信号同时发送,多账户同时选择多个账户复制                                          2.多平台支持,MT4 和MT5互通.(需同时购买安装MT4和MT5) Powerful :强大的功能,你可以找到市面上没有的功能 . .支持 减仓 ,支持手动 订单绑定信号订单 上....提供各种 过滤以及指定个性化设置(   给每个信号源或者品种分别制定跟单方案   ) ... [支持 中文,英文 ] 增加大手数分单功能 (应用场景,需要跟单较大手数,手数超出平台上限,也可以自己设置的上限,一般应用前者,分单会造成不必要的跟单性能开销,当达到平台单笔手数上限可以分单进行) 增加多种跟单内核, ①传统的强映射强绑定方式 ②可以支持设置MAGIC为0 模拟人工开单 ③可以支持默认一种MAGIC 进行跟单
XM Channel MT5
Kaijun Wang
5 (1)
The market price usually falls between the borders of the channel  . If the price is out of range, it is a trading signal or trading opportunity. Basically, Fit Channel can be used to help determine overbought and oversold conditions in the market. When the market price is close to the upper limit, the market is considered overbought (sell zone). Conversely, when the market price is close to the bottom range, the market is considered oversold (buy zone). However, the research can be used
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 砖图PRO->>> 砖图在主图上的显示 . 砖形图因为比较理想地剔除掉了价格毛刺,因此,看上去令人感觉非常舒服。特别是, 在其上建立基于形态的交易系统看起来非常理想。 比如,如果我们打算使用趋势线,我们会经常发现,有些趋势线的突破并没有多大的意义,它不过是在震荡而已。荡着荡着,趋势线就突破了。而使用砖形图就可以有效地避免类似的尴尬。
FREE
支点交易 : 1.pp 支点 2. r1 r2 r3 , s1 s2  s3 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com" 专业EA指标定制编写. 支点( pivot points) 作为一种交易策略已经很长时间了,最初是场内交易员使用这种方法。使用这种方法通过几个简单的计算就可以了解市场在一天中的去向。 支点法中的支点是一天中市场方向的转向点,通过简单地计算前日的高点、低点和收盘价,可以得到一系列点位。这些点位可能形成关键的支撑和阻力线。支点位,支撑和阻力位被统称为支点水位。 你所看到的市场每
FREE
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 MACD称为异同移动平均线,是从双指数移动平均线发展而来的 ,由快的指数移动平均线(EMA12)减去慢的指数移动平均线(EMA26)得到快线DIF,再用2×(快线DIF-DIF的9日加权移动均线DEA)得到MACD柱。MACD的意义和双移动平均线基本相同,即由快、慢均线的离散、聚合表征当前的多空状态和股价可能的发展变化趋势,但阅读起来更方便。MACD的变化代表着市场趋势的变化,不同K线级别的MACD代表当前级别周期中的 买卖趋势。 1.本指标增加MACD的双线显示, 2.并且对能量柱进行4色不同的渐变! 强烈推荐趋势指标, 波浪的标准自动计算   和
FREE
交易者的最佳伙伴! 交易助手 : 这是一款功能非常丰富的交易辅助工具  . 开发不易请支持Pro 点击跳转 K Trade Assistant Pro MT5 助手详细说明文档,点击阅读 基本使用设置 基本: 支持语言的选择切换(目前支持中文和英文)   自动识别语言 支持 热键开平仓 绑定, 使用快捷键进行快速开平仓...... 快捷键平仓. 解锁支持大部分功能 复盘 操作,可以在 测试环境下使用 开仓平仓区域: 一键开仓( 包含止盈止损的便捷设置,手数自动计算等便捷功能) 一键平仓 (锁仓),极简的风格设计,可以自由选择平仓品种,平仓类型(多单,空单,或者挂单),是否平仓盈利大于0的订单,是否平仓亏损订单,平仓比例的设置(0~100%),且是否平仓反向,以及锁仓功能,均在选项中可以直接实现操作. 多键平仓 划线开单控件 计算出多单或者空单的 平均持仓价格 并划线 止盈止损等自动 设置 多品种,多,空,分类平仓 .. 挂单区: 批量间隔挂单 功能。 批量挂单删除 功能 自动化功能区: 止损保护功能 移动止损功能 账户风控 利润保护 批量图表
FREE
Pivot Trading 4
Kaijun Wang
5 (17)
支点交易: 1.pp 支点 2. r1 r2 r3 , s1 s2   s3 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本     合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com" 专业EA指标定制编写. 支点( pivot points) 作为一种交易策略已经很长时间了,最初是场内交易员使用这种方法。使用这种方法通过几个简单的计算就可以了解市场在一天中的去向。 支点法中的支点是一天中市场方向的转向点,通过简单地计算前日的高点、低点和收盘价,可以得到一系列点位
FREE
本指标是实践实战交易完善的波浪自动分析的指标  !  黄金实战 案例... 注:波浪分级用西方叫法不习惯,因 受到缠论(缠中说禅)命名方式习惯的影响,我是将基础波浪命名为 笔 , 将二级波段命名为 段 , 同时具有趋势方向的段命名为 主趋段 (以后笔记中都是这种命名方式,先告知大家),但是算法上和缠论关系不大切勿混淆.反映的是本人分析盘面总结的 千变万化纷繁复杂的运行规律 . 对波段进行了标准化定义,不再是不同人不同的浪 ,  对人为干扰的画法进行了排除,在严格分析进场起到了关键的作用 . 使用这个指标,等于将交易界面提升美感,抛弃最原始的K线交易带你进入新的交易层次.如果不是为了交易,在宣传上也将使客户观感提升层次. 指标内容: 1. 基础波浪 (笔) : 首先我们找出了价格波动过程中的基础波动拐点,当然他的有序性还不算太强,为下一步的计算提供基础. 2. 二级波段( 段 ) :在基础波浪的基础上,通过算法分析得到层级更明显的二级波段,二级波段为波浪提供了分析基础 3. 波浪( 浪 ): 有着更清晰的趋势,更清晰直观的方向.分析一个波浪是否延续,需要看二级波段的形态,分析
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 高级布林带: 1.布林中轨会随着方向变色 "  2.布林外轨扩张和收缩都会在外轨进行变色标识"  3.布林中轨计算方式可以选择任意均线,例如EMA"  4.同样可以选择任意价格应用模式进行计算"    强烈推荐趋势指标 , 波浪的标准自动计算   和   波浪的标准自动计算MT5版本     "合作QQ:556024" "合作wechat:556024" "合作email:556024@qq.com" 布林线(Bollinger Band) 是根据统计学中的标准差原理设计出来的一种非常实用的技术指标。它由 三条 轨道线组成,其中上下两条线分别可以看
FREE
Renko indicator MainChart
Kaijun Wang
4.62 (21)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 砖图PRO->>> 砖图在主图上的显示 . 砖形图因为比较理想地剔除掉了价格毛刺,因此,看上去令人感觉非常舒服。特别是, 在其上建立基于形态的交易系统看起来非常理想。 比如,如果我们打算使用趋势线,我们会经常发现,有些趋势线的突破并没有多大的意义,它不过是在震荡而已。荡着荡着,趋势线就突破了。而使用砖形图就可以有效地避免类似的尴尬。
FREE
本指标是实践实战交易完善的波浪自动分析的指标  ! 黄金实战 案例... 注:波浪分级用西方叫法不习惯,因 受到缠论(缠中说禅)命名方式习惯的影响,我是将基础波浪命名为 笔 , 将二级波段命名为 段 , 同时具有趋势方向的段命名为 主趋段 (以后笔记中都是这种命名方式,先告知大家),但是算法上和缠论关系不大切勿混淆.反映的是本人分析盘面总结的 千变万化纷繁复杂的运行规律 . 对波段进行了标准化定义,不再是不同人不同的浪 , 对人为干扰的画法进行了排除 ,  在严格分析进场起到了关键的作用 . 指标内容 1.   基础波浪(笔): 首先我们找出了价格波动过程中的基础波动拐点,当然他的有序性还不算太强,为下一步的计算提供基础 . 2.   二级波段(段) :在基础波浪的基础上,通过算法分析得到层级更明显的二级波段,二级波段为波浪提供了分析基础 3.   波浪(浪): 有着更清晰的趋势,更清晰直观的方向.分析一个波浪是否延续,需要看二级波段的形态,分析二级的构成,可以得出波浪后续的预测. 4.   通道: 通道计算采用了线性回归的方式进行计算. 5.   回撤: 波浪中的两个重要回撤会在
KDJ Index For MT5
Kaijun Wang
4.29 (14)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 "Cooperative QQ:556024 "  "Cooperation wechat:556024"  "Cooperative email:556024@qq.com" 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本     KDJ指标又叫 随机指标 ,是一种相当新颖、实用的技术分析指标,它起先用于期货市场的分析,后被广泛用于股市的中短期趋势分析,是期货和股票市场上最常用的技术分析工具。 随机指标KDJ一般是用于股票分析的统计体系,根据统计学原理,通过一个特定的周期(常为9日、9周等)内出现过的最高价、最低价及
FREE
KDJ Index 4
Kaijun Wang
5 (11)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 "Cooperative QQ:556024 "  "Cooperation wechat:556024 "  "Cooperative email:556024@qq.com" 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本     KDJ指标又叫 随机指标 ,是一种相当新颖、实用的技术分析指标,它起先用于期货市场的分析,后被广泛用于股市的中短期趋势分析,是期货和股票市场上最常用的技术分析工具。 随机指标KDJ一般是用于股票分析的统计体系,根据统计学原理,通过一个特定的周期(常为9日、9周等)内出现过的最高价、最低价
FREE
K Trade Assistant
Kaijun Wang
4.76 (25)
交易者的最佳伙伴!   交易助手 : 这是一款功能非常丰富的交易辅助工具    . 开发不易请支持Pro 点击跳转 K Trade Assistant Pro   助手详细说明文档,点击阅读 基本使用设置 基本: 支持语言的选择切换(目前支持中文和英文) 自动识别语言 支持 热键开平仓 绑定, 使用快捷键进行快速开平仓......  快捷键平仓. 解锁支持大部分功能 复盘 操作,可以在 测试环境下使用 开仓平仓区域: 一键开仓( 包含止盈止损的便捷设置,手数自动计算等便捷功能) 一键平仓 (锁仓),极简的风格设计,可以自由选择平仓品种,平仓类型(多单,空单,或者挂单),是否平仓盈利大于0的订单,是否平仓亏损订单,平仓比例的设置(0~100%),且是否平仓反向,以及锁仓功能,均在选项中可以直接实现操作. 多键平仓 划线开单控件 计算出多单或者空单的 平均持仓价格 并划线 止盈止损等自动 设置 多品种,多,空,分类平仓 .. 挂单区: 批量间隔挂单 功能。 批量挂单删除 功能 自动化功能区: 止损保护功能 移动止损功能 账户风控 利润保护 批量图表打
FREE
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 高级布林带: 1.布林中轨会随着方向变色 "  2.布林外轨扩张和收缩都会在外轨进行变色标识"  3.布林中轨计算方式可以选择任意均线,例如EMA"  4.同样可以选择任意价格应用模式进行计算"    强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本     "合作QQ:556024  " "合作wechat:556024" "合作email:556024@qq.com" 布林线(Bollinger Band) 是根据统计学中的标准差原理设计出来的一种非常实用的技术指标。它由 三条 轨道线组成,其中上下两条线分别可以
FREE
指标适用于趋势跟随者! 三条均线构建的交易系统.顺势交易,让利润奔跑 . 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本 合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com" 专业EA指标定制编写. 首先,我们要明白,所有的移动均线都是滞后指标,它们只能事后告诉你市场已经转向,即使它们提供了有价值的信息并且帮助你建立了头寸,不能协助在利润最大化方面发挥太多作用,所以要配合均线价值回归区域使用,价格可以根据重要支撑线的指示,不是滞后的,当市场从目前的隧道出发跟随趋势交易不
FREE
Fit Channel
Kaijun Wang
5 (5)
The market price usually falls between the borders of the  channel   . If the price is out of range , it is a trading signal or trading opportunity  . Basically, Fit Channel can be used to help determine overbought and oversold conditions in the market. When the market price is close to the upper limit, the market is considered overbought (sell zone). Conversely, when the market price is close to the bottom range, the market is considered oversold (buy zone). However, the research can be
指标适用于趋势跟随者! 三条均线构建的交易系统.顺势交易,让利润奔 跑. 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本 升级版蜡烛图颜色可变 合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com" 专业EA指标定制编写. 首先,我们要明白,所有的移动均线都是滞后指标,它们只能事后告诉你市场已经转向,即使它们提供了有价值的信息并且帮助你建立了头寸,不能协助在利润最大化方面发挥太多作用,所以要配合均线价值回归区域使用,价格可以根据重要支撑线的指示,不是滞后的,当市场从目前的隧道
FREE
KTrade Fibo For MT5
Kaijun Wang
4.9 (10)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 Fibo:   来源于KTrade 1.自动计算分析波段.->得出所需波段 2.画出斐波那契 回撤线,以及扩展线作为参考 指标波段分析如何得来->请参考如下 波段分析来源于波浪分析指标↓↓↓ 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本
FREE
XM Channel
Kaijun Wang
4.67 (3)
The market price usually falls between the borders of the channel . If the price is out of range, it is a trading signal or trading opportunity . Basically, Fit Channel can be used to help determine overbought and oversold conditions in the market. When the market price is close to the upper limit, the market is considered overbought (sell zone). Conversely, when the market price is close to the bottom range, the market is considered oversold (buy zone). However, the research can be used
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 顺势指标又叫CCI指标,CCI指标是 美国 股市 技术分析   家唐纳德·蓝伯特(Donald Lambert)于20世纪80年代提出的,专门测量股价、外汇或者贵 金属 交易是否已超出常态分布范围。属于超买超卖类指标中较特殊的一种。波动于正无穷大和负无穷大之间。但是,又不需要以0为中轴线,这一点也和波动于正无穷大和负无穷大的指标不同。 相对强弱指标RSI是根据一定时期内上涨点数和下跌点数之和的比率制作出的一种技术曲线。能够反映出市场在一定时期内的景气程度。由威尔斯.威尔德(Welles Wilder)最早应用于期货买卖,后来人们发现在众多的图表技术分析中,
FREE
Fit Channel MT5
Kaijun Wang
3.67 (3)
The market price usually falls between the borders of the channel    .   If the price is out of range , it is a trading signal or trading opportunity . Basically , Fit Channel can be used to help determine overbought and oversold conditions in the market. When the market price is close to the upper limit, the market is considered overbought (sell zone). Conversely, when the market price is close to the bottom range, the market is considered oversold (buy zone). However, the research can b
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 强烈推荐趋势指标, 波浪的标准自动计算   和   波浪的标准自动计算MT5版本   合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com" 专业EA指标定制编写. 指标用于显示历史交易路径,方便大家看到本货币对的交易情况.
FREE
MACD two line four colors
Kaijun Wang
4.93 (14)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 MACD称为异同移动平均线 ,是从双指数移动平均线发展而来的,由快的指数移动平均线(EMA12)减去慢的指数移动平均线(EMA26)得到快线DIF,再用2×(快线DIF-DIF的9日加权移动均线DEA)得到MACD柱。MACD的意义和双移动平均线基本相同,  即由快、慢均线的离散、聚合表征当前的多空状态和股价可能的发展变化趋势,但阅读起来更方便。MACD的变化代表着市场趋势的变化,不同K线级别的MACD代表当前级别周期中的买卖趋势。 1.本指标增加MACD的双线显示, 2.并且对能量柱进行4色不同的渐变! 强烈推荐趋势指标, 波浪的标准自动计算   和
FREE
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 可以设置其他周期品种的K线图 覆盖到本窗口中,观察到关联性波动 品种名留空则放弃显示该品种 "Cooperative QQ:556024"  "Cooperation wechat:556024"  "Cooperative email:556024@qq.com"
FREE
KTrade Fibo
Kaijun Wang
4.89 (9)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 Fibo:  来源于KTrade 1.自动计算分析波段.->得出所需波段 2.画出斐波那契 回撤线,以及扩展线作为参考 指标波段分析如何得来->请参考如下 波段分析来源于波浪分析指标↓↓↓ 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本
FREE
CRW CCI and RSI and WPR
Kaijun Wang
4.38 (8)
交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 顺势指标又叫CCI指标,CCI指标是 美国 股市 技术分析   家唐纳德·蓝伯特(Donald Lambert)于20世纪80年代提出的,专门测量股价、外汇或者贵 金属 交易是否已超出常态分布范围。属于超买超卖类指标中较特殊的一种。波动于正无穷大和负无穷大之间。但是,又不需要以0为中轴线,这一点也和波动于正无穷大和负无穷大的指标不同。 相对强弱指标RSI是根据一定时期内上涨点数和下跌点数之和的比率制作出的一种技术曲线。能够反映出市场在一定时期内的景气程度。由威尔斯.威尔德(Welles Wilder)最早应用于期货买卖,后来人们发现在众多的图表技术分析中,
FREE
Donchian通道(唐奇安通道指标)是用于交易突破的最古老、最简单的技术指标之一。   一般来说,唐奇安通道的宽度越宽,市场波动就越大,而唐奇安通道越窄,市场波动性也就越小 。此外,价格走势可以穿过布林带,但你看不到唐奇安通道的这种特征,因为其波段正在测量特定时期的最高价和最低价。 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 唐奇安通道指标计算: 唐奇安上阻力线 - 由过去N天的当日最高价的最大值形成。 唐奇安下支撑线 - 由过去N天的当日最低价的最小值形成。 中心线 - (上线 + 下线)/ 2   唐奇安通道信号   唐奇安通道常用作突破指标。它提供了两种主要类型的突破信号,一个是上阻力线或下支
FREE
为趋势交易提供思路  . 自动计算并生成趋势通道 . 通道线又称管道线 ,是在 趋势线 的反方向上画一根与趋势线平行的直线,且该直线穿越近段时期价格的最高点或最低点。这两条线将价格夹在中间运行,有明显的管道或通道形状。 交易实用必备工具指标 波浪自动计算指标,通道趋势交易 完美的趋势-波浪自动计算通道计算 , MT4版本 完美的趋势-波浪自动计算通道计算 , MT5版本 本地跟单复制交易 Easy And Fast Copy , MT4版本 Easy And Fast Copy , MT5版本 本地跟单复制交易 模拟试用 Easy And Fast Copy , MT4 模拟账号运行 Easy And Fast Copy , MT5 模拟账号运行 合作QQ:556024" 合作wechat:556024" 合作email:556024@qq.com"
筛选:
4654678 Akani
31
4654678 Akani 2022.09.28 18:45 
 

nice

回复评论
版本 2.10 2021.10.22
>>>>>>>>>>>>>>>
版本 2.0 2021.10.21
>>>>>>>>>