• 概要
  • レビュー (2)
  • コメント (4)
  • 最新情報

K Trade Lib5

2

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

#import "K Trade Lib5.ex5"
   //简单开单
   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);
  }



おすすめのプロダクト
Simple program i created, to help close all your orders instantly when you are busy scalping the market or if you want to avoid news days but still have a lot of orders and pending orders open and can't close them in time.. with this script all you're problems will be solved. Simple drag and drop and the script automatically does it's thing, quick and easy  also a very good tool to use when scalping
FREE
This library allows you to automatically filter events by symbol. Additionally, it requires the use of "flags" to classify events based on their importance (high, low, etc.). Properties: Our library is simple and only requires the export of four functions to work properly. Requirements: The library uses OnTimer , so it is not compatible with programs that also use this event. If your bot utilizes OnTimer , this may interfere with the library’s functionality and prevent event filtering. We recomm
FREE
MetaTrader 5 (MT5)用のUZFX - Close All Open Buy & Sell Orders Instantlyスクリプトは、トレーダーが1回の約定ですべてのアクティブなマーケットポジションを即座にクローズできる強力なツールです。このスクリプトは、緊急の取引管理に最適で、トレーダーがボラティリティが高い時、ニュースイベント、または戦略の調整中に素早く市場から撤退するのに役立ちます。 特徴 全シンボルの未決済の買いポジションと売りポジションをすべて決済します。 正確な約定のために最新の買値/売値を使用します。 トレーダーが最小限の手作業でマーケットから即座に撤退できるようサポートします。 使用方法 MT5チャートにスクリプトをアタッチします。 スクリプトは、すべての買いポジションと売りポジションをスキャンして決済します。 各決済注文の確認メッセージがExpertsタブに表示されます。 注意: このスクリプトは未決注文を削除しません。 添付チャートだけでなく、すべての取引シンボルで機能します。 スクリプトは即座に実行されるため、スクリプトを実行する前にすべて
FREE
Lib5 EAPadPRO for MT5
Vladislav Andruschenko
4.4 (5)
MetaTrader5のエキスパートアドバイザーに情報パネルを追加するためのライブラリ。 プログラムの情報とインターフェースが取引で利益をもたらすことを保証することはできませんが、プログラムの最も単純なインターフェースでさえ第一印象を強めることができると断言できます。 エキスパートアドバイザーに パネルを追加するための詳細な説明と手順は、ブログにあります:   LIB-EAPADPROステップバイステップの説明 パネルの詳細な説明と EAPADPROの使用手順 MetaTrader4ライブラリバージョン 追加のプロセスは 10のステップで 構成されており、それらについては記事で詳しく説明しています。 ライブラリのインストール このサイトからライブラリをインストールします。 エキスパートアドバイザーを開きます。 コードをインストールするためのサンプルとステップバイステップガイド、ファイル Exp-EAPADPRO LIBRARY TEST(ブログにあります)を開き ます。 推奨事項に記載されているように各ステップを実行するか、サイトからのステップバイステップの説明を使用してください。
FREE
Ota A2
Sander Maehle Andresen
OTA A2 - 高度取引ターミナル最適化ツール 重要な市場の瞬間に取引ターミナルが遅くなる原因を考えたことはありますか? OTA A2は、この一般的な課題に対する革新的な解決策であり、取引ターミナルの最適化における画期的な進歩を実現します。 なぜOTA A2なのか? 現代の市場取引には最高のパフォーマンスが不可欠です。複数の戦略を同時に実行する場合でも、 集中的なバックテストを実施する場合でも、多数のチャートを管理する場合でも、1ミリ秒が重要です。 OTA A2は、プロのトレーダーの実際のニーズから生まれ、プレッシャーの下でも一貫したパフォーマンスを維持できるソリューションです。 主要機能 動的メモリ回収 - 取引ニーズに適応するインテリジェントなリソース管理 キャッシュシステムの最適化 - データアクセス速度を向上させる高度なキャッシュアルゴリズム ワーキングセット管理 - 最適なパフォーマンスレベルを維持する高度なメモリ割り当て ターミナルリソースの強化 - ピーク時の取引条件のための包括的なシステム最適化 技術革新 OTA A2は、直接的なシステム統合を通じて最先端の最適化技
FREE
MarketPro toolkit
Johannes Hermanus Cilliers
Start earning profits by copying All trades are sent by our successful Forex trader & are extremely profitable. You can earn profits by copying trades daily Trial Period included You'll also get access to extremely powerful trading education which is designed in a simple way for you to become a profitable trader, even if you have no trading experience. https://ec137gsj1wp5tp7dbjkdkxfr4x.hop.clickbank.net/?cbpage=vip
FREE
Market book tester
Aliaksandr Hryshyn
1 (1)
Using data from the order book in the strategy tester Key features: Simultaneous use of several symbols, up to 7 pieces DOM visualization With the visualization of order books, real-time simulation is available, as well as acceleration or deceleration Working with the library: This product also requires a utility to save data:  https://www.mql5.com/en/market/product/71642 Speed control utility:  https://www.mql5.com/en/market/product/81409 Include file:   https://c.mql5.com/31/735/Market_book_s
FREE
MetaTrader 5 (MT5)用のUZFX - Delete Only Pending Ordersスクリプトは、取引口座からすべての未決注文(買い指値、売り指値、買い逆指値、売り逆指値)を自動的に削除するシンプルで効果的なツールです。このスクリプトは、アクティブなマーケットポジションに影響を与えることなく、保留中の注文を即座に消去したいトレーダーに最適です。 特徴 すべての未決注文(買い指値、売り指値、買い逆指値、売り逆指値)を削除します。 未決済のポジションには影響を与えません。 Experts]タブからリアルタイムで約定状況を確認できます。 トレーダーが手動で操作することなく、未決注文のストラテジーを素早くリセットできます。 使用方法 MT5チャートにスクリプトを添付します。 スクリプトはすべての未決注文を自動的にスキャンして削除します。 削除された各注文の確認メッセージが Experts タブに表示されます。 注意 このスクリプトは有効な取引を決済するのではなく、未決注文を削除するだけです。 スクリプトを実行する前に、すべての未決注文を削除することを確認してください
FREE
無料インジケーター - 無制限のアカウント   -   すべての無料製品についてはここをクリックしてください SignalXpert は、無料の RangeXpert MT5 インジケーターを使用するトレーダーに強力な分析ツールを提供するために私が開発しました。 異なる時間枠で最大25の異なる資産を同時に監視 し、最も重要な市場の動きをリアルタイムで認識することができます。統合されたアラー ム機能により、アラート、プッシュまたはEメ ールで通知を送信することができ、二度と取引機会を逃しません。 MetaTrader-VPS にインストールされた SignalXpert は24時間アクティブで、信頼できるシグナル監視を保証します。エントリーまたはエグジットを計画中であろうとなかろうと、 SignalXpert は迅速で的を絞ったサポートを提供し、不安定な市場でも自信を持って取引できるようサポートします。 高精度の   AUTOTRADING   取引システム (EA) が利用可能になりました : RangeXpert MT5  »   https://www.mql5.com/ja
FREE
News Scalper EA is an Expert Advisor for trading EURUSD - GBPUSD - XAUUSD pairs, positioning your positions during the news. Developed by an experienced trader with over 17 years of trading experience. News Scalper EA uses a news calendar from MQL5 and trades according to them. With sophisticated strategy and risk management, the EA protects your positions from larger losses! News Scalper EA lets you close the SL after the set time (1 minute, planned) when the position is in minus, which proves
FREE
UZFX - MetaTrader 5 (MT5)用の必要証拠金および最大ロットサイズスクリプトは、トレーダーが1ロットポジションを建てるために必要な証拠金を迅速に決定し、現在の口座資本に基づいて取引可能な最大ロットサイズを計算できるように設計されています。このツールはリスク管理とポジションサイジングに不可欠であり、トレーダーは効率的に取引計画を立てることができます。 特徴 選択したシンボルで1ロット取引を開始するために必要な証拠金を計算します。 利用可能な資本に基づいて、トレーダーがオープンできる最大ロットサイズを決定します。 正確な証拠金計算のために現在のアスク価格を使用します。 コメント機能により、結果をチャート上に直接表示。 トレーダーがレバレッジとリスクを管理しながらポジションサイジングを最適化するのに役立ちます。 使用方法 スクリプトを希望の取引シンボルのチャートにアタッチします。 スクリプトが計算し、表示します: 1ロットに必要な証拠金 利用可能な資本に基づく取引可能な最大ロットサイズ 結果はチャートの左上に表示されます。 注意 スクリプトでは、証拠金の計算に
FREE
High Low Open Close
Alexandre Borela
4.98 (43)
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
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
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 etc
FREE
無限からの通貨の強さを測定するためのこの革新的な指標は、長い間取引されているダフ屋やトレーダーにとって不可欠な助手です。 通貨の強さ/弱さを分析するためのシステムは、世界の主要なトレーダーによって市場で長い間知られており、使用されてきました。 任意の裁定取引は、この分析なしでは完全ではありません。 私たちの指標は、互いに関連して基本通貨の強さを簡単に決定します。 これは、インスタント分析を可能にし、最強のエントリポイントを検索し、すべてまたは現在の通貨ペアの折れ線グラフが表示されます。 インジケータは直感的で、すぐに見つけて任意のペアに切り替えることができ、地下室とメインチャートの両方に配置できるモバイルパネルがあります。 通貨の強さの変化の通知のタイマーモードは、トレーダーに電話で通知を受け取る機会を与えます。  通貨パワーメーターインフィニティ指標を使用するためのいくつかの戦略: 1. 通貨の強さの線形表示のチャートを使用して、交差点を新興トレンドの信号として検索します 2. トレンド反転信号が表示された後、強い通貨の方向に頭皮 3. 通貨の強さの発散分析を使用して、現在の
MetaTrader 5 (MT5)用のUZFX - Set Stop Loss to Breakeven Instantlyスクリプトは、トレーダーがすべてのオープンポジションのストップロスをエントリー価格に素早く移動させ、リスクのない取引を確保できる強力なツールです。このスクリプトは、アクティブな取引を効率的に管理するために特に有用で、ポジションが有利に動くと、トレーダーは潜在的な損失から保護されます。 特徴 すべてのオープンポジションのストップロスを自動的にブレイクイーブン(エントリー価格)に設定。 すべての未決済取引をループし、ブレイクイーブンに達していないものだけを調整します。 利益を確保し、潜在的な損失を最小限に抑えることで、リスク管理を強化します。 使用方法 このスクリプトをチャートに添付すると、すべてのオープンポジションが自動的に調整されます。 ポジションのストップロスがすでにブレイクイーブンにある場合、そのポジションはスキップされます。 スクリプトは「エキスパート」タブに修正またはエラーを確認するメッセージを表示します。 注意 このスクリプトは既存の取引を変更す
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
Go Long Advanced
Phantom Trading Inc.
5 (3)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 このEAには、有効/無効を切り替えられる複数のテクニカルフィルターが含まれてい
FREE
MACD Colored ZeroLag
Farzin Sadeghi Bonjar
4.5 (6)
It is the MQL5 version of zero lag MACD that was available for MT4 here: https://www.mql5.com/en/code/9993 Also there was a colored version of it here but it had some problems: https://www.mql5.com/en/code/8703 I fixed the MT4 version which has 95 lines of code. It took me 5 days to write the MT5 version.(reading the logs and testing multiple times and finding out the difference of MT5 and MT4!) My first MQL5 version of this indicator had 400 lines of code but I optimized my own code again and n
FREE
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
トレンドエキスパートは、"FourAverage"指標の最適なパラメータを見つけるために特別に作成されました。 アドバイザーは常に取引モードで取引します(買い取引を終了し、すぐに反対の取引を開始します)。 このアプローチは、可能な限り正確に傾向を決定する指標の能力を識別することを可能にする。 Expert Advisorは完全に自動化されており、マーチンゲール法を使用して資本を管理する能力を持っています。 デフォルト設定は"XAUUSD(GOLD)H1"です。 の指標: hhttps://www.mql5.com/ja/market/product/597 Expert Advisorには、さまざまなシンボルと時間枠のパラメータセットが追加されました。 現時点では、モスクワ証券取引所の金、Bitcoin、EuroDollar、Sberbank株式などのシンボルが既製のセットに追加されています。 それらは、「4平均」インジケータからのパラメータセットと完全に一致します。 新しい設定セットを追加する必要がある場合は、"FourAverage MT5"インジケータのレビューにそれについて
FREE
The Stochastic Momentum Index (SMI), developed by William Blau and featured in the January 1993 edition of Technical Analysis of Stocks & Commodities magazine, introduces a unique perspective to trading analysis. Distinguished from the conventional Stochastic Oscillator, which evaluates the current close in relation to the recent x-period high/low range, the SMI assesses the close's position relative to the midpoint of this range. This innovation yields an oscillator with a range of +/- 100, re
FREE
Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
FREE
如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feature to add on the base version. PA Touching Alert is a tool to free you from watching price to touch certain critical price levels all day alone. With this tool, you can set two price levels: upper price and lower price, which should be greater than/less than the current price respectively. Then once price touches the upper price or lower price, alert and/or notification would be sent
FREE
DemsFx BC Entry EA
Desmond Ebimobowei Dogubo
1. The Expert Adviser is built with a basic, simple and stable trading strategy with i touch or Price Action Principle that is highly effective and accurate with a sniper entry system for a good money management.. 2. The expert advisor works best as from 15 minutes time frame and above.... 3. The expert advisor work with all broker all currency pair and synthetic indices... 4. Use a reasonable lot size and correct settings if you want to get the best of the Expert Advisor.. 5. With Default setti
FREE
トレンドキャッチャー: アラートインジケーター付きのトレンドキャッチャーストラテジーは、市場トレンドやポテンシャルなエントリーポイントやエグジットポイントを特定するのに役立つ多目的な技術分析ツールです。動的なトレンドキャッチャーストラテジーを備えており、市場状況に適応してトレンドの方向を明確に視覚化します。トレーダーは、自身の好みやリスク許容度に合わせてパラメーターをカスタマイズできます。このインジケーターはトレンドの識別を支援し、ポテンシャルなリバーサルをシグナルし、トレイリングストップのメカニズムとして機能し、市場への迅速な対応のためのリアルタイムアラートを提供します。 特徴: - トレンドの識別:上昇トレンドと下降トレンドをシグナルします。 - トレンドのリバーサル:ローソク足の色が上昇から下降に変わった場合やその逆の場合に、ポテンシャルなリバーサルを警告します。 - リアルタイムアラート:新しいトレンドの識別に対するアラートを生成します。 推奨事項: - 通貨ペア:EURUSD、AUDUSD、XAUUSDなど... - タイムフレーム:H1。 - アカウントタイプ:
FREE
DynamicRSI
Andre Philipp Hollenbach
I’m sharing this code here for free to support the trading community. Feel free to modify it or even copy it entirely for your own use. I hope it’s helpful, and don’t hesitate to reach out if you have any questions or feedback! https://github.com/holle112/AlgoTradingConcepts.git Requirements Trading pairs all trending Pairs especially USDJPY Timeframe M1 to H6 Minimum deposit $ 100 Leverage 1:200 Brokers Hedging Pro or ECN Account Key Features: Multi-Timeframe Capability : Profitably trades
FREE
This is an automated Expert Advisor that trades using the MACD and Envelopes indicators. The paid version is available here . 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 ad
FREE
Market Profile 3 ForexArby com
Hussien Abdeltwab Hussien Ryad
3.93 (14)
Market Profile 3 MetaTrader 5 indicator  version 4.70— is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is als
FREE
Grid Scalper MA MT5 EA
Allan Munene Mutiiria
5 (2)
Grid Scalper MA MT5 EA Step into the fast lane of forex trading with Grid Scalper MA MT5 EA , a powerhouse expert advisor crafted for MetaTrader 5 that turns market volatility into your playground. This isn’t your average EA—it’s a precision scalping machine driven by a dynamic grid trading strategy, blending razor-sharp Moving Average crossover signals with a robust set of customizable features. Whether you’re a scalper hunting quick pips or a strategist riding market waves, this EA delivers t
FREE
このプロダクトを購入した人は以下も購入しています
Native Websocket
Racheal Samson
5 (5)
An   easy to use, fast,  asynchronous   WebSocket library  for MQL5. It supports: ws://   and   wss://  (Secure "TLS" WebSocket) text   and   binary   data It handles: fragmented message  automatically (large data transfer) ping-pong   frames  automatically (keep-alive handshake) Benefits: No DLL required. No OpenSSL installation required. Up to 128 Web Socket Connections from a single program. Various Log Levels for error tracing Can be synchronized to MQL5 Virtual Hosting . Completely native t
WalkForwardOptimizer MT5
Stanislav Korotky
3.63 (8)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. 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 variables.
Here   is   the   English translation   of   your   description   for   the EA   (Expert   Advisor): --- This   is a   time -based   automatic trading   EA . It allows   you   to   set the   exact   time   for trading , down   to   the   second , and   specify the   maximum number   of   orders . You   can choose   to   place   either   buy   or   sell   orders . It   is possible to   set take   profit and   stop   loss   points . Additionally , you can   specify   how   long after   placing  
このライブラリを使用すると、任意の EA を使用して取引を管理でき、説明に記載されているスクリプト コードを使用して任意の EA に簡単に統合でき、完全なプロセスを示すビデオのデモ例も利用できます。 - 指値注文、SL 指値注文、利食い指値注文の発行 - マーケット、SLマーケット、TPマーケットの注文を行う - 指値注文の変更 - 注文をキャンセルする - 注文のクエリ - レバレッジ、マージンの変更 - 位置情報の取得 もっと... MT5 に Binance チャートがない場合を除き、暗号チャートのレンタルはオプションです。 スクリプトのデモについては、 ここをクリックしてください トレーディングパネルでの取引をご希望の場合は、 この製品に興味があるかもしれません
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support Binance Futures USD-M and COIN-M Support Testnet mode Support all order types: Limit, Market, StopLimit, StopMarket, StopLoss and TakeProfit Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header file and EA sample https://drive.google.com/uc?export=download&id=17fWrZFeMZoSvH9-2iv4WDJhcyxG2eW17 Copy BinanceFutures.mqh to folder \MQL5\Include Copy  Bina
If you're a trader looking to use Binance.com and Binance.us exchanges directly from your MetaTrader 5 terminal, you'll want to check out Binance Library MetaTrader 5. This powerful tool allows you to trade all asset classes on both exchanges, including Spot, USD-M   and COIN-M futures, and includes all the necessary functions for trading activity. With Binance Library MetaTrader 5, you can easily add instruments from Binance to the Symbols list of MetaTrader 5, as well as obtain information ab
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
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
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 "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEven
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
Binance Library
Hadil Mutaqin SE
5 (1)
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Gold plucking machine   Gold plucking machine is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number      -  is a special number that the EA assigns to its orders. Lot Multiplier        - 
Gold plucking machine S   Gold plucking machine  S Gold plucking machine S   is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number        -  is a special number that the EA assigns to its
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 5.ex5"       //祝有个美好开始,运行首行加入    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 );    //复杂开单
1. What is this The MT5 system comes with very few optimization results. Sometimes we need to study more results. This library allows you to output more results during backtest optimization. It also supports printing more strategy results in a single backtest. 2. Product Features The results of the optimized output are quite numerous. CustomMax can be customized. The output is in the Common folder. It is automatically named according to the name of the EA, and the name of the same EA will be au
T5L Library is necessary to use the EAs from TSU Investimentos, IAtrader and others. It contains all the functions framework needed to Expert Advisors working properly.  ツ - The Expert Advisors from  TSU Investimentos does not work without this library,  the T5L library can have updates during the year - At this Library you will find several funcionalities like order sends, buy and sell, trigger entry points check, candlestick analyses, supply and demmand marking and lines, and much more. 
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
このライブラリは、キーと値の配列をソートするために使用されます。多くの場合、値をソートする必要があります。 Python言語のように sorted(key_value.items(), key = lambda kv:(kv[ 1 ], kv[ 0 ])) インポート機能 利用シーン例 1. グリッド EA 注文は始値に従って並べ替えられます void SortedByOpenPride()   {    long     OrderTicketBuffer[];    double   OpenPriceBuffer[];    for ( int i = PositionsTotal ()- 1 ; i>= 0 ; i--)      {        if (m_position.SelectByIndex(i))         {          OrderTicketBuffer[i] = long (m_position.Ticket());          OpenPriceBuffer[i] = m_position.PriceOpen();      
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 MT5 tab > Tools > Options > Expert Advisors > Check Allow web request for listed URL. Since the WebRequest() function can't be called from indicator ba
A Simple Moving Average (SMA) is a statistical indicator used in time series analysis. This indicator represents the arithmetic mean of a sequence of values over a specific period of time. SMA is used to smooth short-term fluctuations in data, helping to highlight the overall trend or direction of changes. This aids analysts and traders in better understanding the general dynamics of the time series and identifying potential trends or changes in direction.  More information you can find in Wiki 
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
金融とトレーディング戦略の領域を深く掘り下げ、私は一連の実験を実施し、強化学習に基づくアプローチと強化学習を使用しないアプローチを調査することにしました。 これらの手法を適用して、私は現代のトレーディングにおけるユニークな戦略の重要性を理解する上で極めて重要な微妙な結論を導き出すことができました。 ニューラル ネットワーク アドバイザーは、初期段階では目覚ましい効率性を示したにもかかわらず、長期的には非常に不安定であることが判明しました。 市場のボラティリティ、トレンドの変化、外部事象などのさまざまな要因により、企業の運営に混乱が生じ、最終的には不安定化につながりました。 この経験を武器に、私は課題を受け入れ、独自のアプローチを開発し始めました。 私の焦点は、集められた最良のインジケーターを異なるパラメーター設定で利用するアドバイザーを作成することに集中していました。 このアドバイザーは、私の独自の戦略に基づいており、さまざまなパラメーター設定を持つ 14 の指標を同時に採用し、何時間ものデータ分析と綿密なテストから生まれました。
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. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
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. Metatrader4 Version   |   All Products   |   Contact   Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   an
このライブラリは、できるだけ簡単にMetaTrader上で直接OpenAIのAPIを使用するための手段として提供されます。 ライブラリの機能についてさらに詳しく知るには、次の記事をお読みください: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual 重要:EAを使用するには、OpenAI APIへのアクセスを許可するために、次のURLを追加する必要があります  添付画像に示されているように ライブラリを使用するには、次のリンクで見つけることができる次のヘッダーを含める必要があります:  https://www.mql5.com/en/blogs/post/756108 #import "StormWaveOpenAI.ex5" COpenAI *iOpenAI(string); CMessages *iMessages(void); CTools *iTools(void); #import これが、ライブラリを簡単に使用するため
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.
Nmt5
Liang Qi Quan
这段代码是一个简单的交易专家顾问(Expert Advisor)示例,主要功能如下: 使用两个移动平均线(MA)作为交易信号: 快速MA(FastMA)和慢速MA(SlowMA) 初始化函数(OnInit): 创建两个MA指标句柄 设置数组为时间序列模式 清理函数(OnDeinit): 释放指标句柄,防止内存泄漏 主要交易逻辑(OnTick): 获取最新的MA值 判断趋势和交易信号 在无持仓时执行交易 交易规则: 上升趋势+买入信号时开多单 下降趋势+卖出信号时开空单 使用固定的止损和止盈点数 风险管理: 使用输入参数设置交易手数、止损和止盈 每次只允许一个持仓(inTrade变量) 使用MQL5的Trade库进行交易操作,简化了下单过程 这个EA适合初学者学习,展示了基本的EA结构和简单的交易策略实现方法。但在实际使用前,还需要进行更多的测试和优化。
作者のその他のプロダクト
コピー機->便利で高速なインターフェースインタラクション、ユーザーはすぐに使用できます     ->>>> WindowsコンピュータまたはVPS Windowsでの使用を推奨 特徴: 多様でパーソナライズされたコピー取引設定:1. 異なるシグナルソースに異なるロットモードを設定できます。2. フォワードコピー取引とリバースコピー取引に異なるシグナルソースを設定できます。3. シグナルはコメントで設定できます。4. 契約ロットに応じてロットを調整するかどうか 多様でパーソナライズされたコピー注文設定2:1.品種ごとに異なるロットモードを設定できます2.順方向コピー注文と逆方向コピー注文に異なる品種を設定できます3.コメントでシグナルを設定できます4.契約ロットに応じてロットを調整するかどうか コメントフィルタリング、MAGICフィルタリング、シグナルロットフィルタリング、ローカル製品フィルタリング 勤務時間設定 逆同期SLAVE終了 注文バインド機能: 任意の注文を設定されたシグナルソース注文にバインドできます (テーブルをダブルクリックして編集します) アカウントリスク管理 基本
コピー機->便利で高速なインターフェースインタラクション、ユーザーはすぐに使用できます     ->>>> WindowsコンピュータまたはVPS Windowsでの使用を推奨 特徴: 多様でパーソナライズされたコピー取引設定:1. 異なるシグナルソースに異なるロットモードを設定できます。2. フォワードコピー取引とリバースコピー取引に異なるシグナルソースを設定できます。3. シグナルはコメントで設定できます。4. 契約ロットに応じてロットを調整するかどうか 多様でパーソナライズされたコピー注文設定2:1.品種ごとに異なるロットモードを設定できます2.順方向コピー注文と逆方向コピー注文に異なる品種を設定できます3.コメントでシグナルを設定できます4.契約ロットに応じてロットを調整するかどうか コメントフィルタリング、MAGICフィルタリング、シグナルロットフィルタリング、ローカル製品フィルタリング 勤務時間設定 逆同期SLAVE終了 注文バインド機能: 任意の注文を設定されたシグナルソース注文にバインドできます (テーブルをダブルクリックして編集します) アカウントリスク管理 基本
アシスタント: トレードアシスタント-MT4 (クリックしてダウンロード) トレードアシスタント-MT5 (クリックしてダウンロード) 取扱説明書をよくお読みください。 基本: 言語の選択と切り替えをサポート(現在は中国語と英語をサポート)         自動言語認識 サポート   ホットキーの開閉   バインディングでは、ショートカット キーを使用して、ポジションをすばやく開いたり閉じたりできます...     ショートカットキーを閉じる。最大30個のホットキーをサポート ロック解除はほとんどの機能をサポート   リプレイ   操作と缶   テスト環境で使用される ポジションエリアのオープンとクローズ: ワンクリックポジションオープン(     ストッププロフィットとストップロスの便利な設定、ロットサイズの自動計算などの便利な機能を含む) ワンクリックで閉じる     (ロック)、ミニマリストスタイルのデザイン、決済タイプ、決済タイプ(ロングオーダー、ショートオーダー、または保留中の注文)、利益が0より大きい注文を決済するかどうか、損失注文を決済するかどうか、決済比率(
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 he
ピボット取引: 1.ppピボット 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 " 協力wechat:556024 " 協力メール:556024@qq.c
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 r
FREE
このインジケーターは実践的なトレードに最適な自動波動分析のインジケーターです! 場合... 注:   Tang Lun (Tang Zhong Shuo Zen) の命名規則の影響で、私は波のグレーディングに西洋の名前を使用することに慣れていません。基本的な波を ペン 、二次波のバンドを セグメント と名付けました。同時に、 セグメント にはトレンドの方向が指定されます (この命名方法は将来のノートで使用されます。最初に言っておきます)。ただし、アルゴリズムは曲がりくねった理論とはほとんど関係がないため、付けるべきではありません。これは、私の市場分析 によって要約された、絶えず変化する複雑な運用ルール を反映しています。 バンドは標準化され、人によって異なることがないよう定義されており、市場参入を厳密に分析する上で重要な役割を果たす人為的な干渉の描画方法が排除されています。 このインジケーターを使用することは、取引インターフェイスの美しさを改善することと同等であり、元の K ライン取引を放棄し、取引の新しいレベルに連れて行きます。また、宣伝の観点から顧客の認識も向上します。 イ
アシスタント: トレードアシスタント-MT4 (クリックしてダウンロード) トレードアシスタント-MT5 (クリックしてダウンロード) 取扱説明書をよくお読みください。 基本: 言語の選択と切り替えをサポート(現在は中国語と英語をサポート)         自動言語認識 サポート   ホットキーの開閉   バインディングでは、ショートカット キーを使用して、ポジションをすばやく開いたり閉じたりできます...     ショートカットキーを閉じる。最大30個のホットキーをサポート ロック解除はほとんどの機能をサポート   リプレイ   操作と缶   テスト環境で使用される ポジションエリアのオープンとクローズ: ワンクリックポジションオープン(     ストッププロフィットとストップロスの便利な設定、ロットサイズの自動計算などの便利な機能を含む) ワンクリックで閉じる     (ロック)、ミニマリストスタイルのデザイン、決済タイプ、決済タイプ(ロングオーダー、ショートオーダー、または保留中の注文)、利益が0より大きい注文を決済するかどうか、損失注文を決済するかどうか、決済比率(
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.ボリンジャーレールは方向によって色が変わります」 2.ボリンジャーアウターレールの伸縮はアウターレールの色の変化でマークされます。」 3.ボリンジャーミ
FREE
MACDは類似性と差異の移動平均と呼ばれ、二重指数移動平均から作成されます。高速指数移動平均(EMA12)を低速指数移動平均(EMA26)から差し引いて、高速DIFを取得し、次に2× (Express DIF-DIFの9日間の加重移動平均DEA)MACDバーを取得します。 MACDの意味は、基本的に二重移動平均と同じです。つまり、高速移動平均と低速移動平均の分散と集約は、現在のロングショートステータスと株価の開発傾向の可能性を特徴づけますが、読む方が便利です。 MACDの変化は市場動向の変化を表し、さまざまなKラインレベルのMACDは、現在のレベルサイクルにおける売買傾向を表します。 1.このインジケーターは、MACDの2行表示を追加します。 2.そしてエネルギーカラムに4つの異なる勾配を適用します! トレンドインジケーター、 波動標準の自動計算 、 MT5バージョンの波動標準の自動計算を強くお勧めします   Necessary for traders: tools and indicators Waves automatically calculate indicators,
FREE
ピボット取引: 1.ppピボット 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 トレンドインジケーター、 波動標準の自動計算 、 MT5バージョンの波動標準の自動計算を強くお勧めします
FREE
アシスタント: トレードアシスタント-MT4 (クリックしてダウンロード) トレードアシスタント-MT5 (クリックしてダウンロード) 取扱説明書をよくお読みください。 基本: ポジションの素早い開閉、ワンクリックでのポジションの開閉、ワンクリックでの注文の発注 ドローライントレード 自動SL/TP シンボルで閉じる 利益保護 SLプロテクトを移動 トレーリングSL アカウントリスク管理 秩序の影 注文の自動追加 自動クローズ注文 閉じる 再度開く シンボル情報 チャットオープン データ統計 言語の選択と切り替えをサポート(現在は中国語と英語をサポート)         自動言語認識 サポート   ホットキーの開閉   バインディングでは、ショートカット キーを使用して、ポジションをすばやく開いたり閉じたりできます...     ショートカットキーを閉じる。最大30個のホットキーをサポート ロック解除はほとんどの機能をサポート   リプレイ   操作と缶   テスト環境で使用される ポジションエリアのオープンとクローズ: ワンクリックポジションオープン(     ストッププ
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 "Cooperative QQ:556024"  "Cooperation wechat:556024"  "Cooperative email:556024@qq.com" Strong
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 remove
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」  「協力メール:556024@qq.com」 トレンドインジケーター、 波動標準の自動計算 、 MT5バージョンの波動標準
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.ボリンジャーレールは方向によって色が変わります」 2.ボリンジャーアウターレールの伸縮はアウターレールの色の変化でマークされます。」 3.ボリンジャーミ
FREE
指標はトレンドフォロワー向けです! 3つの移動平均によって構築された取引システム。トレンドに合わせて取引し、利益を上げましょう。 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 トレンドインジケーター、 波動標準の自動計算 、 MT
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 Fibo: from KTrade 1. Automatically calculate and analyze the band. -> Get the desired band 2.
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 proposed
FREE
指標はトレンドフォロワー向けです! 3つの移動平均によって構築された取引システム。トレンドに合わせて取引し、利益を上げましょう。 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 トレンドインジケーター、 波動標準の自動計算 、 MT
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 obser
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 is called Convergence and Divergence Moving Average, which is developed from the double e
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 Strongly recommend trend indicators,   automatic calculation of wave standard   and   MT5 ver
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
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 The homeopathic indicator is also called the CCI indicator. The CCI indicator was proposed
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
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
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 obser
FREE
Indicators are professional data statistics, position orders, historical order analysis->>>>>> <This version is in Chinese -> English version please move> 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 DEM
FREE
フィルタ:
Shigeo Sorihashi
99
Shigeo Sorihashi 2024.03.24 11:12 
 

よくわからないです?

Peng Jin
220
Peng Jin 2021.10.08 09:58 
 

ユーザーは評価に対して何もコメントを残しませんでした

レビューに返信
バージョン 2.10 2021.10.22
>>>>>>>>>>>>>
バージョン 2.0 2021.10.21
>>>>>>>>>>>>
バージョン 1.1 2021.10.15
>>>>>>>>>>>>>