• Обзор
  • Отзывы
  • Обсуждение

K Trade Lib Pro 4

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);
   //复杂开单
   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);
   
   //平仓函数
   bool K_OrderClose(int type,KOD_MAGIC magic,string symbol="",int is_profit=0,double profit_value=0,bool ispoint=false );
   
   //订单详细获取.
   int  OrderTotal(int type=0,KOD_MAGIC magic=-1,string symbol="");
   ODLIST* OrderLowPrice(int type=0,KOD_MAGIC magic=-1,string symbol="");
   ODLIST* OrderHighPrice(int type=0,KOD_MAGIC magic=-1,string symbol="");
   ODLIST* OrderLowTime(int type=0,KOD_MAGIC magic=-1,string symbol="") ;
   ODLIST* OrderHighTime(int type=0,KOD_MAGIC magic=-1,string symbol="") ;
#import


class ODLIST{
       //order information 
   private:
       //datetime ctrl_time;
       ODLIST  m_list[];
       ODLIST* m_parent; 
   public:
       
       
       int     m_total; 
       int     m_total_vir;
       ODLIST* m_sort_price[];
       ODLIST* m_sort_time[];
        
       KOD_TICKET      ticket;
       int      type;
       long     op_time;
       long     close_time;
       double   lots;
       double   op_price;
       double   close_price;  
       double   sl;
       double   tp;
       string   symbol;
       double   profit;
       double   commission; //获取总手续费 MT5无效
       double   swap;
       long     expiration;
       KOD_MAGIC magic;
       string   comment; 
       
       long     flag1;
       long     flag2;
       string   m_memo;
};

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);
  }





