• 概要
  • レビュー
  • コメント

Capital Trend

indicator named "MTRADER" designed to be used with the MetaTrader 4 trading platform. It appears to be a technical analysis tool for forex or stock market trading. Here's a breakdown of its key components and functionalities:

  1. Indicator Properties and Inputs:

    • The code begins by setting up basic properties of the indicator, such as its name, version, and drawing styles.
    • It defines two indicator buffers with blue and red colors, likely used for graphical representation on charts.
    • Input parameters ( inp_zone_period , inp_amplitude_period , inp_amplitude_coefficient ) are defined, allowing users to customize the indicator's behavior.
  2. Initialization ( OnInit ) Function:

    • This function initializes the indicator by setting up drawing styles for its components (arrows and lines).
    • Indicator buffers ( ext_arrow_up , ext_arrow_dn , etc.) are allocated here. These buffers store calculated values for drawing on charts.
    • The indicator short name is set to "MTRADER".
  3. Main Calculation ( OnCalculate ) Function:

    • This is where the core logic of the indicator is implemented.
    • The function iterates over available price data ( open , high , low , close ) and performs calculations based on the input parameters.
    • It calculates minimum and maximum values for certain periods, adjusted by the Average True Range (ATR) and a coefficient. This might be used for identifying potential support and resistance levels.
    • The ext_trend buffer seems to track the trend direction (up or down).
    • The indicator sets up zones ( ext_zone_up , ext_zone_dn ) and arrows ( ext_arrow_up , ext_arrow_dn ) on the chart to signal bullish or bearish trends.
  4. Trend Detection and Signal Generation:

    • The script detects trend changes based on closing prices relative to calculated min/max levels.
    • When a trend change is detected, it places arrows on the chart as potential buy or sell signals.
  5. Visual Representation:

    • The indicator likely draws two lines (zones) and arrows on the chart.
    • Upward trends are probably represented by a blue line (up zone) and an up arrow, while downward trends by a red line (down zone) and a down arrow.
  6. Usage:

    • Traders would use this indicator to identify potential entry and exit points based on trend reversals and strength, as indicated by the lines and arrows on the chart.
  1. คุณสมบัติและอินพุตของตัวบ่งชี้:

    • โค้ดเริ่มต้นด้วยการตั้งค่าคุณสมบัติพื้นฐานของตัวบ่งชี้ เช่น ชื่อ, เวอร์ชัน, และสไตล์การวาด
    • กำหนดสองตัวบัฟเฟอร์ตัวบ่งชี้ที่มีสีน้ำเงินและแดง ซึ่งน่าจะใช้สำหรับการแสดงผลทางกราฟิกบนแผนภูมิ
    • มีการกำหนดพารามิเตอร์อินพุต ( inp_zone_period , inp_amplitude_period , inp_amplitude_coefficient ) เพื่อให้ผู้ใช้สามารถปรับแต่งพฤติกรรมของตัวบ่งชี้ได้
  2. ฟังก์ชันเริ่มต้น ( OnInit ):

    • ฟังก์ชันนี้เริ่มต้นตัวบ่งชี้โดยการตั้งค่าสไตล์การวาดสำหรับส่วนประกอบของมัน (ลูกศรและเส้น)
    • ตัวบัฟเฟอร์ตัวบ่งชี้ ( ext_arrow_up , ext_arrow_dn ฯลฯ) ถูกจัดสรรที่นี่ ตัวบัฟเฟอร์เหล่านี้เก็บค่าที่คำนวณไว้เพื่อวาดบนแผนภูมิ
    • ชื่อสั้นของตัวบ่งชี้ถูกตั้งเป็น "MTRADER"
  3. ฟังก์ชันคำนวณหลัก ( OnCalculate ):

    • ที่นี่คือที่ซึ่งตรรกะหลักของตัวบ่งชี้ถูกนำมาใช้
    • ฟังก์ชันวนซ้ำผ่านข้อมูลราคาที่มีอยู่ ( open , high , low , close ) และทำการคำนวณตามพารามิเตอร์อินพุต
    • มีการคำนวณค่าต่ำสุดและสูงสุดสำหรับช่วงเวลาที่กำหนด ปรับโดย Average True Range (ATR) และสัมประสิทธิ์ ซึ่งอาจใช้ในการระบุระดับการสนับสนุนและการต้านทานที่เป็นไปได้
    • ตัวบัฟเฟอร์ ext_trend ดูเหมือนจะติดตามทิศทางของเทรนด์ (ขึ้นหรือลง)
    • ตัวบ่งชี้ตั้งค่าโซน ( ext_zone_up , ext_zone_dn ) และลูกศร ( ext_arrow_up , ext_arrow_dn ) บนแผนภูมิเพื่อส่งสัญญาณเทรนด์กระทิงหรือหมี
  4. การตรวจจับเทรนด์และการสร้างสัญญาณ:

    • สคริปต์ตรวจจับการเปลี่ยนแปลงของเทรนด์ตามราคาปิดเทียบกับระดับต่ำสุด/สูงสุดที่คำนวณได้
    • เมื่อตรวจพบการเปลี่ยนแปลงเทรนด์ มันจะวางลูกศรบนแผนภูมิเป็นสัญญาณซื้อหรือขายที่เป็นไปได้
  5. การแสดงผลทางภาพ:

    • ตัวบ่งชี้น่าจะวาดสองเส้น (โซน) และลูกศรบนแผนภูมิ
    • เทรนด์ที่เพิ่มขึ้นน่าจะถูกแสดงด้วยเส้นสีน้ำเงิน (โซนขึ้น) และลูกศรขึ้น ในขณะที่เทรนด์ที่ลดลงด้วยเส้นสีแดง (โซนลง) และลูกศรลง
  6. การใช้งาน:

    • นักซื้อขายจะใช้ตัวบ่งชี้นี้เพื่อระบุจุดเข้าและออกที่เป็นไปได้ตามการกลับตัวของเทรนด์และความแข็งแกร่ง ตามที่บ่งชี้โดยเส้นและลูกศรบนแผนภูมิ


