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

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. การใช้งาน:

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


おすすめのプロダクト
Modified Parabolic SAR: Your Reliable Market Assistant This enhanced version of the Parabolic SAR indicator effectively reflects the trend direction and can serve as an excellent addition to your trading strategy. Advantages: Trend Direction Reflection: The indicator accurately depicts the market trend direction, aiding you in making informed trading decisions. Signal Filtering: It can serve as an effective filter, complementing your strategy by helping to eliminate false signals and execute mo
FREE
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
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
^With Mixin Combiner. ^You Can Combine 10 Indicators Together To Make One Arrow In The End ^You Can Filter Time You Want To Trade. ^You Can Control Which Candle Arrow Apear On It " Bullish Or Bearsh". ^There Is An Statistics To Can Filter "What success rate of the indicators you Combined? ". ^You Also Can Control The Appearance Of The Arrows At Any Time Of The Candle , "Is It In The Beginning Or At Any Time In Particular? ".
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
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 diffe
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
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 mai
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 th
This system never paints.   This system created by using Envolpes bands and reverse bar count.   This indicator is only working in M5 period.   This system is for long term and profitable.   Signals are shown as arrows. as an optional limit orders.   You can set a voice alarm or email notification.   You can fins our other products from link : https://www.mql5.com/en/users/drbastem/seller   Also, you can ask all your questins from email : haskayafx@gmail.com or mobile : +90 530 867 5076 or @Meh
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
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 Trad
This indicator has as many dots as a Rollex watch.. Also in the kit we have 3 built-in indicators that are combined and configured in such a way that would give you a profit of 75% and that's not all for your convenience, you can reconfigure it! Initially, it is configured for currency pairs, but if necessary, we can reconfigure it for cryptocurrency and also raw gold, whatever you want! Not just an arrow indicator, but an Alligator in the world of the Market, then you will like how it sh
This indicator continuously changes the color of candlestick borders and bodies, as well as the color of volumes in real time. The indicator is easy to use. The palette of colors is diverse. This product is a graphical solution, so it is difficult to describe what it does by text, it is easier to see by downloading it, besides the product is free. The indicator is suitable for bloggers who want to create a beautiful picture of a chart for video editing or traders who want to make their chart al
FREE
<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
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
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
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.
This indicator prepared by using 57 days moving averagr and least square method. It can only work for 1 hr time interval. Once a signal created. It is creating order and 2 limit orders. It works in CFD pairs as well as in Forex pairs. You can fins our other products from link : https://www.mql5.com/en/users/drbastem/seller Also, you can ask all your questins from email : haskayafx@gmail.com or mobile : +90 530 867 5076 or @MehmetBastem on telegram application This system is for Long term and pr
このユニークな自動トレンドラインドローイングインジケーターはすべての時間枠で機能し、短期トレンドの反転だけでなく、市場でより強い資産を示す短期トレンドブレイクアウトを簡単に取引するのに役立ちます。 それはあなたが激しいスイングのために早く入ることをユニークに可能にします。 入力には次のものが含まれます。 -マックスキャンドルはトレンドラインを振り返る -線の種類と色 -外側のバンドまでの最大距離とバンド期間 -確認キャンドルまたは価格が閉じたときにピボットからトレンドラインを自動再描画するオプション低低または高高(ダブルボトム低および高サポート)および再描画の最大キャンドル数。 -改行の4つのオプション: 1)価格がラインを超えたときに削除する 2)削除しないでください 3)ろうそくがラインを超えて閉じたときに削除する 4)トレンドに逆らって閉じるときに削除する
このプロダクトを購入した人は以下も購入しています
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高
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
現在26%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く
Reversal First Impulse levels (RFI)    INSTRUCTIONS        RUS       -       ENG              R ecommended to use with an indicator   -   TREND PRO -  Version MT5 A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Main functions: Displaying active zones
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION                R ecommended to use with
Gold Stuff
Vasiliy Strukov
4.89 (257)
Gold Stuff は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. それインディケータでフルオートExpert Advisor EA Gold Stuffが動作します。 あなたは私のプロフィールでそれを見つけることができます. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください! トレンド スキャナーの強力なサポートを利用して、無料のインジケーターを入手し、プライバシーを守ります。あーみー!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオフ。 プッシュ通知。 次に、色域を調整します。 Gold Stuff は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. それインディケータでフルオートExpert Advisor EA Gold Stuff
TrendMaestro
Stefano Frisetti
5 (3)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Advanced Supply Demand
Bernhard Schweigert
4.92 (311)
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
FX Volume
Daniel Stein
4.6 (35)
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
This indicator is based on the mathematics of the great trader W.D. Ganna. With its help, you can easily find strong levels by analyzing swings to find the optimal entry point. The indicator works on all instruments and all timeframes. The indicator is fully manual and has control buttons. All you need to do is press the NEW button, a segment will appear, which you can place on any movement, swing or even 1 candle that you want to analyze. By placing the segment, press the OK button. A grid (th
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT4 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvan
3 Indicators in 1 indicator Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This indicator is basically 3 different indicatos . But we have combined these 3 indicators in 1 indicator so that you can use 3 indicators at the lowest price. All three strategies are based on price action. But based on different trends. Long term, medium term and short term Attributes : No repaintin
Trend Screener
STE S.S.COMPANY
4.83 (88)
トレンドインジケーター、1つのツールに組み込まれたすべての重要なトレンド機能を備えたトレンドトレーディングとフィルタリングのための画期的なユニークなソリューション! これは、すべてのシンボル/商品(外国為替、商品、暗号通貨、インデックス、株式)で使用できる100%再描画されていないマルチタイムフレームおよびマルチ通貨インジケーターです。 トレンドスクリーナーは、チャート内のドットで矢印トレンドシグナルを提供するインジケーターに続く効率的なインジケーターです。 トレンド分析インジケーターで使用できる機能: 1.トレンドスキャナー。 2.最大利益分析を備えたトレンドライン。 3.トレンド通貨強度メーター。 4.アラート付きのトレンド反転ドット。 5.アラート付きの強いトレンドドット。 6.トレンド矢印 毎日の分析例、毎日のシグナルパフォーマンス...など、トレンドスクリーナーインジケーターを使用して、ここで見つけることができます: ここをクリックしてください 期間限定オファー:トレンドスクリーナーインジケーターは、50ドルと生涯でのみご利用いただけます。 (元の価格125 $) MQ
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇ト
Full Forex Market View Dashboard
Opengates Success International
5 (2)
FULL FOREX MARKET VIEWダッシュボードインジケーター これは、トレーダーが市場で何が起こっているかを完全に把握できるようにするために作成されたカスタム指標です。 リアルタイム データを使用して市場にアクセスし、取引を成功させるために必要なあらゆる情報を表示します。 インストール: このインジケーターをウィンドウ チャートに添付する前に、MT4 のマーケット ウォッチ パネルに移動し、不要な通貨ペアまたは取引しないすべての通貨ペアを非表示にして、残りをそこに残します。 その理由は、FFMV ダッシュボードが MT4 の気配値表示に表示されるすべての通貨ペアを表示するためです。 最大 30 通貨ペア以下を表示できます。 MT4 の気配値表示でそれ以上だと、FFMV ダッシュボードのフォントと画像がぼやけて変形します。 正しく表示されません。 使用法:      個人取引の場合      バスケット取引の場合 (方法についてはスクリーンショットを参照してください)      複数注文取引にも使用可能      独自の取引システムなどから
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, 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 channel theory 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's a trading opportunity. The
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、
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
もちろんです。以下は、提供いただいたテキストの日本語への翻訳です: MT4用の天文学指標をご紹介します:究極の天体トレーディングコンパニオン トレーディング体験を天空の高みに高める準備はできていますか?私たちの革命的なMT4用の天文学指標をご紹介します。この革新的なツールは、複雑なアルゴリズムの力を借りて、類まれなる天文学的洞察と精密な計算を提供します。 あなたの指先で宇宙の情報を: 宝のような天文学的データが明らかになる包括的なパネルをご覧ください。惑星の地理的/太陽中心座標、太陽と地球の距離、星の大きさ、伸び、星座、黄道座標および赤道座標、さらには水平座標まで、それぞれが綿密に計算され美しく表示されています。指標によって生成される垂直線は時間値に対応し、トレーディングの旅に宇宙の視点を提供します。 惑星のラインと関係: グラフを飾る惑星のラインの魔法を体験し、スケールと角度をカスタマイズできます。直感的なコントロールパネルを介して各惑星のラインの表示を簡単に切り替えることができます。指定された時刻範囲内での合会、六分会、四分会、三分会、対会、逆行の指標で天体の関係の芸術を発見してく
Bands Sniper
Abdulkarim Karazon
5 (1)
現在の価格は 10 部のみで、それ以降の価格は 90 ドルとなります 矢印付きのエンベロープとtmaに基づいたバンドスナイパーインジケーターは、動的なサポートとレジスタンスを示し、売買の矢印としてエントリーシグナルも与えるため、多目的のインジケーターです。 デフォルト設定は 1H の時間枠に基づいています。完全なガイドについては購入後にお問い合わせください。 エントリールール: 買い : 1.ローソク足は両バンドの下で終了          2.ローソク足 2 つの上矢印 (金色の矢印とオレンジ色の矢印) を使用して 2 つのバンド内で戻ります。 売り : 1.両方のバンドの上でローソク足で終了          2.ローソク足 2 つの下矢印 (金色の矢印とオレンジ色の矢印) を使用して 2 つのバンド内で閉じます。 TP 1 : ミドルバンドライン TP 2 : 逆バンド SL カップルが矢印の下でピップス 推奨される時間枠は : 15 分以上
現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボ
[ MT5 Version ] Backtesting Simulator Are you tired of spending months on demo or live accounts to test your trading strategies? The Backtesting Simulator is the ultimate tool designed to elevate your backtesting experience to new heights. Utilizing Metatrader historical symbol information, it offers an unparalleled simulation of real market conditions. Take control of your testing speed, test ideas quickly or at a slower pace, and witness remarkable improvements in your testing performance. For
これはMT4のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。
このインディケータは、異なる期間のフラクタルの価格構造を調べて、市場で起こり得る反転ポイントを決定し、すでに基本的または技術的な評価モデルを持っているポジショントレーダーにタイミングを提供します。弟の リバーサルフラクタル とは異なり、このインジケーターは選択された期間のためにリバーサルを逃すことはなく、ジグザグ形式でリバーサルフラクタルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] ターニングポイントは長いトレンドを開始できます インジケーターは再描画されていません あらゆる種類のアラートを実装します カスタマイズ可能な色とサイズ フラクタルは奇数番目のバーのフォーメーションであり、フォーメーションの最上位または最下位の中間バーであり、フラクタル内のすべてのバーが閉じるとインディケーターが描画されるため、このインジケーターはリアクティブまたは遅れ信号です。ただし、既存の方向バイアスを持つトレーダーは、この指標が非常に有用であり、早期のエントリポイントを取得します。 このインディケーターは、ボイルダウンされ
シンプルでありながら効果的なポジション取引戦略であるオーダーブロックの個人的な実装。価格範囲がブレイクアウトの反対方向に違反されていない場合、トレーダーは市場に参入するか、最後の注文ブロックの方向で取引を探す必要があります。わかりやすくするために、開いたブロックは描かれていません。 【 インストールガイド】 アップデートガイド | トラブルシューティング | FAQ | すべての製品 ] 強気のオープンブロックは、新鮮な市場の安値の後の最初の強気のバーです 弱気のオープンブロックは、新鮮な市場の高値の後の最初の弱気のバーです 開いているブロックが壊れるとシグナルが表示され、オーダーブロックになります オーダーブロックが反対側に折れると、反転ブロックになります インジケーターはすべての種類のアラートを実装します 塗り直しや裏塗りはしません 入力パラメータ 期間:新鮮な高値または安値を作成するために必要なバーの量。値が小さいほど、信号が多くなります。 最小ATRフィルター:ATRの乗数として表される、オーダーブロックバーの最小ボディサイズ。 最大ATRフィルター:ATRの乗数と
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発された Quantum Breakout PROは 、革新的でダイナミックなブレイクアウトゾーン戦略により、あなたの取引の旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5バージョン:   ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、また
Advanced Currency Strength Indicator The Advanced Divergence Currency Strength Indicator. Not only it breaks down all 28 forex currency pairs and calculates the strength of individual currencies across all timeframes , but, You'll be analyzing the WHOLE forex market in 1 window (In just 1 minute) . This indicator is very powerful because it reveals the true movements of the market.  It is highly recommended to  analyze charts knowing the performance of individual currencies or the countries ec
ON Trade Waves Patterns Harmonic Elliot Wolfeをご紹介します。これは手動および自動の方法を使用して市場のさまざまなパターンを検出するために設計された高度なインジケーターです。以下はその動作方法です: ハーモニックパターン: このインジケーターは、チャートに表示されるハーモニックパターンを識別できます。これらのパターンは、Scott Carneyの「Harmonic Trading vol 1および2」で説明されているように、ハーモニックトレーディング理論を実践するトレーダーにとって重要です。手動で描画するか、自動検出に頼るかにかかわらず、ON Trade Waves Patternsがお手伝いします。 コントロールパネル: このインジケーターはユーザーフレンドリーなコントロールパネルを備えています。チャートと時間枠の設定を保存し、異なる構成間をスムーズに切り替えることができます。チャートスペースを最大限に活用するために最小化することもできます。他の分析ツールで作業することを好む場合、閉じるボタンをクリックするだけで、すべてのインジケーターデ
EZTトレンドインジケーターは、トレンド、プルバック、エントリーの機会を示します。 オプションのフィルタリングとあらゆるタイプのアラートが利用可能です。 電子メールおよびプッシュ通知アラートが追加されます。 また、このインジケーターに基づいた EA も開発中であり、間もなく利用可能になる予定です。 2色のヒストグラムとラインで構成される多機能インジケーターです。 これはトレンドの方向と強さを視覚的に表現したもので、ラインまたはヒストグラム上で発散が何度も見つかります。 このインジケーターは自動パラメーター設定とうまく連携します。 これらは特定の時間枠に対して事前に決定されており、その設定でインジケーターを使用することをお勧めします。 手動モードでは、独自のパラメータを設定できます。 これはマルチタイムフレーム(MTF)インジケーターです。 このインジケーターは、MTF rsi、MTF cci、MACD pro などの他のインジケーターの組み合わせとうまく機能します。 取引される商品の変動が大きいほど、最適なエントリーを見つけるために使用する必要がある時間枠は短くなりま
作者のその他のプロダクト
"Grid Trading" is a trading strategy in the financial markets that focuses on systematic risk control and position management by using a grid of buy and sell orders. Generally, Grid Trading involves setting two target price levels: the buy limit price and the sell limit price, with the buy target price being lower than the current market price and the sell target price being higher than the current market price. The Grid Trading strategy typically consists of the following main steps: Set Targ
FREE
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 fact
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. เส้นเทรนด์ไลน์ เป
Pivot Points และระดับ (Support) และ(Resistance) บนแผนภูมิการเทรดใน MetaTrader 4 สำหรับตลาด Forex : คำนวณ Pivot Points : สคริปต์คำนวณจุด Pivot โดยใช้ข้อมูลราคาประวัติศาสตร์ เช่น ราคาเปิด, ราคาสูงสุด, ราคาต่ำสุด, และราคาปิด จากช่วงเวลาที่กำหนด (เช่น วัน, ชั่วโมง, ฯลฯ) จุด Pivot และระดับต่างๆ เช่น R1, R2, R3 (ระดับการต้านทาน) และ S1, S2, S3 (ระดับการสนับสนุน) ถูกคำนวณออกมา แสดงบนแผนภูมิ : หลังจากคำนวณจุด Pivot และระดับต่างๆ, สคริปต์จะแสดงเส้นเหล่านี้บนแผนภูมิ MT4 เพื่อช่วยให้นักเทรดสามารถเห็นจุดที่
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. เส้นเทรนด์ไลน์
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
การดำเนินงานพื้นฐาน : EA ทำงานโดยใช้หลักการของการเทรดแบบกริด ซึ่งหมายถึงการวางคำสั่งซื้อและขายเป็นระยะๆ (กำหนดเป็นเปอร์เซ็นต์ของราคา) ภายในโซนที่กำหนดไว้ พารามิเตอร์ป้อนข้อมูล : EA ใช้พารามิเตอร์หลายอย่าง เช่น ขนาดกริด, กำไรที่คาดหวัง, การหยุดขาดทุน (ทั้งหมดเป็นเปอร์เซ็นต์), โซนสำหรับการซื้อและขาย, ขนาดล็อต, และจำนวนคำสั่งสูงสุดที่อนุญาต พารามิเตอร์เหล่านี้มีความสำคัญในการกำหนดวิธีการทำงานของ EA การเริ่มต้น (OnInit) : เมื่อ EA เริ่มทำงาน, มันจะทำการเริ่มต้นโดยสร้างป้ายบนกราฟ (ชื่อ "MTRADER_Labe
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 G
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
Volume Profile เป็นเครื่องมือที่ใช้สำหรับการวิเคราะห์ระดับการซื้อขายของตลาดในแต่ละระยะเวลาโดยใช้ปริมาณการซื้อขาย (volume) ซึ่งช่วยให้เราเข้าใจว่ามีการซื้อขายเกิดขึ้นมากที่สุดที่ราคาใด รวมทั้งช่วยในการหาจุดที่มีความนิยมในการซื้อขาย (Point of Control: POC) และระดับการซื้อขายอื่น ๆ ที่สำคัญ เรียกว่า Value Area. การใช้งาน Volume Profile ในการวิเคราะห์ตลาดมักจะมีขั้นตอนดังนี้: กำหนดระยะเวลาที่ต้องการวิเคราะห์ : เราต้องกำหนดระยะเวลาที่เราสนใจในการวิเคราะห์ Volume Profile เช่น ชั่วโมง, วัน, หรือสัปดาห์
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
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:
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
フィルタ:
レビューなし
レビューに返信