Рекомендуем также
Данный копировщик был изначально разработан для профессионального управления ордерами команды трейдеров и поэтому, в первую очередь, в него был вшит риск менеджер. Для простой работы вам нужно настроить такие параметры: Для мастера! 1.   Выбираем тип программы  ''Program mode'' - master (поставщик сигналов)   2. Вводим новое имя для папки ''Folder name'', в которую советник будет записывать информацию по работе с ордерами. Имя должно быть одинаковым как для мастера так и для слейва!!!  3. В
KopierMaschine - локальный копировщик сделок между различными счетами MetaTrader 4 и MetaTrader 5 в любом направлении расположенных на одном компьютере с интуитивно понятным интерфейсом. Направления копирования: MT4 --> MT5 MT4 --> MT4 MT5 --> MT5 MT5 --> MT4 для копирования между терминалами MetaTrader 4 и MetaTrader   5 необходимо приобрести версию продукта KopierMaschine  для  MetaTrader   5 Особенности Программа работает в двух режимах Master и Slave На один подчиненный счет можно копирова
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
Утилита для автоматического управления ордерами и рисками. Позволяет взять максимум с прибыли и ограничить свои убытки.   Создан практикующим трейдером для трейдеров.   Утилита  проста в использовании,  работает с любыми рыночными ордерами, открытыми трейдером вручную или при помощи советников. Может фильтровать сделки по магическому номеру. Одновременно утилита может работать с любым количеством ордеров.  Имеет такие функции: 1. В ыставление уровней стоплосс и тейкпрофит; 2. З акрытие сделок
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  
The Volume by Price Indicator for MetaTrader 4 features Volume Profile and Market Profile TPO (Time Price Opportunity). Get valuable insights out of currencies, equities and commodities data. Gain an edge trading financial markets. Volume and TPO histogram bar and line charts. Volume Footprint charts. TPO letter and block marker charts including split structures. Versatile segmentation and compositing methods. Static, dynamic and flexible ranges with relative and/or absolute visualizations. Lay
Virtual Collider Manual   – торговый робот-помощник со встроенной панелью для ручной торговли, осуществляющий автоматический вывод открываемой трейдером позиции в профит, используя инновационный адаптивный сеточный алгоритм усреднения и адаптивный пирамидинг. Ноу-хау используемого сеточного алгоритма усреднения и пирамидинга торгового робота   Virtual Collider Manual   базируется на полной автоматической адаптации всех характеристик динамически выстраиваемой сетки и пирамиды ордеров под актуальн
Strong Retracement Points Pro demo edition! SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! If you are still hesitating to start using this wonderful tool, you can check this link to see h
Cloner for MT4
Vladimir Gribachev
Утилита предназначена для клонирования сделок на вашем торговом счете - программа открывает дополнительную сделку с вашими парамерами. Имеет возможность увеличить или уменьшить лот, добавить лот, изменить параметры стоплосс и тейкпрофит,  Программа предназначена для работы на "Windows PC" и "Windows VPS".  Buy a cloner and get the second version for free Параметры: CLONE_POSITIONS  -  какие ордера клонировать; MAGIC_NUMBER -     магический номер; DONT_REPEAT_TRADE  - если true, то сделки не по
Indicator function This index buys and sells according to the color, using time is one hour,Please run the test on a 30-minute cycle It is best to use 1H for testing   About update questions In order to be more suitable for market fluctuations, the company regularly updates the indicators   Product cycle and trading time applicable to indicators Applicable mainstream currency pair EUR/USD GBP/USD NZD/USD AUD/USD USD/JPY USD/CAD USD/CHF Applicable mainstream cross currency pair EUR/JPY EUR/GBP E
VR Cub
Vladimir Pastushak
VR Cub это индикатор что бы получать качественные точки входа. Индикатор разрабатывался с целью облегчить математические расчеты и упростить поиск точек входа в позицию. Торговая стратегия, для которой писался индикатор, уже много лет доказывает свою эффективность. Простота торговой стратегии является ее большим преимуществом, что позволяет успешно торговать по ней даже начинающим трейдерам. VR Cub рассчитывает точки открытия позиций и целевые уровни Take Profit и Stop Loss, что значительно повы
Fibonacci retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points
PROTECT YOUR FTMO Account in a simplest way Must-Have   Account Protector for any Prop-trading Account and Challenge MT4 / MT5 Expert Advisor that protects your Forex Prop Trading account from an unexpected drawdown! FTMO Protector  is a Tool that lets you manage trades and control your profit and loss across multiple Robots and currency pairs using a simple parameters and settings. Use as many EAs and Instruments you need, the Protector will: 1.   Calculate your midnight (01:00 System time) Bal
Индикатор строит текущие котировки, которые можно сравнить с историческими и на этом основании сделать прогноз ценового движения. Индикатор имеет текстовое поле для быстрой навигации к нужной дате. Параметры : Symbol - выбор символа, который будет отображать индикатор; SymbolPeriod - выбор периода, с которого индикатор будет брать данные; IndicatorColor - цвет индикатора; Inverse - true переворачивает котировки, false - исходный вид; Далее идут настройки текстового поля, в которое можн
Gioteen Volatility Index (GVI)   - your ultimate solution to overcoming market unpredictability and maximizing trading opportunities. This revolutionary indicator helps you in lowering your losing trades due to choppy market movements. The GVI is designed to measure market volatility, providing you with valuable insights to identify the most favorable trading prospects. Its intuitive interface consists of a dynamic red line representing the volatility index, accompanied by blue line that indicat
Forex Gump
Andrey Kozak
2.83 (6)
Forex Gump - это полностью готовая полуавтоматическая торговая система. В виде стрелок на экран выводятся сигналы для открытия и закрытия сделок. Все, что вам нужно, это следовать указаниям индикатора. Когда индикатор показывает синюю стрелку, Вам нужно открывать ордер на покупку. Когда индикатор показывает красную стрелку, нужно открывать ордер на продажу. Закрываем ордера когда индикатор рисует желтый крестик. Для того, чтобы получить максимально эффективный результат, рекомендуем использовать
Owl smart levels
Sergey Ermolov
4.63 (54)
Версия MT5  | Как установить?  | FAQ Индикатор Owl Smart Levels   – это полноценная торговая система внутри одного индикатора, которая включает в себя такие популярные инструменты анализа рынка как усовершенствованные   фракталы Билла Вильямса , Valable ZigZag, который строит   правильную волновую структуру   рынка, а также  уровни Фибоначчи,   которые   отмечают точные уровни входа в рынок и места взятия прибыли. Подробное описание стратегии Инструкция по работе с индикатором Советник-помошник
Профиль Рынка (Market Profile) определяет ряд типов дней, которые помогают трейдеру распознать поведение рынка. Ключевая особенность - это область значений (Value Area), представляющая диапазон ценового действия, в котором произошло 70% торговли. Понимание области значений может помочь трейдерам вникнуть в направление рынка и установить торговлю с более высокими шансами на успех. Это отличное дополнение к любой системе, которую вы возможно используете. Blahtech Limited представляет сообществу Me
Индикатор показывает какие торговые пары, стратегии, роботы и сигналы, которые Вы используете, являются прибыльными, а какие нет. Статистика сделок и график баланса отображаются в валюте счета и пипсах - для переключения просто кликните на график. кнопка "$"(вверху слева) - свернуть\развернуть и перемещение панели индикатора кнопка ">"(внизу справа) - растягивание и сброс к изначальному размеру Статистика сделок 1 строка - баланс счета, текущая прибыль и лот открытых торгов; 2 строка - количес
Expert Advisor for MT4 Useful utility MUST have for all traders.  With 1 click button, you're able to close all your open positions. Its come with a warning pop up notification when you click to close all your trades, to avoid an accident press the button. Just press 'Yes' to confirm or 'No' to cancel it. The expert will close all your open positions no matter what pairs you currently open or directions. Just attach the expert on 1 of your chart, and you're good to go.
TWO PAIRS SQUARE HEDGE METER INDICATOR Try this brilliant 2 pairs square indicator It draws a square wave of the relation between your two inputs symbols when square wave indicates -1 then it is very great opportunity to SELL pair1 and BUY Pair2 when square wave indicates +1 then it is very great opportunity to BUY pair1 and SELL Pair2 the inputs are : 2 pairs of symbols         then index value : i use 20 for M30 charts ( you can try other values : 40/50 for M15 , : 30 for M30 , : 10 for H1 ,
Requirements Optimized to work with   EURUSD-EURCHF-USDJPY, AUDUSD-CADJPY-AUDNZD, CHFJPY-NZDJPY-NZDUSD For timeframe 4H. *(Minimum recommended deposit is $300 for each Pair) for initial lot set to 0.10, My favorite Pair are (CHFJPY-NZDJPY-EURUSD-AUDNZD-USDJPY) Warning it will be SALE only 5 Copys at 60$ Then it will be update up to 200$  You can use it the way it is, For new Set Files will be add on (Comments) ECN broker with low spread is recommended to get better results. Setup is
Индикатор определения ключевых паттернов по стратегии ББМА, отлично дополнит стратегию Фибо Мусанг, а также может использоваться как самостоятельный инструмент.  Предназначен для экономии времени анализа рынка; Присылает пуш уведомления в телефон при возникших ключевых моментах по стратегии (Extrem A, Csak, пробитие свечой линии ББ) ВАЖНО! Свяжитесь со мной сразу после покупки, чтобы получить второй файл! При возникновении вопросов помогу разобраться с индикатором. Преимущества Прост в использов
PipFinite Exit EDGE
Karlo Wilson Vendiola
4.89 (160)
Должна была состояться прибыльная сделка и вдруг отменилась? При наличии надежной стратегии выход из сделки также важен, как и вход. Exit EDGE помогает максимально увеличить доход от текущей сделки и не потерять выигрышные сделки. Всегда будьте внимательны к сигналу на выход из сделки Отслеживайте все пары и тайм-фреймы в одном графике www.mql5.com/en/blogs/post/726558 Торговля Вы можете закрыть уже открытые сделки, как только получите сигнал Закрывайте заявку на покупку, если вы получил
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
Fast Trade Copier
Vladimir Gribachev
4.2 (5)
Копировщик сделок предназначен для быстрого и точного копирования приказов между терминалами MetaTrader 4. Копировщик сделок копирует сделки с Master-счета на Slave-счет путем записи информации в общий файл, который находится в общей директории терминалов MT4. Это позволяет копировщику сделок гибко настроить различные схемы приема и передачи торговых сигналов путем изменения имени файла. Чтение и запись файла копировщика сделок производится по таймеру. Копировщик сделок контролирует все изменени
ET9 New on the Market, Launch promo! Only a few copies left at: $599 Next price: $799 Final price: $1599 The Best  Expert Advisor  on   XAUUSD   any timeframes , It can also be used on GBPUSD at the same time! ET9  for MT4 Updated 4.20 !!   Important update:    Enable automatic closing of profits,  Various parameters of the ET1 strategy can be modified,   Optimized the stability of ET1 strategy Include Free  ET1 for MT4:  https://www.mql5.com/en/market/product/113219 Descriptions ET9 for MT4
Это трендовый индикатор без перерисовки Разработан вместо стратегии бля бинарках опционов (по цвету свечи мартингейл) Так же хорошо работает в торговле на рынке форекс Когда открывать сделки ( бинарные опционы ) Сигнал появится в месте с свечой сигналит на текущую свечу  Открывать сделку стоит на одну свечу текущего таймфрейма рекомендуется м1 и М5 При появлении синей точки открываем сделку вверх При появлении красной точки открываем сделку в низ. Как открывать сделки на Форекс. При полу
Daily Candle Predictor - это индикатор, который предсказывает цену закрытия свечи. Прежде всего индикатор предназначен для использования на графиках D1. Данный индикатор подходит как для традиционной форекс торговли, так и для торговли бинарными опционами. Индикатор может использоваться как самостоятельная торговая система, так может выступать в качестве дополнения к вашей уже имеющейся торговой системе. Данный индикатор производит анализ текущей свечи, рассчитывая определенные факторы силы внут
Traders are humans. The markets are controlled by "fear" and "greed" and there are patterns for it. We found these patterns via years of writing and monitoring algorithm, and we now introduce to you our LaserAlgo MT4. We used our 7 years’ experience in the markets to convert this concept into a fully AI algorithm.   Link to MT5 version: https://www.mql5.com/en/market/product/89546 Link to live run of EA: https://www.mql5.com/en/signals/1780127 This is a promotional price and will be increased
С этим продуктом покупают
Эта библиотека позволит вам управлять сделками с использованием любого вашего советника, и ее очень легко интегрировать в любой советник, что вы можете сделать самостоятельно с помощью кода сценария, упомянутого в описании, а также демонстрационных примеров на видео, которые показывают весь процесс. Этот продукт позволяет осуществлять торговые операции через API и не включает графики. Пользователи могут использовать графики брокеров, предоставляющих графики криптовалют, и отправлять заказы на Bi
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций Ордера CloseallSell: Закрыть все ордера на продажу. CloseallBuy: Закрыть все ордера на покупку. CloseallOpen: Закрыть все открытые ордера. DeletePending: Закрыть все отложенные ордера. DeleteAll: Закрыть все рыночные ордера и удалить все отложенные ордера. CheckOpenBuyOrders: возвращает количество ордеров на покупку. CheckOpenSellOrders: возвращает количество ордеров на
MetaCOT 2 CFTC ToolBox - это специальная библиотека, предоставляющая доступ к отчетам CFTC (U.S. Commodity Futures Trading Commission) прямо в терминале MetaTrader. Она включает все индикаторы, построенные на основе этих отчетов. Имея эту библиотеку Вам нет необходимости приобретать каждый индикатор MetaCOT в отдельности. Вместо этого, Вы получаете набор сразу из всех 34 индикаторов, в который входят также индикаторы недоступные в виде отдельной версии. Библиотека поддерживает все типы отчетов,
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
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
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
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 — это локализованная библиотека управления рисками, основанная на алгоритме WEB API 4xlots.com. Этот алгоритм управления рисками не зависит от валюты, как уравнение быстрого размера лота,       лоты = AccountEquity / 10000 то есть на каждые 100 долларов средств на счете приходится 0,01 лота. Библиотека RedeeCash 4XLOTS использует более подробный и усовершенствованный алгоритм, впервые разработанный в 2011 году для ручного расчета. RedeeCash 4XLOTS имеет единс
Эта библиотека позволит вам управлять сделками с использованием любого вашего советника, и ее очень легко интегрировать в любой советник, что вы можете сделать самостоятельно с помощью кода сценария, упомянутого в описании, а также демонстрационных примеров на видео, которые показывают весь процесс. Этот продукт позволяет осуществлять торговые операции через API и не включает графики. Пользователи могут использовать графики брокеров, предоставляющих графики криптовалют, и отправлять заказы на Bi
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 позволяет выполнить пошаговую и кластерную форвард-оптимизацию ( walk-forward optimization ) советника в МетаТрейдер 4. Для использования необходимо включить заголовочный файл WalkForwardOptimizer.mqh в код советника и добавить необходимые вызовы функций. Когда библиотека встроена в советник, можно запускать оптимизацию в соответствии с процедурой, описанной в Руководстве пользователя . По окончанию оптимизации промежуточные результаты сохраняются в csv-файл и наб
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
Библиотека для создания в отдельном окне краткого торгового отчета. Поддерживает три режима генерации отчета: Для всех совершенных сделок. Для сделок совершенных только по текущему инструменту. Для сделок совершенных по всем инструментам исключая текущий. Есть возможность составления отчета по сделкам с определенным магическим числом. Можно задать временной период отчета, скрывать номер счета и имя владельца, записать отчет в htm-файл. Библиотека удобна для быстрой оценки торговой эффективности
Отображает необходимую текстовую информацию на графиках. Во-первых, импортируйте библиотеку: #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 setLineNa
Эта библиотека предназначена для помощи в управлении сделками, расчета лота, трейлинга, частичного закрытия и других функций Ордера CloseallSell: Закрыть все ордера на продажу. CloseallBuy: Закрыть все ордера на покупку. CloseallOpen: Закрыть все открытые ордера. DeletePending: Закрыть все отложенные ордера. DeleteAll: Закрыть все рыночные ордера и удалить все отложенные ордера. CheckOpenBuyOrders: возвращает количество ордеров на покупку. CheckOpenSellOrders: возвращает количество ордеров на
MetaCOT 2 CFTC ToolBox - это специальная библиотека, предоставляющая доступ к отчетам CFTC (U.S. Commodity Futures Trading Commission) прямо в терминале MetaTrader. Она включает все индикаторы, построенные на основе этих отчетов. Имея эту библиотеку Вам нет необходимости приобретать каждый индикатор MetaCOT в отдельности. Вместо этого, Вы получаете набор сразу из всех 34 индикаторов, в который входят также индикаторы недоступные в виде отдельной версии. Библиотека поддерживает все типы отчетов,
Это упрощенная и эффективная версия библиотеки для walk-forward анализа торговых экспертов. Она собирает данные о торговле эксперта во время процесса его оптимизации в тестере MetaTrader и сохраняет их в промежуточные файлы в каталоге tester/Files. Затем на основе этих файлов с помощью специального скрипта WalkForwardBuilder можно построить кластерный walk-forward отчет и уточняющие его rolling walk-forward отчеты. Перед запуском скрипта нужно вручную переместить промежуточные файлы в каталог MQ
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
EA introduction:    Gold long short hedging is a full-automatic trading strategy of long short trading, automatic change of hands and dynamic stop loss and stop profit. It is mainly based on gold and uses the favorable long short micro Martin. At the same time, combined with the hedging mechanism, long short hedging will be carried out in the oscillatory market, and in the trend market, the wrong order of loss will be stopped directly to comply with the unilateral trend, so the strategy can be
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.
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
Другие продукты этого автора
[跟单系统] T he most friendly Copier interactive interface, the most abundant easy-to-use functions, and the best Copy solution.    EASY   : Easy to use, load and select the Master or SLAVE to use easily  FAST:   Quickly copy orders, algorithmic optimal follow-up mechanism, priority calculation of new signals, priority queue processing received special signals Multiple:   1. Support multiple signals to be sent at the same time, multiple accounts can select multiple accounts to copy at the same time
[跟单系统] T he most friendly Copier interactive interface, the most abundant easy-to-use functions, and the best Copy solution.    EASY   : Easy to use, load and select the Master or SLAVE to use easily FAST:   Quickly copy orders, algorithmic optimal follow-up mechanism, priority calculation of new signals, priority queue processing received special signals Multiple:   1. Support multiple signals to be sent at the same time, multiple accounts can select multiple accounts to copy at the same time 2
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO 砖图 Renko PRO->>>   The display of the brick map on the main map. The Renko chart ideal
FREE
Торговля пивотами: 1.pp pivot 2. r1 r2 r3, s1 s2 s3 Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Сотрудничество QQ: 556024 " Со
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO MACD называется скользящей средней конвергенции и расхождения, которая создается на основе дво
FREE
лучший партнер для трейдеров!       Торговый помощник: Это очень многофункциональное торговое пособие. Разработка непростая, пожалуйста, поддержите Pro Click to jump K Торговый помощник Pro MT5 Инструкция по работе с торговым помощником Основные настройки использования Базовый: Переключатель выбора языка поддержки (в настоящее время поддерживает китайский и английский языки)           автоматическое распознавание языка Поддержка привязки       горячая клавиша для открытия
FREE
Торговля пивотами: 1.pp pivot 2. r1 r2 r3, s1 s2 s3 Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Настоятельно рекомендую трендовые ин
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Расширенные полосы Боллинджера: 1. Рельс Боллинджера изменит цвет в зависимости от направлен
FREE
Этот индикатор представляет собой идеальный индикатор волнового автоматического анализа для практической торговли! Стандартизированное определение диапазона больше не является волной для разных людей, и рисунок антропогенных помех устранен, что играет ключевую роль в строгом анализе подхода. =>Increase the choice of international style mode, (red fall green rise style)             На данный момент при покупке со скидкой!   Содержание индекса: 1.         Базовая волна:   Сначала мы нашли
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Расширенные полосы Боллинджера: 1. Рельс Боллинджера изменит цвет в зависимости от направлен
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO 砖图Renko PRO->>> The display of the brick map on the main map. The Renko chart ideally remo
FREE
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
Этот индикатор представляет собой идеальный индикатор волнового автоматического анализа для практической торговли! Стандартизированное определение диапазона больше не является волной для разных людей, и рисунок антропогенных помех устранен, что играет ключевую роль в строгом анализе подхода. =》Increase the choice of international style mode, (red fall green rise style)           На данный момент при покупке со скидкой!   Содержание индекса: 1.       Базовая волна:   Сначала мы нашли точ
K Trade Assistant
Kaijun Wang
4.76 (25)
Лучший партнер для трейдеров!     Торговый помощник: Это очень многофункциональное торговое пособие. Разработка непростая, пожалуйста, поддержите Pro Click to jump K Торговый помощник Pro     Инструкция по работе с торговым помощником Основные настройки использования Базовый: Переключатель выбора языка поддержки (в настоящее время поддерживает китайский и английский языки)       для автоматического определения языка Поддержка привязки       горячая клавиша для отк
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO «Кооператив QQ: 556024»  "Сотрудничество WeChat: 556024"  «Совместная электронная почта: 55602
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO «Кооператив QQ: 556024»  "Сотрудничество WeChat: 556024"  «Совместная электронная почта: 55602
FREE
Индикаторы для трендовых! Торговая система, построенная на трех скользящих средних. Торгуйте по тренду и позвольте прибыли расти. Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , M
FREE
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 to
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Fibo: from KTrade 1. Automatically calculate and analyze the band. -> Get the desired band 2.
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
Индикаторы для трендовых! Торговая система, построенная на трех скользящих средних. Торгуйте по тренду и позвольте прибыли расти. Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , M
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO The homeopathic indicator is also called the CCI indicator. The CCI indicator was propos
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Can set the cycle for other varieties of K line graph covered this window, fluctuations obse
FREE
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
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Strongly recommend trend indicators,   automatic calculation of wave standard   and   MT5 ve
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO MACD называется скользящей средней конвергенции и расхождения, которая создается на основе дво
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO The homeopathic indicator is also called the CCI indicator. The CCI indicator was propos
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
KTrade Fibo
Kaijun Wang
4.89 (9)
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO Fibo: from KTrade 1. Automatically calculate and analyze the band. -> Get the desired band 2.
FREE
Provide ideas for trend trading. Automatic calculation and generation of trend channels. The channel line, also known as the pipeline line, is to draw a straight line parallel to the trend line in the opposite direction of the trend line, and the straight line crosses the highest or lowest price of the recent period. These two lines run the price in the middle and have obvious pipe or channel shapes. Necessary for traders: tools and indicators Waves automatically calculate indicators, chann
Фильтр:
Нет отзывов
Ответ на отзыв