おすすめのプロダクト
R Var 移動平均インジケーターは、根っからのトレンド フォロワー向けに設計されたトレンド フォロー インジケーターです。 これは、株式トレーダーや商品トレーダーの間で非常に人気のある外国為替取引指標であり、その人気は、本物のお金を稼ぐシグナルをユーザーに配信する能力に由来しています. インジケーターは、シエナ ライン上に配置された緑と赤のドットで構成されます。 緑色の点は強気のシグナルを示し、赤色の点は弱気のシグナルを示しています。 基本的な取引シグナル 買いシグナル: インディケータのシエナラインの点が緑色に変わったらロング。 売りシグナル: インジケーターのシエナ ライン上のドットが赤に変わったらショートします。 買い取引を終了する: 強気トレンドが進行している間にインジケーターのシエナ ラインに赤い点が表示された場合は、すべての買い注文を閉じます。 売りトレードを終了する: 弱気トレンドが進行中に、R Var 移動平均インジケーターのシエナ ラインに緑色の点が表示された場合は、すべての売り注文を閉じます。 チップ R Var 移動平均インジケーターを使用する場合は、
ndicador ADX Crossing Alertby Mr Beast El Indicador ADX Crossing Alert v1.0 es una herramienta avanzada diseñada para potenciar tu análisis técnico en MetaTrader, centrándose en las señales generadas por el cruce del Indicador de Dirección del Movimiento (ADX). Este indicador ofrece alertas visuales en el gráfico y la conveniencia de alertas via email, permitiéndote estar siempre al tanto de las oportunidades de trading. Características Destacadas: ADX Crossing Signals: El indicador utiliza el c
Ema Dashboard is an innovative dashboard that allows you to monitor Moving Average on multiples symbols and different timeframes. This dashboard allows you to analyze information on 28 pairs on an unique chart. Its functionality includes analysis of All Time Frames. This configuration allows you to identify the Long Term Trend with extreme ease. This panel allows you to take very important directional movements. A click on button opens a new chart (symbol and timeframe). Graphic Object Symbol l
MQLTrend
Mohammad Reza Aghaei
This tool helps you to control the situation at other times and include them in your trades when analyzing the market  This tool scans the market and reports the movement of the market at different times With the help of this tool, you can prevent many wrong analyzes With the help of this tool, you can have an overview of the market in the shortest time and save your time
FREE
Mars 6 is a  Oscillators  indicator  is a powerful indicator of  Break Zone  for any par and any timeframe. It doesn't requires any additional indicators for the trading setup.The indicator gives clear signals about opening and closing trades.This Indicator is a unique, high quality and affordable trading tool. Perfect For New Traders And Expert Traders Low risk entries. Never repaints signal. Never backpaints signal. Never recalculates signal. For MT4 Only Great For Scalping Great For Swing T
This is a simple PriceTMA bands, non repaint! it can be used for a trend following system or sometimes reversals. as a main signal or a filter for others strategies, it depends on the trader main strategy. calculations for this indicator are a combined Algorithm between moving averages "MA" and average true range"ATR". good luck with your trading! i hope it is helpful Cheers
Smart Channel is a non-redrawing channel indicator based on moving averages. The indicator is used to identify trends in financial markets and indicates the direction of price movement. Smart Channel, in fact, is a miniature trading strategy, since, regardless of the construction methods, it uses the tactics of rebounding from the boundaries of the built channel, and the boundaries themselves are used as guidelines for the correct placement of stop loss and take profit orders. The key differe
Mars 13  is a Break   indicator is a powerful indicator of Pattern trade for any par and any timeframe. It doesn't requires any additional indicators for the trading setup.The indicator gives clear signals about opening and closing trades.This Indicator is a unique, high quality and affordable trading tool.  Can be used in combination with other indicators Perfect For New Traders And Expert Traders Low risk entries. Never repaints signal. Never backpaints signal. Never recalculates signal. For
Power Trend Indicator for MetaTrader 4 The Power Trend Indicator for MetaTrader 4 is designed to assess both the momentum and direction of price movements. This MT4 indicator presents the trend strength using a four-color-coded system, allowing traders to spot weak momentum phases and anticipate potential trend initiations. Its visual feedback is valuable for recognizing shifts in market sentiment and detecting trend transitions. Red signals indicate reversals, blue suggests mild trends, while g
FREE
Mars 15  is a Break   indicator is a powerful indicator of Pattern trade for any par and any timeframe. It doesn't requires any additional indicators for the trading setup.The indicator gives clear signals about opening and closing trades.This Indicator is a unique, high quality and affordable trading tool.  Can be used in combination with other indicators Perfect For New Traders And Expert Traders Low risk entries. Never repaints signal. Never backpaints signal. Never recalculates signal. For M
Mars  14  is a Break indicator is a powerful indicator of Pattern trade for any par and any timeframe. It doesn't requires any additional indicators for the trading setup.The indicator gives clear signals about opening and closing trades.This Indicator is a unique, high quality and affordable trading tool.  Can be used in combination with other indicators Perfect For New Traders And Expert Traders Low risk entries. Never repaints signal. Never backpaints signal. Never recalculates signal. For M
The indicator sends messages to e-mail and mobile terminal when the price approaches the horizontal levels and trend lines that are drawn using the handy panel! The levels and trend lines are deleted and placed to the chart using one click on the panel, and they can be dragged on the chart by mouse! It is possible to set the interval between messages in the settings, the interval is applied to each object separately! Indicator Settings ===*** Main settings ***=== - below is the list of the main
Indicator developed with precision algorithm that seeks moments of strong trend in the markets. Reconciled with an algorithm that seeks high volume moments in the market. I recommend using timeframes M15 to H1. I also recommend an optimization to your liking for your best currency pairs. Any questions, do not hesitate to ask. Buy EA based on this indicator CLICKING HERE This is an excellent trigger indicator for your trading system. If you already operate a trend and want an indicator to show y
You know you are not a shark but maybe you can be a   remora fish. You just have to locate a shark and feed on the remains. This system uses an indicator that detects the movements of the shark and positions itself in favor of it, taking advantage of its capture. This system analyzes the market looking for the waves that the shark produces in the forex sea when it attacks the market. Once the shark attack is located, it enters the market to catch a piece of the catch. All operations have thei
This is an indicator that has been updated from the previous VRC indicator, which has both buy and sell arrows now, and it is optimised from the previous one. You can try it out, the version is upgraded and might suit your trading style. You can also use this indicator as a confluence, or you can use it as a main signal provider; it can be used along with your strategy or top-down approach analysis. Past performance does not guarantee future performance; kindly do a top-down analysis and keep yo
Summary This indicator is based on RSI and Momentum indicators. It also considers moving averages of these two indicators. The three indicators have adjustable settings. The arrows do not repaint since the indicator only uses confirmed values and waits for the candle to close before painting an arrow. The indicator is also able to alert when arrows appear. There are 3 types of alerts - Popup, Email and Mobile Push Notifications. The arrows can be used in the EA and the inputs can also be optimiz
FREE
What Is The Buy OR Sell MT4 Indicator? As the name suggests, the   Buy-Sell Indicator   is an indicator that tells traders about when to take the buy and sell position on the Forex price chart. This tool is a preference of many traders because it can provide solid indications of the trend and its reversals. In addition, it helps them simplify the hassle of choosing one or more indicators because this one tool alone is enough to provide them with a straight answer.  When you apply this indicator
EZT Trend
Tibor Rituper
4.67 (3)
EZTトレンドインジケーターは、トレンド、プルバック、エントリーの機会を示します。 オプションのフィルタリングとあらゆるタイプのアラートが利用可能です。 電子メールおよびプッシュ通知アラートが追加されます。 また、このインジケーターに基づいた EA も開発中であり、間もなく利用可能になる予定です。 2色のヒストグラムとラインで構成される多機能インジケーターです。 これはトレンドの方向と強さを視覚的に表現したもので、ラインまたはヒストグラム上で発散が何度も見つかります。 このインジケーターは自動パラメーター設定とうまく連携します。 これらは特定の時間枠に対して事前に決定されており、その設定でインジケーターを使用することをお勧めします。 手動モードでは、独自のパラメータを設定できます。 これはマルチタイムフレーム(MTF)インジケーターです。 このインジケーターは、MTF rsi、MTF cci、MACD pro などの他のインジケーターの組み合わせとうまく機能します。 取引される商品の変動が大きいほど、最適なエントリーを見つけるために使用する必要がある時間枠は短くなります。 常
Mars 7 is a    Trend indicator  is a powerful indicator of TREND CHANGE  for any par and any timeframe. It doesn't requires any additional indicators for the trading setup.The indicator gives clear signals about opening and closing trades.This Indicator is a unique, high quality and affordable trading tool. Perfect For New Traders And Expert Traders Low risk entries. Never repaints signal. Never backpaints signal. Never recalculates signal. For MT4 Only Great For Scalping Great For Swing Tradi
<LOGIC> EA will place order based on the original logic. This EA should work with take profit and stoploss. Default TP is 50pips and SL is 50pips. If the order was closed with stoploss, EA will stop in that day. Next day, EA will restart and trade again with lot size increasing. Lot size and volume multiple is changeable in the parameters. <Best Pair and TF> EURUSD and GBPUSD TF H1 <Default set> Already optimized TP 50pips SL 50pips Martingale Volume muti X 2 Max martingale 5
FREE
This is a professional Trend Sim indicator. The intelligent algorithm of the Trend Sim indicator accurately detects the trend, filters out market noise and generates input signals and exit levels. Functions with advanced statistical calculation rules improve the overall performance of this indicator. The indicator displays signals in a simple and accessible form in the form of arrows (when to buy and when to sell). Knowing the entry point of each of the currencies is very important for every f
The Nihilist 5.0 Indicator includes Forexalien and Nihilist Easy Trend trading strategies and systems. It is composed of an MTF Dashboard where you can analyze the different input possibilities of each strategy at a glance. It has an alert system with different types of configurable filters. You can also configure which TF you want to be notified on your Metatrader 4 platform and Mobile application The indicator has the option to view how could be a TP and SL by using ATR or fixed points, even w
The Forex indicator   TrendNavigator   is a technical indicator. TrendNavigator is a tool that allows traders employing this strategy to better understand what is happening in the market and predict in which direction the price will continue to move. The indicator's values are calculated based on price movements of the currency pair or any other financial asset. Within the scope of technical analysis, the TrendNavigator indicator is used by traders to forecast future price values or the overall
Cancer indicator is great for trend trading! An intelligent indicator algorithm with high probability shows the points of potential market reversal. If you are trading in a trend, then a trading strategy built on the basis of this indicator is perfect for you. The indicator filters out market noise, almost everything and all the necessary functions for working with a thread are built into one tool. It works on all currency pairs and on all timeframes, indicator setting - according to your desire
What Is Currency StrengtT Indicator? A currency strengthT indicator is a graphical tool that shows the strength of a currency. Common indicators usually show the strength of a currency in relation to another currency, however, with some calculations it is possible to find the absolute strength of each individual currency. Therefore, a currency strength matrix indicator (or meter) is a tool that tries to express the absolute strength of a currency, so that you can compare this strength with the
Calculated trend indicator, can be used with an optimal risk to profit ratio, shows successful signals. Uses two options for settings. Shows favorable moments for entering the market with arrows. The probability of a successful trend is not very bad! The indicator can be used both for pipsing on small periods, and for long-term trading. The indicator does not redraw and does not lag. It works on all currency pairs and on all timeframes.
このユニークな自動トレンドラインドローイングインジケーターはすべての時間枠で機能し、短期トレンドの反転だけでなく、市場でより強い資産を示す短期トレンドブレイクアウトを簡単に取引するのに役立ちます。 それはあなたが激しいスイングのために早く入ることをユニークに可能にします。 入力には次のものが含まれます。 -マックスキャンドルはトレンドラインを振り返る -線の種類と色 -外側のバンドまでの最大距離とバンド期間 -確認キャンドルまたは価格が閉じたときにピボットからトレンドラインを自動再描画するオプション低低または高高(ダブルボトム低および高サポート)および再描画の最大キャンドル数。 -改行の4つのオプション: 1)価格がラインを超えたときに削除する 2)削除しないでください 3)ろうそくがラインを超えて閉じたときに削除する 4)トレンドに逆らって閉じるときに削除する
The principle of this indicator is very simple: detecting the return point with Stochastic Oscillator, then monitoring the trend by using the Moving Average and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each timeframe. Example: If you install indicator on EURUSD, the indicator will detect the return point when the Stochastic Oscillator show "cross up" of the main line/signal line at the below position of
This indicator displays the wave structure of the market in the form several wave levels nested in each other. For each of these levels an automatic preliminary (draft) marking of waves in Elliott's style (123..., ABC... etc.) is created. This markup is completely automatic and absolutely univocal. The indicator is especially useful for beginner wave analysts, because among all the possible versions for wave marking, it allows you to immediately take the most adequate version as a ba
Dear Trader It is my pleasure to introduce to you my tool called the " Forex Sniper Indicator" . The major aim of this tool is to help serious traders and investors in all type of Financial Markets to catch price next movement right at the moment the price direction is about to change. This tool can be used to snipe the price direction in both down trend, uptrend and ranging markets. This tool can be used as the stand alone tool though it may be combined with other tools as well. My goal is to h
このプロダクトを購入した人は以下も購入しています
Cycle Maestro
Stefano Frisetti
1 (1)
CYCLEMAESTROとの取引 シグナルはシンプルで即時です。領域の背景が緑または赤に変わると、取引シグナルがアクティブであることを意味します。緑 = 買い、赤 = 売り。トレーダーはトレードを開き、次の指示に従うことができます。  注意:CYCLEMAESTRO は当ウェブサイトでのみ配布されており、他の配布元はありません。 DEMO バージョンは参照用であり、サポートされていません。最終バージョンはサポートされており、完璧に動作します。 CYCLEMAESTRO は、TRADING、BUY、SELL、STOP LOSS、ADDING シグナルの提供に役立つ、最初で唯一のサイクリック分析インジケーターです。 Serghei Istrati のロジックに基づいて作成され、Stefano Frisetti によってプログラムされました。 CYCLEMAESTRO は他のインジケーターとは異なり、サイクルで機能するものだけを解釈し、明確な取引シグナルを備えた解釈不可能なインジケーターを作成することが課題でした。これは、市場にあるさまざまなインジケーターとは異なり、すべてがユー
Dynamic Forex28 Navigator - 次世代の Forex 取引ツール。 現在 49% オフ。 Dynamic Forex28 Navigator は、長年人気のインジケーターを進化させたもので、3 つの機能を 1 つにまとめています。 Advanced Currency Strength28 インジケーター (レビュー 695 件)  + Advanced Currency IMPULSE with ALERT (レビュー 520 件) + CS28 コンボ シグナル (ボーナス)。 インジケーターの詳細 https://www.mql5.com/en/blogs/post/758844 次世代の Strength インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
PUMPING STATION – あなた専用の「オールインワン」戦略 PUMPING STATIONは、あなたのトレードをより楽しく、そして効果的に変えてくれる革新的なFXインジケーターです。ただの補助ツールではなく、強力なアルゴリズムを備えた本格的なトレーディングシステムで、より安定したトレードのスタートをサポートします。 この商品をご購入いただくと、以下の特典を無料でお付けします: 専用セットファイル:自動設定による最大パフォーマンスを実現。 ステップバイステップのビデオマニュアル:PUMPING STATION戦略の使い方を学べます。 Pumping Utility:PUMPING STATION専用の半自動トレードボットで、より快適かつシンプルな運用を可能にします。 ※ご購入後すぐにご連絡ください。追加リソースへのアクセスを提供いたします。 PUMPING STATIONの仕組み: トレンド管理:市場のトレンド方向を即座に判断。トレンドはあなたの最高の味方です。 エントリーサイン:チャート上の矢印で、取引のタイミングと方向を明確に示します。 明確な目標設定:インジケーターが自
An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
素晴らしいバックテスト 、驚異的な数字を伴う ライブ口座実績の証明 、そして あらゆる場所での統計結果 を備えたトレーディングインジケーターを購入したにもかかわらず、使用後に 口座を破綻させてしまった 経験は何度ありますか? シグナルを単独で信用すべきではありません。なぜそのシグナルが最初に現れたのかを知る必要があります。そして、それがRelicusRoad Proが最も得意とすることです! ユーザーマニュアル + 戦略 + トレーニングビデオ + VIPアクセス付きプライベートグループ + モバイル版利用可能 市場を見る新しい方法 RelicusRoadは、FX、先物、暗号通貨、株式、指数向けの「 世界で最も強力で最高の取引インジケーター 」であり、トレーダーが 口座を成長させる ために必要なすべての情報とツールを提供します。「 テクニカル分析 」と「 取引計画 」を提供し、「 初心者 」から「 上級者 」まで、「 すべてのトレーダーの成功 」を支援します。 これは、将来の市場を「 予測 」するのに十分な情報を提供する「 主要な取引インジケーター 」です。意味をなさない複数の異な
Unlimited use version is available at $180 sale. Sale will last for first few months. (actual price $210 after that)  Detailed blog post with screenshots here: https://www.mql5.com/en/blogs/post/762513 Features: This scanner will show: NRTR Basket Trading Trend direction Last NRTR Switch (breakout) - number of bars and if it was a high volume bar How many bars has the SR stayed steady for When price last entered an NRTR shadow When price bounced off the NRTR shadow back inside NRTR Explained:
NAM Order Blocks
NAM TECH GROUP, CORP.
3.67 (3)
MT4マルチタイムフレームオーダーブロック検出インジケーター。 特徴 -チャートコントロールパネルで完全にカスタマイズ可能で、完全な相互作用を提供します。 -必要な場所でコントロールパネルを表示および非表示にします。 -複数の時間枠でOBを検出します。 -表示するOBの数量を選択します。 -さまざまなOBユーザーインターフェイス。 -OBのさまざまなフィルター。 -OB近接アラート。 -ADRの高線と低線。 -通知サービス(画面アラート|プッシュ通知)。 概要 注文ブロックは、金融機関や銀行からの注文収集を示す市場行動です。著名な金融機関と中央銀行が外国為替市場を牽引しています。したがって、トレーダーは市場で何をしているのかを知る必要があります。市場が注文ブロックを構築するとき、それは投資決定のほとんどが行われる範囲のように動きます。 注文の構築が完了すると、市場は上向きと下向きの両方に向かって急激に動きます。注文ブロック取引戦略の重要な用語は、機関投資家が行っていることを含むことです。それらは主要な価格ドライバーであるため、機関投資家の取引を含むあらゆる戦
Hello, I am Ayman from Egypt, I want to present an interesting indicator to you. It depends on Ichimoku Kinko Hyo, but there is a secret that i use in it. By using my indicator, you will be able to know a lot of important information in the market such as: Live Signal : https://www.mql5.com/en/signals/821024 Features You can avoid entry during market turbulence You can enter orders on the general trend only You will know if the trend is strong or weak If you entered an any orders by the help of
ACB Breakout Arrows
KEENBASE SOFTWARE SOLUTIONS
4.15 (34)
ACB Breakout Arrows インジケーターは、特別なブレイクアウトパターンを検出することで、市場における重要なエントリーシグナルを提供します。このインジケーターは、特定の方向に勢いが定まりつつある状況を常にスキャンし、大きな値動きの直前に正確なシグナルを表示します。  複数通貨ペア・複数時間軸スキャナーはこちら - ACB Breakout Arrows MT4 用スキャナー 主な特徴 ストップロスとテイクプロフィットの水準を自動で表示します。 すべての時間足に対応したMTFスキャナーダッシュボード付き。 デイトレーダー、スイングトレーダー、スキャルパーに適しています。 シグナルの精度を高めるために最適化されたアルゴリズムを採用。 損益分岐点やスキャルピングの目標として利用できる特別な「クイックプロフィットライン」を搭載。 勝敗、成功率、平均利益などのパフォーマンス分析機能を搭載。 リペイントなし(シグナルは表示後に変更されません)。 トレードの確認 -  ACB Trade Filter インジケーター を併用し、低確率の取引を除外しましょう。 強い買い: 上向き矢印
PZ Day Trading
PZ TRADING SLU
3.67 (3)
このインディケータは、価格アクション分析とドンチャンチャネルのみを使用して、ジグザグ方式で価格の反転を検出します。再描画やバックペインティングを一切行わずに、短期取引向けに特別に設計されています。それは彼らの操作のタイミングを増やすことを目指している賢明なトレーダーにとって素晴らしいツールです。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど簡単に取引できます すべての時間枠で価値を提供します 自己分析統計を実装します 電子メール/音声/視覚アラートを実装します 可変長のブレイクアウトと混雑ゾーンに基づいて、インディケータは価格アクションのみを使用して取引を選択し、市場が非常に高速に行っていることに反応します。 過去のシグナルの潜在的な利益が表示されます この指標は、独自の品質とパフォーマンスを分析します 負けブレイクアウトは強調表示され、説明されます インジケータは、非バックペインティングおよび非再ペイントです この指標は、日中のトレーダーが単一の価格反転を見逃さないようにするのに役立ちます。ただし、すべての
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
次世代の自動化された需要と供給のゾーン。どのチャートでも機能する新しい革新的なアルゴリズム。すべてのゾーンは、市場の価格行動に従って動的に作成されています。 2種類のアラート --> 1) 価格がゾーンに達したとき 2) 新しいゾーンが形成されたとき もう 1 つの役に立たない指標はありません。実績のある完全な取引戦略を手に入れることができます。     新機能:     価格が需給ゾーンに達したときにアラートを出す     新しい需給ゾーンが作成されたときにアラートを発します     プッシュ通知アラート     ピップ単位のゾーン幅ラベル     MTF のもう 1 つのタイムフレーム。したがって、現在より 2 時間足高いのではなく、現在より 3 時間足し上に見えるようになります。     アラート/ゾーン/MTF 機能を有効/無効にするボタン あなたが得る利点:     取引から感情を取り除きます。     取引エントリをオブジェクト化します。     確率の高いセットアップで利益を上げましょう。     描画ゾーンから時間を節約します。
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを容易にする
KT Trend Trading Suite は、トレンドフォロー戦略と複数のブレイクアウトポイントを組み合わせた多機能インジケーターです。 新たなトレンドが形成されると、このインジケーターは複数のエントリーチャンスを提供し、トレンドにうまく乗ることが可能になります。あまり重要でないエントリーポイントを避けるために、プルバックの閾値が使用されます。 MT5 バージョンはこちらで入手可能です  https://www.mql5.com/en/market/product/46270 機能 市場のさまざまなダイナミクスを1つの方程式にまとめ、トレンドの全体像を明確に描写します。 エントリーシグナルに基づいて、局所的な高値と安値を視覚的に示す長方形を描画します。 シグナルの精度を自動的に測定し、パフォーマンス指標をシンプルに表示します。 複数時間足対応のダッシュボードを搭載し、すべての時間軸をスキャンして、それぞれのトレンド方向を表示します。 入力パラメータ History Bars:   過去のシグナル分析に使用する履歴バーの数。  Signals Period:   エントリ
スイングトレーディング は、トレンドの方向のスイングと可能な反転スイングを検出するように設計された最初のインジケーターです。トレーディングの文献で広く説明されているベースラインスイングトレーディングアプローチを使用します。インディケータは、いくつかの価格と時間のベクトルを調査して、全体的なトレンドの方向を追跡し、市場が売られ過ぎまたは買われ過ぎて修正の準備ができている状況を検出します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] むち打ちを起こさずに市場スイングの利益 インジケーターは常にトレンドの方向を表示します 色付きの価格帯は機会のベースラインを表します 色付きのダッシュは、可能な反転スイングを表します この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します カスタマイズ可能なトレンドおよびスイング期間 電子メール/サウンド/プッシュアラートを実装します インジケータは再描画またはバックペインティングではありません Swing Tradingとは Swing Tradingは
IQ Gold Gann Levels a non-repainting, precision tool designed exclusively for XAUUSD/Gold intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst, whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient mathematics which proved to be extremely accurate. Download
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
取引レベルインジケーターは、エントリーポイント、ポジションの保持、トレンドの方向を決定するために設計された取引システムです。 1 つの複合体で動作する複数のメカニズム、トレンド方向の波動分析、シグナル構築時のレベル分析が含まれており、考えられる TP および SL ターゲットを示します。 インジケーターの機能 シグナル矢印は現在のローソク足に表示されますが、色は変更されません。 特別なアルゴリズムを使用して、価格が跳ね返るレベルを検索します。 トレンドに合わせた働きをします。 このシステムは汎用的であり、さまざまな取引商品に適用できます。 矢印アラートにはいくつかの種類があります。 信号矢印の入力パラメータは自動モードで設定され、動作します。 時間枠に基づいて「トレンド波期間」パラメータを変更します 「ターゲットレベル SL TP」パラメータは主要通貨ペアに対して定義されており、他の取引商品で使用する場合は 10 以上の増加が可能です。 インジケーターの仕組み トレンドを判断するには、インジケーターに波線があり、価格を下回っている場合はトレンドが弱気であり、価格を下回っている場
Oreshnik MHD Welcome back to our page! If you are looking for a tool that accurately predicts movements, Oreshnik MHD is the ally you need, the solution for accurate and reliable trend reversal signals. It is an advanced and accurate custom forex indicator - an effective trading tool for MT4, designed to give you an edge in the fast-paced world of financial markets. The indicator is compatible with all currency pairs, making it adaptable to various markets and works on any timeframe. The i
現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボルの強弱
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
Enigmera
Ivan Stefanov
5 (8)
ENIGMERA: 市場の中心 重要:MQL5.comのデモはStrategy Testerで実行されており、Enigmeraの機能を完全には反映していない場合があります。詳細については、説明、スクリーンショット、ビデオをご確認ください。質問があれば、遠慮なくメッセージを送ってください! インジケーターのコードは完全に書き直されました。バージョン3.0は新機能を追加し、インジケーターの開始以来蓄積されたバグを修正しました。 紹介 このインジケーターとトレーディングシステムは、金融市場への注目すべきアプローチです。ENIGMERAはフラクタルサイクルを使用して、サポートとレジスタンスのレベルを正確に計算します。真の蓄積フェーズを示し、方向と目標を提供します。トレンドでも修正でも機能するシステムです。 動作方法 インジケーターのほとんどの機能は、チャートの左側にあるボタンで制御され、市場の状況に迅速に対応できるようになっています。 ボタン ON/OFF – インジケーター全体を表示または非表示にします。 Channel – サポートチャネルを有効にし、許容範囲の偏差を示します。 Dev
「 Dynamic Scalper System 」インジケーターは、トレンド波の中でスキャルピング取引を行う手法のために設計されています。 主要通貨ペアと金でテスト済みで、他の取引商品との互換性があります。 トレンドに沿った短期的なポジションオープンのシグナルを提供し、追加の価格変動サポートも提供します。 インジケーターの原理 大きな矢印はトレンドの方向を決定します。 トレンド波の中では、小さな矢印の形でスキャルピングシグナルを生成するアルゴリズムが機能します。 赤い矢印は強気方向、青い矢印は弱気方向です。 トレンドの方向には敏感な価格変動ラインが描かれ、小さな矢印のシグナルと連動します。 シグナルは次のように機能します。適切なタイミングでラインが現れるとエントリーシグナルが形成され、ラインが開いている間はポジションが保持され、完了すると取引が終了します。 推奨される動作時間枠はM1~H4です。 矢印は現在のローソク足に形成され、次のローソク足が開いている場合は、前のローソク足の矢印は再描画されません。 入力パラメータ Trend Wave Period - トレンド方向
Cycle Sniper
Elmira Memish
4.39 (36)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before pu
現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvanced
現在20%OFF! このダッシュボードは、複数のシンボルと最大9つのタイムフレームで動作するソフトウェアの非常に強力な部分です。 このソフトは、弊社のメインインジケーター(ベストレビュー:Advanced Supply Demand)をベースにしています。    Advanced Supply Demand ダッシュボードは、素晴らしい概要を提供します。それは示しています。  ゾーン強度評価を含むフィルタリングされた需給値。 ゾーン内/ゾーンへのPips距離。 ネストされたゾーンがハイライトされます。 選択されたシンボルの4種類のアラートを全ての(9)時間枠で提供します。 それはあなたの個人的なニーズに合わせて高度に設定可能です。 あなたの利益! すべてのトレーダーにとって最も重要な質問です。 市場に参入するのに最適なレベルはどこか? 成功のチャンスとリスク/リターンを得るために、強力な供給/需要ゾーン内またはその近くで取引を開始します。 損切りの最適な位置はどこですか? 最も安全なのは、強力な供給/需要ゾーンの下/上にストップを置くことです。 最適な利益
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG 主な機能: レンダリングなしで正確な入力信号! シグナルが表示された場合、それは関連性を維持します。これは、シグナルを提供してからそれを変更する可能性があり、入金時の資金の損失につながる可能性があるリドローインジケーターとの重要な違いです。より高い確率と精度で市場に参入できるようになりました。矢印が表示された後、ターゲットに達する (利益確定) か反転シグナルが表示されるまで、ローソク足を色付けする機能もあります。 STOP LOSS / TAKE PROFITゾーンの表示 エントリーポイントを検索する際の視覚的な明瞭さを改善するために、市場に参入するための最適なポイントが検索される買い/売りゾーンを最初に表示するモジュールが作成されました。ストップロスレベルを操作するための追加のインテリジェントロジックは、時間の経過とともにそのサイズを縮小するのに役立ち、その結果、取引を開始するとき(move sl)の初期リスクを軽減しま
収益性の高い取引機会を簡単に特定するのに役立つ強力な外国為替取引インジケーターをお探しですか?ビースト スーパー シグナル以外に探す必要はありません。 この使いやすいトレンドベースのインジケーターは、市場の状況を継続的に監視し、新しいトレンドを検索したり、既存のトレンドに飛びついたりします。ビースト スーパー シグナルは、すべての内部戦略が一致し、互いに 100% 合流したときに売買シグナルを発するため、追加の確認は不要です。シグナル矢印アラートを受け取ったら、単に売買します。 購入後、プライベート VIP グループに追加されるようにメッセージを送ってください! (完全な製品購入のみ)。 購入後、最新の最適化されたセット ファイルについてメッセージを送ってください。 MT5バージョンは こちらから入手できます。 Beast Super Signal EA は こちらから 入手できます。 コメント セクションをチェックして、最新の結果を確認してください。 ビースト スーパー シグナルは、1:1、1:2、または 1:3 のリスクと報酬の比率に基づいて、エントリー価格、ストッ
トレンドオシレーター:スムーズで信頼性の高いトレンド識別ツール トレンドオシレーターは、トレーダーがトレンドの方向と反転ポイントを正確に特定するのをサポートするために設計された、MT4向けの高度なインジケーターです。直感的なビジュアルで、相場が上昇トレンドにあるのか下降トレンドにあるのかを明確に示し、分析を簡素化し、チャートの視認性を向上させます。幅広い市場と時間枠に対応しており、さまざまな取引ニーズに柔軟に対応します。 トレンドオシレーターの主な特徴と利点 トレンドの簡素化されたビジュアライゼーション : トレンドオシレーターは、色が変わるラインでトレンドの動きを表現します。青色は上昇トレンド、黄色は下降トレンドを示し、即座にトレンド方向が分かります。 信頼性の高い反転シグナル : 高度なアルゴリズムを使用して、インジケーターは反転ポイントを示すカラフルな矢印を生成します。緑色の矢印は買いシグナル、赤色の矢印は売りシグナルを示し、トレーダーがエントリーやエグジットを評価するための重要なゾーンを特定するのに役立ちます。 あらゆる市場と時間枠に対応可能 : トレンドオシレーターは、さまざ
反転ゾーン / ピークボリューム / 主要プレーヤーのアクティブゾーン =       TS TPSプロシステム 説明書 RUS       /       説明書     英語     /       Version MT5 このインジケーターを購入したすべての購入者は、さらに以下を無料で受け取ります: RFI SIGNALS サービスからの取引シグナルへの 6 か月間のアクセス - TPSproSYSTEM アルゴリズムに従った既製のエントリ ポイント。 定期的に更新されるトレーニング資料 - 戦略に没頭し、プロフェッショナル レベルを高めます。 平日は 24 時間 365 日サポート、非公開のトレーダー チャットへのアクセス - コミュニケーション、サポート、市場状況の分析。 著者の設定ファイル - 余分な労力をかけずに最大の結果を達成するための自動インジケーター設定。 主な機能: 売り手と買い手のアクティブなゾーンを表示します。 このインジケーターは、購入と販売の正しい最初のインパルス レベル/ゾーンをすべて表示します。これらのレベル/ゾーンがアクティブになると、エントリ
作者のその他のプロダクト
GRID MA TRADING Trading Strategy Overview Moving Average (MA) Based Decisions : The EA uses a Moving Average (MA) as a key indicator for its trading decisions. The type (Simple, Exponential, Smooth, Linear Weighted), period, and shift of the MA are configurable. It decides whether to buy or sell based on the position of the price relative to the MA. For example, it may stop buying if the price is below the MA or stop selling if the price is above the MA. Grid Trading System : The EA appears to i
CapitalSMC
Mr Nisit Noijeam
5 (3)
The "SMC Trading Strategy" or "Smart Money Concept" is a trading strategy that focuses on understanding and following the movements of "large capital" or "Smart Money", which usually refers to institutional investors or major players who can influence the stock or asset markets. This strategy relies on technical and behavioral market analysis to predict market or stock price directions by observing the actions of Smart Money. These investors are believed to have more information, resources, and
FREE
EnJoy  trend line It is a basic tool in technical analysis which is used to track and predict the direction of price movements. It is created by connecting the lowest or highest points of prices on the chart. To create a straight line that helps in interpreting market direction. For example: Uptrend Line: Connects multiple low points on the chart. It indicates a continuous increase in prices. Downtrend Line: Connects multiple highs. It indicates a continuous decrease in prices. เส้นเทรนด์ไลน์
การดำเนินงานพื้นฐาน : EA ทำงานโดยใช้หลักการของการเทรดแบบกริด ซึ่งหมายถึงการวางคำสั่งซื้อและขายเป็นระยะๆ (กำหนดเป็นเปอร์เซ็นต์ของราคา) ภายในโซนที่กำหนดไว้ พารามิเตอร์ป้อนข้อมูล : EA ใช้พารามิเตอร์หลายอย่าง เช่น ขนาดกริด, กำไรที่คาดหวัง, การหยุดขาดทุน (ทั้งหมดเป็นเปอร์เซ็นต์), โซนสำหรับการซื้อและขาย, ขนาดล็อต, และจำนวนคำสั่งสูงสุดที่อนุญาต พารามิเตอร์เหล่านี้มีความสำคัญในการกำหนดวิธีการทำงานของ EA การเริ่มต้น (OnInit) : เมื่อ EA เริ่มทำงาน, มันจะทำการเริ่มต้นโดยสร้างป้ายบนกราฟ (ชื่อ "MTRADER_Labe
Expert Advisor (EA),  MA Following  commonly known as a trading bot. It implements a grid trading strategy with the following characteristics: Moving Average and Standard Deviation : The EA uses a Moving Average (MA) as the core of its trading strategy, combined with Standard Deviation (SD) for trade entry and exit decisions. There are four types of MAs available: Simple, Exponential, Smoothed, and Linear Weighted. Users can select the MA type and set its period, as well as the period and facto
This EA, named "MTRADER," is designed for the MT4 (MetaTrader 4) trading platform. It operates based on a grid trading strategy and includes functionality for both buy and sell orders. Here's an overview of its key features and functionalities: Trading Zones: The EA operates within specified price zones for buying and selling. BuyZoneStart and BuyZoneEnd define the range within which the EA will consider placing buy orders, while SellZoneStart and SellZoneEnd define the range for sell orders. Or
A Grid EA (Grid Expert Advisor) is an automated trading system used in the financial markets that employs a grid trading strategy. Grid trading involves opening buy and sell orders at predetermined price levels, with a specified price interval, known as the price grid. This trading strategy is similar to placing Buy Limit and Sell Limit orders at pre-defined price and time intervals. The EA operates automatically based on predefined rules and typically includes the following features: Price Gr
MA trend following 1sd signal  The EA appears to use a combination of moving averages and standard deviation to make trading decisions, with the option to increase lot sizes after consecutive losses, potentially aiming for a martingale-like strategy. It's important to note that while EAs can automate trading, they come with risks, especially when using strategies like lot size increase on loss. Users should thoroughly backtest and understand the EA's strategy and risks before using it in live tr
Expert Advisor (EA) for MetaTrader 4 (MT4) platform, named MTRADER. Its primary strategy appears to be a grid trading strategy based on moving averages and average true range (ATR) volatility. Here's a breakdown of its key components and functionalities: Initialization Parameters : It defines various input parameters such as Moving Average Type (Simple, Exponential, Smoothed, or Linear Weighted), Moving Average Period, ATR Period, ATR Factor, Initial Lot Size, etc. These parameters can be adjust
Pivot Points และระดับ (Support) และ(Resistance) บนแผนภูมิการเทรดใน MetaTrader 4 สำหรับตลาด Forex : คำนวณ Pivot Points : สคริปต์คำนวณจุด Pivot โดยใช้ข้อมูลราคาประวัติศาสตร์ เช่น ราคาเปิด, ราคาสูงสุด, ราคาต่ำสุด, และราคาปิด จากช่วงเวลาที่กำหนด (เช่น วัน, ชั่วโมง, ฯลฯ) จุด Pivot และระดับต่างๆ เช่น R1, R2, R3 (ระดับการต้านทาน) และ S1, S2, S3 (ระดับการสนับสนุน) ถูกคำนวณออกมา แสดงบนแผนภูมิ : หลังจากคำนวณจุด Pivot และระดับต่างๆ, สคริปต์จะแสดงเส้นเหล่านี้บนแผนภูมิ MT4 เพื่อช่วยให้นักเทรดสามารถเห็นจุดที่
A grid trading strategy is a method used in financial markets, particularly in forex trading, that involves placing buy and sell orders at regular intervals above and below a set price level. This creates a grid-like pattern of orders on the chart, hence the name "grid trading." Here’s a detailed explanation: Grid Trading Strategy Basic Concept : Grid trading is designed to capitalize on market volatility. The strategy works best in ranging or sideways markets, where prices fluctuate within a c
OIL Product setting  Define maximum allowed slippage as an input parameter (กำหนดค่า Slippage สูงสุดที่ยอมรับได้) ค่าที่ตั้งไว้: 50 อธิบาย: กำหนดความแตกต่างสูงสุดระหว่างราคาที่คาดว่าจะได้ซื้อขายกับราคาจริงที่เกิดขึ้นเพื่อป้องกันการซื้อขายที่เกิดขึ้นในราคาที่ไม่ต้องการ Enable buy orders (เปิดให้รับคำสั่งซื้อ) ค่าที่ตั้งไว้: true อธิบาย: กำหนดว่าจะเปิดใช้งานการซื้อ (Buy Orders) หรือไม่ ถ้า true แสดงว่าเปิดการซื้อขาย Initial price for red line (ราคาเริ่มต้นสำหรับเส้นแดง) ค่าที่ตั้งไว้: 85.0 อธิบ
กลยุทธ์ HFT Hedging แบบปรับลอตเพิ่ม ตั้งต้นด้วยสถานะสองฝั่ง (Long และ Short) ในการ Hedging คุณจะเปิดสถานะทั้งฝั่ง Long และ Short พร้อมกันในตราสารเดียวกันเพื่อป้องกันความเสี่ยงจากการเคลื่อนไหวในทิศทางใดทิศทางหนึ่ง คุณจะเริ่มเปิดสถานะโดยใช้ลอตต่ำที่สุด เพื่อทดสอบทิศทางการเคลื่อนไหวของตลาด ใช้เงื่อนไขในการเปิดสถานะเพิ่มเติม (ปรับลอตเพิ่ม) เมื่อสถานะหนึ่งขยับเข้าใกล้เป้าหมายกำไร (Take Profit หรือ TP) หรือเริ่มเข้าเขตทำกำไร (เช่น เมื่อ ATR หรือ ค่า Technical Indicator อื่นๆ บอกถึงความผันผวนที่เพิ่มขึ
HFT  ZONE MOMENTUM RECOVERY EA_Name ค่า: HFT MTRADER ใช้สำหรับระบุชื่อของ EA เพื่อให้ง่ายต่อการจัดการหรือตรวจสอบในประวัติการเทรด (History) Lot_fix ค่า: 0.02 ใช้กำหนดขนาดของล็อตคงที่ (Fixed Lot Size) ที่ EA จะเปิดในแต่ละคำสั่งเทรด โดยไม่ขึ้นอยู่กับเงื่อนไขอื่น ๆ Lots_X ค่า: 1.5 ตัวคูณล็อต (Lot Multiplier) ซึ่งมักใช้ในการเพิ่มขนาดล็อตในลักษณะการ Martingale หรือ Hedging โดยเมื่อขาดทุนหรือเปิดคำสั่งถัดไป ระบบจะเพิ่มล็อตตามค่าที่กำหนดไว้ High_Low_end_candle ค่า: 10 จำนวนแท่งเทียนที่ใช้ในการคำนวณระ
Volume Profile เป็นเครื่องมือที่ใช้สำหรับการวิเคราะห์ระดับการซื้อขายของตลาดในแต่ละระยะเวลาโดยใช้ปริมาณการซื้อขาย (volume) ซึ่งช่วยให้เราเข้าใจว่ามีการซื้อขายเกิดขึ้นมากที่สุดที่ราคาใด รวมทั้งช่วยในการหาจุดที่มีความนิยมในการซื้อขาย (Point of Control: POC) และระดับการซื้อขายอื่น ๆ ที่สำคัญ เรียกว่า Value Area. การใช้งาน Volume Profile ในการวิเคราะห์ตลาดมักจะมีขั้นตอนดังนี้: กำหนดระยะเวลาที่ต้องการวิเคราะห์ : เราต้องกำหนดระยะเวลาที่เราสนใจในการวิเคราะห์ Volume Profile เช่น ชั่วโมง, วัน, หรือสัปดาห์
The indicator plots up/down buffer arrows in the chart window two of the following indicator conditions are met. Moving Average ; Moving Average Convergence/Divergence (MACD ); Oscillator of Moving Averages (OsMA ); Stochastic Oscillator ; Relative Strength Index (RSI) ; Commodity Channel Index (CCI) ; Relative Vigor Index (RVI ); Average Directional Index (ADX) ; Triple Exponential Average ; Bollinger Bands ; ตัวบ่งชี้จะพล็อตลูกศรขึ้น/ลงในหน้าต่างแผนภูมิเมื่อตรงตามเงื่อนไขของตัวบ่งชี้สองตัวต่อ
"Support and Resistance" is a fundamental concept in technical analysis for trading stocks, currencies, or other assets in financial markets. Here's how to use it: Identifying Support Support is a price level where buying is strong. When the price drops to this level, there tends to be significant buying activity, preventing the price from falling further. Identifing Support: Look for the lowest points in a given period and find levels where the price has bounced back up multiple times. Usage:
EnJoy  trend line It is a basic tool in technical analysis which is used to track and predict the direction of price movements. It is created by connecting the lowest or highest points of prices on the chart. To create a straight line that helps in interpreting market direction. For example: Uptrend Line: Connects multiple low points on the chart. It indicates a continuous increase in prices. Downtrend Line: Connects multiple highs. It indicates a continuous decrease in prices. เส้นเทรนด์ไลน์ เป
Code Components and Functionality: Basic Information #property : Used to define the EA properties like copyright, link, version, and description. input : Parameters that users can customize in the EA, such as enabling/disabling buy/sell orders, price levels, take profit points, lot sizes, etc. Main Functions OnInit() : Executes when the EA is initialized. It creates a label on the chart and draws red lines at specified price levels (Red Line). OnDeinit(const int reason) : Executes when the EA is
HFT  ZONE MOMENTUM RECOVERY EA_Name ค่า: HFT MTRADER ใช้สำหรับระบุชื่อของ EA เพื่อให้ง่ายต่อการจัดการหรือตรวจสอบในประวัติการเทรด (History) Lot_fix ค่า: 0.02 ใช้กำหนดขนาดของล็อตคงที่ (Fixed Lot Size) ที่ EA จะเปิดในแต่ละคำสั่งเทรด โดยไม่ขึ้นอยู่กับเงื่อนไขอื่น ๆ Lots_X ค่า: 1.5 ตัวคูณล็อต (Lot Multiplier) ซึ่งมักใช้ในการเพิ่มขนาดล็อตในลักษณะการ Martingale หรือ Hedging โดยเมื่อขาดทุนหรือเปิดคำสั่งถัดไป ระบบจะเพิ่มล็อตตามค่าที่กำหนดไว้ High_Low_end_candle ค่า: 10 จำนวนแท่งเทียนที่ใช้ในการคำนวณระ
フィルタ:
レビューなし
レビューに返信