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 移動平均インジケーターを使用する場合は、
FREE
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
このプロダクトを購入した人は以下も購入しています
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
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 インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
現在20%OFF! このダッシュボードは、複数のシンボルと最大9つのタイムフレームで動作するソフトウェアの非常に強力な部分です。 このソフトは、弊社のメインインジケーター(ベストレビュー:Advanced Supply Demand)をベースにしています。    Advanced Supply Demand ダッシュボードは、素晴らしい概要を提供します。それは示しています。  ゾーン強度評価を含むフィルタリングされた需給値。 ゾーン内/ゾーンへのPips距離。 ネストされたゾーンがハイライトされます。 選択されたシンボルの4種類のアラートを全ての(9)時間枠で提供します。 それはあなたの個人的なニーズに合わせて高度に設定可能です。 あなたの利益! すべてのトレーダーにとって最も重要な質問です。 市場に参入するのに最適なレベルはどこか? 成功のチャンスとリスク/リターンを得るために、強力な供給/需要ゾーン内またはその近くで取引を開始します。 損切りの最適な位置はどこですか? 最も安全なのは、強力な供給/需要ゾーンの下/上にストップを置くことです。 最適な利益
VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG 主な機能: レンダリングなしで正確な入力信号! シグナルが表示された場合、それは関連性を維持します。これは、シグナルを提供してからそれを変更する可能性があり、入金時の資金の損失につながる可能性があるリドローインジケーターとの重要な違いです。より高い確率と精度で市場に参入できるようになりました。矢印が表示された後、ターゲットに達する (利益確定) か反転シグナルが表示されるまで、ローソク足を色付けする機能もあります。 STOP LOSS / TAKE PROFITゾーンの表示 エントリーポイントを検索する際の視覚的な明瞭さを改善するために、市場に参入するための最適なポイントが検索される買い/売りゾーンを最初に表示するモジュールが作成されました。ストップロスレベルを操作するための追加のインテリジェントロジックは、時間の経過とともにそのサイズを縮小するのに役立ち、その結果、取引を開始するとき(move sl)の初期リスクを軽減しま
素晴らしいバックテスト 、驚異的な数字を伴う ライブ口座実績の証明 、そして あらゆる場所での統計結果 を備えたトレーディングインジケーターを購入したにもかかわらず、使用後に 口座を破綻させてしまった 経験は何度ありますか? シグナルを単独で信用すべきではありません。なぜそのシグナルが最初に現れたのかを知る必要があります。そして、それがRelicusRoad Proが最も得意とすることです! ユーザーマニュアル + 戦略 + トレーニングビデオ + VIPアクセス付きプライベートグループ + モバイル版利用可能 市場を見る新しい方法 RelicusRoadは、FX、先物、暗号通貨、株式、指数向けの「 世界で最も強力で最高の取引インジケーター 」であり、トレーダーが 口座を成長させる ために必要なすべての情報とツールを提供します。「 テクニカル分析 」と「 取引計画 」を提供し、「 初心者 」から「 上級者 」まで、「 すべてのトレーダーの成功 」を支援します。 これは、将来の市場を「 予測 」するのに十分な情報を提供する「 主要な取引インジケーター 」です。意味をなさない複数の異な
Cycle Maestro
Stefano Frisetti
1 (1)
CYCLEMAESTROとの取引 シグナルはシンプルで即時です。領域の背景が緑または赤に変わると、取引シグナルがアクティブであることを意味します。緑 = 買い、赤 = 売り。トレーダーはトレードを開き、次の指示に従うことができます。  注意:CYCLEMAESTRO は当ウェブサイトでのみ配布されており、他の配布元はありません。 DEMO バージョンは参照用であり、サポートされていません。最終バージョンはサポートされており、完璧に動作します。 CYCLEMAESTRO は、TRADING、BUY、SELL、STOP LOSS、ADDING シグナルの提供に役立つ、最初で唯一のサイクリック分析インジケーターです。 Serghei Istrati のロジックに基づいて作成され、Stefano Frisetti によってプログラムされました。 CYCLEMAESTRO は他のインジケーターとは異なり、サイクルで機能するものだけを解釈し、明確な取引シグナルを備えた解釈不可能なインジケーターを作成することが課題でした。これは、市場にあるさまざまなインジケーターとは異なり、すべてがユー
Trading System Double Trend - 複数のインジケーターで構成された独立したトレーディングシステムです。全体的なトレンドの方向を判断し、価格変動の方向を示すシグナルを発します。 スキャルピング、日中取引、週次取引に使用できます。 機能 あらゆる時間枠と取引商品(FX、仮想通貨、貴金属、株式、指数)で動作します。 チャートをロードすることなく、情報を視覚的に簡単に確認できます。 インジケーターは再描画されず、シグナルも完了しません。 ローソク足が閉じた時のみ機能します。 シグナルには複数の種類のアラートがあります。 視覚的に理解しやすく、チャートに貼り付けて、シグナルのシンプルな推奨事項に従うだけです。 入力パラメータは、システム内のトレンドごとに設定されています。 General trend - 全体的なトレンドを判断します。 Signal trend - エントリーとエグジットのシグナルを発します。 Play sound / Display pop-up message / Send push notification / Send email -
これはMT4のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。 あら
KT Asian Breakout インジケーターは、アジア市場の重要な時間帯を分析し、価格のブレイクアウト方向に基づいた双方向の売買シグナルを生成します。価格がセッション高値を超えると買いシグナルが発生し、セッション安値を下回ると売りシグナルが発生します。 注意事項 セッションボックスが縦に広すぎる場合、新たな取引は避けるべきです。すでにセッション内で価格の動きが完了している可能性が高いためです。 ブレイクアウトのローソク足が大きすぎる場合、価格は一時的に反転した後に、シグナルの方向へ進むことがよくあります。 機能 買い/売りシグナルには、ストップロスと利益目標が含まれています。 KT Asian Breakout インジケーターは、第一、第二、第三の利益目標を成功基準として継続的にパフォーマンスをチェックします。 勝敗シグナル数、成功率、1シグナルあたりの平均ピップスなど、3つの主要なパフォーマンス指標を表示します。 ブレイクアウトのローソク足が大きすぎる場合、チャート上に警告メッセージを表示します。 推奨設定 時間足: 15分。 通貨ペア: すべての JPY ペア。 入力
Trend Arrow Super The indicator not repaint or change its data. A professional, yet very easy to use Forex system. The indicator gives accurate BUY\SELL signals. Trend Arrow Super is very easy to use, you just need to attach it to the chart and follow simple trading recommendations. Buy signal: Arrow + Histogram in green color, enter immediately on the market to buy. Sell signal: Arrow + Histogram of red color, enter immediately on the market to sell.
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
Special offer! https://www.mql5.com/ru/users/bossik2810 Quantum Entry is a powerful price action trading system built on one of the most popular and widely known strategies among traders: the Breakout Strategy! This indicator produces crystal clear buy and sell signals based on breakouts of key support and resistance zones. Unlike typical breakout indicators, it uses advanced calculations to accurately confirm the breakout! When a breakout occurs, you receive instant alerts. No lag and no repai
Enigmera
Ivan Stefanov
5 (8)
ENIGMERA: 市場の中心 重要:MQL5.comのデモはStrategy Testerで実行されており、Enigmeraの機能を完全には反映していない場合があります。詳細については、説明、スクリーンショット、ビデオをご確認ください。質問があれば、遠慮なくメッセージを送ってください! インジケーターのコードは完全に書き直されました。バージョン3.0は新機能を追加し、インジケーターの開始以来蓄積されたバグを修正しました。 紹介 このインジケーターとトレーディングシステムは、金融市場への注目すべきアプローチです。ENIGMERAはフラクタルサイクルを使用して、サポートとレジスタンスのレベルを正確に計算します。真の蓄積フェーズを示し、方向と目標を提供します。トレンドでも修正でも機能するシステムです。 動作方法 インジケーターのほとんどの機能は、チャートの左側にあるボタンで制御され、市場の状況に迅速に対応できるようになっています。 ボタン ON/OFF – インジケーター全体を表示または非表示にします。 Channel – サポートチャネルを有効にし、許容範囲の偏差を示します。 Dev
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、M15、M30、H1 のタイム
PUMPING STATION – あなた専用の「オールインワン」戦略 PUMPING STATIONは、あなたのトレードをより楽しく、そして効果的に変えてくれる革新的なFXインジケーターです。ただの補助ツールではなく、強力なアルゴリズムを備えた本格的なトレーディングシステムで、より安定したトレードのスタートをサポートします。 この商品をご購入いただくと、以下の特典を無料でお付けします: 専用セットファイル:自動設定による最大パフォーマンスを実現。 ステップバイステップのビデオマニュアル:PUMPING STATION戦略の使い方を学べます。 Pumping Utility:PUMPING STATION専用の半自動トレードボットで、より快適かつシンプルな運用を可能にします。 ※ご購入後すぐにご連絡ください。追加リソースへのアクセスを提供いたします。 PUMPING STATIONの仕組み: トレンド管理:市場のトレンド方向を即座に判断。トレンドはあなたの最高の味方です。 エントリーサイン:チャート上の矢印で、取引のタイミングと方向を明確に示します。 明確な目標設定:インジケーターが自
Volatility Scanner -  このインジケーターは市場の状況を分析し、ヒストグラムでボラティリティが上昇しているゾーンを表示します。 このインジケーターを使用すると、ポジションのエントリーとホールド、トレンド方向への取引、あるいは取引をせずに時間を置くタイミングを判断できます。 入力パラメータにより、希望する取引商品や時間枠に合わせてインジケーターを個別に設定できます。 分足から日足まで、あらゆる時間枠に対応しています。 アラートの種類も複数あります。 すべてのインジケーターシグナルは再描画されず、遅延もなく、ローソク足の終値に表示されます。 スキャルピングからデイトレードまで、あらゆる取引システムに対応します。 インジケーターの仕組み このインジケーターには移動平均線が含まれており、これに基づいてさらに計算を行います。「 Moving Average Period 」パラメータは、トレンド方向の期間を変更することで調整できます。 青い縦線は、弱気相場におけるボラティリティの上昇を示します。 赤い縦線は、強気相場におけるボラティリティの上昇を示します。 「 Candl
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを容易にする
回帰取引を意味する専門的かつ定量的なアプローチを実装する独自の指標。これは、価格が予測可能かつ測定可能な方法で迂回して平均に戻るという事実を利用しており、非定量的な取引戦略を大幅に上回る明確な出入りルールを可能にします。 [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] 明確な取引シグナル 驚くほど簡単に取引できます カスタマイズ可能な色とサイズ パフォーマンス統計を実装します ほとんどの取引戦略を上回ります 適切なSLおよびTPレベルを表示します 電子メール/音声/視覚アラートを実装します 使い方 インディケータは、より高い時間枠からの完全にカスタマイズ可能な移動平均の周りの標準偏差を測定し、トレンドフォローアプローチを使用して正確に取引を見つけます。取引は、現在のチャートの価格アクションに飛び込むことによって見つけられ、価格が選択したより高い時間枠から計算された平均価格帯に戻ったときに閉じられます。それがコード化される方法のために、指標は高ボラティリティと強いトレンドの市場か
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
Algo Trading Indicaor  With this indicator , you’ll have zones and trends that hight probability the price will reverse from it. so will gives you all the help that you need  Why should you join us !?  1-This indicator is logical since it’s working in previous days movement , to predict the future movements. 2-Algo trading indicator will help you to draw trends which is special and are too strong than the basics trend , trends will change with the frame time that you work on . 3-We can use
Gold Channel is a volatility-based indicator, developed with a specific timing algorithm for the XAUUSD pair, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the theory of the channel is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel it is a tradi
Wave Price Channel - 衝動と修正を検索するように設計された取引分析システム。 このインジケーターを使用すると、ボラティリティに基づいて構築された価格チャネルの方向に作業することができます。 チャネル上に上向きまたは下向きの矢印が描かれると、この方向に進むことが可能になります。この方向のシグナルは、価格の変化に敏感なドットインジケーターによって確認されます。 同じ色のドットが続く限り信号は継続します。矢印はあるが、同じ色のドットがない場合、その信号は偽であり、ドットが表示されたらそれに従う必要があります。 このインジケーターには、異なる時間枠に対して変更できる唯一の変更可能なパラメーター「価格チャネルの長さ」があります。 タイムフレーム M15 以降での使用を推奨します。 あらゆる取引商品に使用できます。 矢印にはいくつかの種類のアラートがあります。 操作中にシグナルアローを1本のキャンドルに変更することが可能です。 赤い上向き矢印が表示されたら、購入の合図です。赤い点は矢印の軌跡の続きです。 黄色の下矢印が表示された場合は販売の合図であり、黄色の点は矢印の軌跡の
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
アルティメット・アロー・インディケーター - トレーディング成功へのあなたのツール! 多くを約束し、少ししか提供しないツールに疲れましたか?MT4用の「アルティメット・アロー・インディケーター」は、あなたのトレーディングを次のレベルへと引き上げる最終的な解決策です。このインディケーターは、明確で信頼性の高い、妥協のないシグナルを提供するために精密に設計されました。なぜ「アルティメット・アロー・インディケーター」が経験豊富なトレーダーにも初心者にも最適な選択肢であるかをご紹介します: 素晴らしいパフォーマンス - 実績証明済み 1年間の詳細なバックテスト:勝率90%で、このインディケーターは利益を生み出すことに非常に信頼できることが証明されています。7,006個のシグナル中、6,242個が勝利し、シグナルごとに平均29ピップの利益を上げました。 損失率の最小化:生成されたシグナルのうち、わずか10%が負の結果となり、アルゴリズムの精度と品質を証明しています。 主な特徴 リペイントなし :一度生成されたシグナルは変更されません、透明性が保証されます。 遅延なし :リアルタイムで計算し、市
---- Brand New Strategy. Three Month Rent is $30. ONE YEAR RENT ONLY $50. FREE EURUSD VERSION AVAILABLE UNDER << Forecast System Gift >>. NO NEED FOR BACKTEST! Link to the FREE version -->  https://www.mql5.com/en/market/product/110085?source=Site --- This is a simple strategy based on BREAKOUT and FIBONACCI levels. After a breakout, either, the market: - continues the move directly to the 161, 261 and 423 levels, or - retraces to the 50% level (also called a correction) and thereafter continues
ACB Breakout Arrows
KEENBASE SOFTWARE SOLUTIONS
4.15 (34)
ACB Breakout Arrows インジケーターは、特別なブレイクアウトパターンを検出することで、市場における重要なエントリーシグナルを提供します。このインジケーターは、特定の方向に勢いが定まりつつある状況を常にスキャンし、大きな値動きの直前に正確なシグナルを表示します。  複数通貨ペア・複数時間軸スキャナーはこちら - ACB Breakout Arrows MT4 用スキャナー 主な特徴 ストップロスとテイクプロフィットの水準を自動で表示します。 すべての時間足に対応したMTFスキャナーダッシュボード付き。 デイトレーダー、スイングトレーダー、スキャルパーに適しています。 シグナルの精度を高めるために最適化されたアルゴリズムを採用。 損益分岐点やスキャルピングの目標として利用できる特別な「クイックプロフィットライン」を搭載。 勝敗、成功率、平均利益などのパフォーマンス分析機能を搭載。 リペイントなし(シグナルは表示後に変更されません)。 トレードの確認 -  ACB Trade Filter インジケーター を併用し、低確率の取引を除外しましょう。 強い買い: 上向き矢印
TREND HARMONY MT4 –  Multi Timeframe Trend and Phase and Pullback Level Visualizer indicator for Metatrader4 The TREND HARMONY indicator automates deep trend analysis and generates visualizations for you. Take control of your trades by eliminating uncertainty! Revolutionize your trading experience with precision and insight through the TREND HARMONY Multi Timeframe Trend Indicator – your ultimate MT4 trend visualization indicator. Are you tired of missing trading opportunities or consistently e
FX Volume
Daniel Stein
4.6 (35)
FX Volume:ブローカー視点で捉える本物の市場センチメント クイック概要 トレード手法をさらに高めたいとお考えですか? FX Volume は、リテールトレーダーやブローカーのポジション状況をリアルタイムで提供します。これは、COTのような遅延レポートよりもはるかに早く知ることができます。安定した利益を目指す方も、さらなる優位性を求める方も、 FX Volume は大きな不均衡を見極め、ブレイクアウトを確認し、リスク管理を洗練させるのに役立ちます。今すぐ始めて、実際の出来高データがどのように意思決定を変革するかを体感してください! 1. FX Volume がトレーダーにとって非常に有益な理由 高精度の早期警戒シグナル • 各通貨ペアを売買しているトレーダー数を、他者よりも早く、ほぼリアルタイムで把握できます。 • FX Volume は、複数のリテールブローカーから得られる本物の出来高データを収集し、分かりやすい形式で提供する 唯一 のツールです。 強力なリスク管理 • ロングやショートの大きな偏り(インバランス)を特定し、潜在的なトレンド転換を見逃しません。ストップ
The Positive Zone
Ellan Dirgantara Tholkhah
Specialized Binary Options Indicator.  The name positive zone is inspired by how this indicator ultimately made me feel, which is "Positive". Not only from a emotional stand point but from a financial one. Once you start earning from this indicator it will give you that runners high, or that nice buzz after you finish a warm cup off coffee in the morning and blast on Cumbawamba's on hit wonder Tubthumping. The key to winning Binary Option is patience and controlling your emotion . This is why th
作者のその他のプロダクト
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
FREE
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
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 จำนวนแท่งเทียนที่ใช้ในการคำนวณระ
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. เส้นเทรนด์ไลน์ เป
FREE
Volume Profile เป็นเครื่องมือที่ใช้สำหรับการวิเคราะห์ระดับการซื้อขายของตลาดในแต่ละระยะเวลาโดยใช้ปริมาณการซื้อขาย (volume) ซึ่งช่วยให้เราเข้าใจว่ามีการซื้อขายเกิดขึ้นมากที่สุดที่ราคาใด รวมทั้งช่วยในการหาจุดที่มีความนิยมในการซื้อขาย (Point of Control: POC) และระดับการซื้อขายอื่น ๆ ที่สำคัญ เรียกว่า Value Area. การใช้งาน Volume Profile ในการวิเคราะห์ตลาดมักจะมีขั้นตอนดังนี้: กำหนดระยะเวลาที่ต้องการวิเคราะห์ : เราต้องกำหนดระยะเวลาที่เราสนใจในการวิเคราะห์ Volume Profile เช่น ชั่วโมง, วัน, หรือสัปดาห์
FREE
BB-Trader Pro: ปลดล็อกพลังการเทรดทำกำไรในทุกสภาวะตลาด! เบื่อไหม? กับ EA ที่ใช้ได้ดีแค่ในตลาดบางช่วง... พอตลาดเปลี่ยนจากมีเทรนด์เป็น Sideways สัญญาณก็เริ่มพลาด ล้างพอร์ตโดยไม่รู้ตัว ถึงเวลาแล้วที่จะปฏิวัติการเทรดของคุณด้วย BB-Trader Pro EA อัจฉริยะที่ถูกออกแบบมาให้ "คิดและปรับตัว" ได้เหมือนเทรดเดอร์มืออาชีพ! "สมองกลสองโหมด" กลยุทธ์ที่ไม่เคยหยุดนิ่ง หัวใจหลักของ BB-Trader Pro คือความสามารถในการวิเคราะห์ความผันผวนของตลาดจาก Bollinger Bands และปรับเปลี่ยนกลยุทธ์การเทรดโดยอัตโนมัติ โหมดเทรดปกติ (N
FREE
กลยุทธ์ HFT Hedging แบบปรับลอตเพิ่ม ตั้งต้นด้วยสถานะสองฝั่ง (Long และ Short) ในการ Hedging คุณจะเปิดสถานะทั้งฝั่ง Long และ Short พร้อมกันในตราสารเดียวกันเพื่อป้องกันความเสี่ยงจากการเคลื่อนไหวในทิศทางใดทิศทางหนึ่ง คุณจะเริ่มเปิดสถานะโดยใช้ลอตต่ำที่สุด เพื่อทดสอบทิศทางการเคลื่อนไหวของตลาด ใช้เงื่อนไขในการเปิดสถานะเพิ่มเติม (ปรับลอตเพิ่ม) เมื่อสถานะหนึ่งขยับเข้าใกล้เป้าหมายกำไร (Take Profit หรือ TP) หรือเริ่มเข้าเขตทำกำไร (เช่น เมื่อ ATR หรือ ค่า Technical Indicator อื่นๆ บอกถึงความผันผวนที่เพิ่มขึ
FREE
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 จำนวนแท่งเทียนที่ใช้ในการคำนวณระ
FREE
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
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 อธิบ
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:
フィルタ:
レビューなし
レビューに返信