MosquitoBite

Expert Advisorは設定に応じて取引されます。.. アグレッシブはアグレッシブではありません-ここでは、あなたがそれを設定すると、それは取引されます。

彼の戦略の特徴として何を強調すべきですか? そして、顧問がこのような取引を開くという事実。.. 彼が指定されたパラメータに従って買い取引を開いた場合、設定の特定のポイントを介して、売りシグナルがあるとすぐに買い注文の下で売り取引を開きます。 そしてまったく逆です。 彼が指定されたパラメータに従って売り取引を開いた場合、買い取引は売り取引の上に開かれます。

それでは、アドバイザーの取引について何を言えばよいですか? したがって、たとえば3.00から10.00までの時間を設定すると、アドバイザーは3.00から10.00までのトランザクションのみを開き、ターミナルウィンドウ、通貨ペアにいる間に残りのすべての作業を行います。これは、設定でトロールを指定し、最も重要なことに、これらの取引がこのアドバイザーによって開かれた場合はトランザクションを閉じることです。

Expert Advisorは、移動平均とアリゲーターの二つの指標を取引に使用します。 アリゲーターインジケーターの緑の線がアリゲーターインジケーターの青い線とインジケーターの青い線、それに応じてアリゲーターインジケーターの緑の線と交差するとすぐに、120の期間で移動平均を上方に横切ると、アドバイザーは買い取引を開きます。 また、アリゲーターインジケーターの緑の線がアリゲーターインジケーターの青い線と交差し、アリゲーターインジケーターの青い線、したがってアリゲーターインジケーターの緑の線が120の期間で移動平均を交差させると、アドバイザーは売り注文を開きます。 これらは、このExpert Advisorが取引を開始するための入力パラメータです。

アドバイザーは、設定で指定された利益に従ってトランザクションを閉じます。 つまり、クイックキャンドルがあり、アドバイザーが反応する時間がない場合は、設定で指定された量を超えて閉じますが、それ以下ではありません。

extern double LotsB                     = 0.1; 発注書が購入される金額
extern double LotsS                     = 0.1; 売り注文が購入される金額
extern double limit                     = 10.0; 取引の口座残高を計算するために使用される番号
//
extern int Magic1                       = 11221; マジックナンバー
//
extern int StuporBuy                    = 4; 指定された番号を超えて購入することはできません。 
                                             セッションごとの注文
extern int StuporSell                   = 7; 指定された数を超えて販売のために開いていません。 
                                             セッションごとの注文
//
extern double MultiplierBuy             = 3.0; 後続の発注書はどのくらい増加しますか?
extern double MultiplierSell            = 3.0; その後の売り注文はどのくらい増加しますか?
//
extern int DistBuy                      = 50; 始値からの買い注文の開始距離
                                              前の発注書
extern int DistSell                     = 50; 始値からの売り注文の開始距離
                                              前の売り注文
extern int UpwardTrend                  = 500; 少なくとも注文が開かれる距離
                                               現在の価格が平均価格よりも高い場合に購入する
                                               売買のために
extern int DownwardTrend                = 500; 少なくとも注文が開かれる距離
                                               現在の価格が平均価格よりも低い場合の販売のため
                                               売買のために
extern int DistanceBetweenBuyingSelling = 200; 最後のオープン売り注文からの距離,
                                               その上に発注書が開かれます,
                                               入力パラメータがこれに一致する場合
extern int DistanceBetweenSalePurchase  = 200; 最後のオープン買い注文からの距離
                                               その下で売り注文が開かれます,
                                               入力パラメータがこれに一致する場合
//
extern double StopBuy                   = 150.0; すべての注文がクローズされる価格
                                                 購入のため
extern double StopSell                  = 150.0; すべての注文がクローズされる価格
                                                 販売のため
extern double Puk                       = 15.0; すべての注文がクローズされる価格
//
input int      PlusPoints               = 100; 現在の価格と奴隷価格の間の距離
input int      TralingStep              = 10; 現在の価格からの損益分岐点の距離
//
extern bool skachki                     = false; trueの場合、thrallは有効になりますが、falseの場合は有効になりません。
extern int quantitybuy                  = 1; 発注される発注書の数 
                                             トロール船
extern int quantitysell                 = 1; 発注される売り注文の数
                                             トロール船
//
extern int morning                      = 0; アドバイザーが作業を開始する時間
extern int evening                      = 15; アドバイザーが開くのを停止する時間
                                              注文が、オープン注文でその作業を継続します
//---
//
extern int    bu                        = 3; 追加される発注書の数
                                             危機的な状況では
extern int    se                        = 3; 追加される売り注文の数
                                             危機的な状況では
extern double newlimit                  = 2.0; 危機的な状況での取引のための制限の量を増やす


ここでは、アドバイザーがアカウントの残りの金額の取引を開くことを禁止できるように設定することで、アドバイザーには制限があるとも言われています。 そして、ここでは、このパラメータを10に設定すると、アカウントが10に分割され、アドバイザーがアカウントの10分の1のトランザクションを開くことができることを意味することを1つの詳細を明確にする必要があります。 また、アドバイザーはより多くの取引を開くことはできませんが、取引が不採算である場合、このパラメータはマージンコールから保存されません。 その後、Expert Advisorがドローダウンに入らず、取引に戻ることを期待して長い間ハングしないようにするために、より多くのお金を提供する必要があるため、新しいリミットを選択できるようにする設定にもパラメータがあります。 つまり、あなたの制限があなたのアカウントの10分の1であり、あなたがあなたのアカウントの半分である2の新しい制限を指定した場合、取引を開いて利益でそれを閉じた顧問がドローダウンに入らない可能性がありますが、あなたの利益をもたらし続けるでしょう。 一般的に、すべてがあなたの裁量です。



おすすめのプロダクト
Perfection is a multicurrency, fully automated and secure trading robot. The robot is designed for both portfolio trading and trading a single instrument. The EA does not use averaging methods, the volume of positions is strictly regulated. Orders are opened only in the direction of market movement in a grid. Due to this, the robot operates efficiently on any strong movements. The decision making algorithm does not use indicators. Instead, the robot automatically calculates the key levels, which
For Pair Gold Only Martingle or Single Entry Type. Setting : Layer Entry Style : 1. Pip Step Entry (Recommended for Martingle type) =  Recommended  250 points 2. Instant Entry (Recommended for Single Entry type but no SL) Take Profit option : 1. By Golden Ratio Fibonacci Retracement 2. By Smart Averanging PIPS Lot Size Style : 1. Lot Size Auto 2. Lot Size Manual (Recommended) 3. Lot Size Percentage (Still Working on it) TimeFrame Signal Switch (Auto Scanning) : 1. M5 2. M15 3. M30 4. H1 I'm usi
Specification: - Trend trading only on GBPCAD . - EA run using H1 (1 hour) and D1 (daily) timeframes only (so don't worry about strategy tester modelling quality, because of using H1/D1 is enough) . - Each trade opened with pre-determined Stop loss and Take profit. - Having trailing stop. - Based on fixed risk per trade/position (default is 5% of account free margin), then: Expecting net profit is about 60%/year ; Maximum drawdown is only 11% for the whole period (4 years testing). - Medium/L
Best Day Trade
Luis Mariano Vazquez Marcos
El Asesor Experto "Precision Day Trader" es una herramienta avanzada diseñada para analizar meticulosamente las condiciones del mercado y ejecutar operaciones con precisión durante el día. Utiliza algoritmos inteligentes y estrategias cuidadosamente diseñadas para identificar oportunidades de trading óptimas, centrándose en la precisión y el rendimiento consistente. Características Principales: Análisis Preciso del Mercado: El EA realiza un análisis detallado de las condiciones del mercado, util
Bitcoin AI Robot – One-Way DCA Strategy with Smart Trailing Stop The Bitcoin market is always highly volatile – sometimes it rises quickly, and sometimes it experiences deep corrections. Instead of trying to guess the peaks and troughs, the Bitcoin AI Robot helps investors take advantage of price movements in a single, consistent, and controlled direction. What is a One-Way DCA Strategy? DCA (Dollar-Cost Averaging) is a method of breaking down capital and gradually buying as the market
The trend scalper is based on the head-shoulder micropatterns and the relative strength index. The unique algorithm of the adviser determines the most possible directions of price movement, false impulses and the force of movement are calculated. Each position has a stop loss and take profit. Dangerous trading methods are not used. It is recommended to use the advisor with the default settings on the following trading instruments (timeframe 5 minutes): GBPUSD, USDCAD, EURUSD. Recommended bro
ORB-Williams FPOトレーディングロボットは、TobyCrabelを含むさまざまなOpeningRange Breakout(ORB)戦略と、より良いエントリーシグナルのための追加のトレンドインジケーターを、前者の出口戦略と組み合わせた結果です。LarryWilliamsの収益性の高いオープニング(FPO)。 シグナルに関する私の実際の自動取引の結果を見ることができます:https:// www.mql5.com/en/signals/1481106 ?source = Site + Signals + Favorites オープニングレンジブレイクアウト(ORB)は価格変動レンジであり、セッションごとにサポートレベルとレジスタンスレベルの組み合わせを生成し、バンドからのブレイクアウトを優先して位置付けます。または長くなり、それが故障したとき、それは売るか不足するという合図です。 これらのレベルは、特にシステムが持ついくつかのパラメーターに依存するため、これらのパラメーターに与える値に応じて、システムの結果は大幅に異なる可能性があります。問題のパラメータは「no_t
The robot was designed to work with gold on a 15-minute timeframe. It is easily optimized to work on all spot market instruments. But since gold has a large intraday trading range, it is optimal to use a robot to work with gold. It can be optimized for any timeframe. To work with currency pairs on accounts with 5 decimal places, the trailing stop and step must be multiplied by 10. Trailing stop allows you to take almost the entire price momentum.
Unlock the Power of Smart Trading with SmartDCA Trader! SmartDCA Trader is your ultimate companion in navigating the dynamic world of Forex trading. Leveraging the highly effective Dollar-Cost Averaging (DCA) strategy, this expert advisor is designed to optimize your trades, minimize risks, and maximize profits—all with precision and simplicity. Why Choose SmartDCA Trader? Powerful DCA Strategy: Automatically adjusts and averages positions during market fluctuations to secure better entry prices
"Phoenix Gold is a great choice for hands-off investors who plan to do a long-term investment in gold" #Non-Martingale #Always SL #Robust #Adaptive #Fully Automated #AI #XAUUSD Phoenix Gold is a non-martingale expert adviser generated from our AI-driven pipeline which learns diversified trading strategies from 10-years historical data of the gold market. Phoenix Gold  project aims to provide a robust adaptive trading system that can harmonize with the dynamic of the market. We value risk manage
Dmf AI EA
Ransom Dikpen Egene
DMF AI EA ROBOT Most Efficient Trading System Specifically Designed best for NASDAQ (USTECH100) with hidden tricks in beating the market rule. Many Newbies asks why trade just USTECH100(NASDAQ) well what we tell you is our robot works and support all other currency pairs and commodities what you should have in mind is 1 pair of currency can give you all you need in the fx market not by desiring to trade multipairs  what is important is knowing what you are doing in the market! Features: > Unique
This is a fully FIFO compliant EA that performs money management as well as risk management. It is ideal for American residents who deal with FIFO limitations and low 1:50 leverage. The EA entry point is fully customizable and traders can conveniently modify the inputs to serve their own risk apatite. Here is the signal I created to track the progress of this EA live: https://www.mql5.com/en/signals/1491511 Since it uses martingale strategy, a gradual delay strategy is defined in the EA that clo
In the ever - changing foreign exchange market, the three currency pairs AUDCAD, AUDNZD, and NZDCAD have always been the focus of investors due to their unique market characteristics. They are deeply affected by multiple factors such as commodity prices, economic data, and global risk sentiment. Volatility contains both opportunities and hidden risks. And reasonable position management is the key to moving forward steadily in this complex market. ​ For investors who prefer simple and direct ope
Accuwiser Expert Advisor We have developed a strategy for GOLD which is now available for everyone through Accuwiser Expert advisor. Tight money management and risk management have been applied to this expert. The way we handle losing trades is unique and 3 different methods are applied if any trade goes in loss. Furthermore Entering a trade is time-based and differs in various modes we recommend. Different risk levels which have been provided have no interaction with higher lot size. Only dif
Insight Investor: Advanced Multi-Currency Forex Trading Bot Introduction In the fast-paced world of Forex trading, having the right tools can significantly enhance your trading experience. Insight Investor is an advanced multi-currency trading bot designed to automate and optimize your trading operations. This expert advisor employs modern algorithms to analyze market conditions and execute trades, aiming to deliver consistent results while maintaining controlled risk levels. Key Features of Ins
This EA uses indicators to move the level line, the rules are if the price is below the level line then it is a buy signal, and if the price is above the level then a sell signal, trailing stop is to modify the stop loss, or to bring up a stop loss if previously sl = 0, this EA can accept manual orders via Android or home PC. if the condition is floating you can help this ea using manual orders which you think are good...
1.自動売買アドバイザー 2. EURUSD ペアで最良の結果が得られますが、他の商品の設定を調整することもできます。 3. m1 から m15 までの時間枠を使用します。 4. Expert Advisor は平均法を使用して取引を行い、スムーズかつ安全にボリュームを増やします! 5. 取引を指示するために、EA はローソク足分析を使用します。 6. 最も安全なオプションは、1500 ~ 2000 ドルごとに 0.01 ロットを使用することです 7. リスクを軽減するために、4 回の取引の後に 300 ピップ、6 回の取引の後に 500 ピップずつステップを変更することをお勧めします。 8.14年の経験を持つ保守的なアドバイザー! 9. 希望利回りから推奨入金額を検討! 10. 取引にはドローダウンが発生しますが、これは正常なことであり、ロボットは巧みにそれらを終了します。これには時間がかかります。 実際のアカウントの監視 - https://www.mql5.com/ru/signals/1679839?source=Site +Signals+My \\\\\\\\
Loncelot mt4   Loncelot mt4 is an automatic Expert Advisor that trades on the pair preferably: EUR/NZD Loncelot mt4 does not use deposit doubling, there is a stop loss and take profit Loncelot mt4 has been tested for more than 3 years in the strategy tester. It is based on the interaction of several indicators, including Rsi,wpr,cci and others   The recommended timeframe for the operation of this Expert Advisor is presented: M30, H1, H4, D1 Symbol, EUR/NZD, CAD/NZD, EUR/AUD Time frame M30, H
The automated trading system is developed based on the "Comfort Range" theory. According to this theory, the chart of each trading instrument has its own dynamically changing range of movement. The skill of determining such a range allows you to use this information as a leading indicator and predict price movement in the near future. The Rapture Expert Advisor determines the "Comfort Range" of the trading instrument and works in the direction of the expected future movement. The EA does not
The bot made 280% since January 1st 2025 to 20th November 2025, 47 total trades with a profit factor of 6.43, the bot needs to be used on Daily Timeframe, you set it and forget it.  It took me 3 years to finalise this bot, it runs with very low lot size and high RR, few and high quality trades. Try it out and thank me later.   Now running a 20% discount as a present for Christmas! PS. Past success does not guarantee future profits!
Golden Shower
Dmitriq Evgenoeviz Ko
Description of the Golden Shower advisor This advisor is designed for automated trading on the XAUUSD. Its algorithm is focused on short-term trades with rapid opening and closing of positions based on current market activity. Main functions and operating logic:     Short-term transactions     The advisor opens positions based on small price fluctuations, managing the time the transaction remains on the market.     Protective orders     Stop Loss and Trailing Stop levels can be set automatic
UZ Pro EA
Francisco Correa Junior
Upa Zvakawanda Pro EA is a state-of-the-art expert advisor that enhances your trading potential while evolving with the market. All decisions are based on higher time frames and executed on lower time frames, enhancing sniper-like precision for entry. Designed with an adaptive framework, this learning EA supports continuous updates and improvements to its algorithms. With Upa Zvakawanda Pro EA , you have a tool that consistently learns and refines itself, staying at the forefront of trading inno
推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我!!! 歡迎來到黃金收割者! 該 EA 以非常成功的 goldcarpaly 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了多個價格反饋,似乎沒有什麼能夠使其失敗。 沒有「神經網路/機器學習人工智慧/ChatGPT/量子電腦/完美直線回測」的銷售對話,而是一個真實而誠實的交易系統,基於經過驗證的開發和即時執行方法。 作為一名開發人員,我
The trading robot works on the basis of determining price consolidation zones due to three overlapping Ishimoku indicator readings with different settings according to the Golden Ratio number. This analysis method allows you to predict price movement with high accuracy. Each position has Stop Loss and Take Profit. Each position is controlled by a short trailing stop. Recommended trading tools, 5m: EURUSD, GBPUSD, USDJPY, USDCAD. Settings: MaxRisk - Percentage risk for the calculation of the tr
️ 主な特徴 市場のトレンド、モメンタム、ボラティリティ構造を自動分析 シグナルの整合性をインテリジェントに判断し、自動で取引を実行 動的な損益管理とリスク適応型コントロール 2種類のリスク管理モード:固定ロット / 資金割合 完全自動運用で手動介入不要 シンプルなパラメータ構成、使いやすく高い安定性 リスク管理 システムは2つのリスク管理モードを提供します: 固定ロットモード — 各取引の固定ロットサイズを手動で指定 リスク%モード — 口座残高に基づいてロット数を自動計算 リスク設定の推奨値: 安定型トレーダー:1%~3% 積極型トレーダー:4%~5% ️ 高ボラティリティ時の過度なリスクを避けるため、 最大5%を超えないことを推奨 します。 バックテストとリアルトレードの一貫性 多くのEAは、将来データの使用や過剰最適化により、バックテスト結果とリアル運用の結果に大きな差が生じます。 Gold Trend Pro は将来データを使用せず、過剰なパラメータ調整も行っていません。 バックテスト結果と実際の運用結果は非常に高い一致性を持ち、違いは主にスプレッドやスリッペ
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
News Scalps
Tolulope Aanuoluwapo Bello
Introducing News scalp: The Premier News Scalping Expert Advisor And Arbitrage In the realm of forex trading, seizing fleeting opportunities amid market turbulence demands precision and speed. Enter News scalp, the pinnacle of news scalping Expert Advisors (EAs) designed to excel in the high-stakes arena of news-driven trading. With its innovative features tailored specifically for rapid-fire scalping strategies,   News scalp   promises to revolutionize how traders navigate volatile market con
Moving Autumn MT4
Mr Fares Mohammad Alabdali
Easy and simple,  Moving A utumn MT4 . You're the boss, watch, smile. Recommendations: Currency pair: GBPUSD ,EURUSD ,XAUUSD. Use Currency : One . Timeframe: H4 Minimum lots: 0.15 Platform: MetaTrader 4  Profit : 250  -200  Minimum deposit : $1000 IMPORTANT:   It is very impoportant to use LOW SPREAD accounts for best results ! VPS recommended  Committed to Continuous Improvement: We are dedicated to continually optimizing and enhancing our to provide you with the best possible trading experi
Market Aurus X
Dmitriq Evgenoeviz Ko
Market Aurus EA – Institutional Breakout Impulse Market Aurus is a high-tech trading expert advisor specifically designed for trading XAUUSD (Gold) on the M1 timeframe. The algorithm is based on a strategy of dynamic price channels and impulse breakouts, used by professional traders to capture volatility during periods of institutional activity. Unlike most robots, Market Aurus doesn't try to "guess" the market direction. It enters only when the price confirms the strength of the move, breaking
I will support only my client. สำหรับลูกค้า Carry Expo Ai Robot with Current TF, Auto Trading, Current Chart, Any Asset Pairs, Any Brokers located time GMT+0, UTC+0, such as Exness broker He can recovery with level martingale and compare the position win and loss direction. Level 2 Steps Martingale and Hedging Duos position (Long and Short), No more indicator. For martingale step you can set via your money management and frequency trading too. Example1 No martingale   balance $1000, lot = 0.01
このプロダクトを購入した人は以下も購入しています
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Waka Waka EA
Valeriia Mishchenko
4.25 (48)
8+ years of live track record with +12,000% account growth: Live performance MT 5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Night Hunter Pro
Valeriia Mishchenko
4.38 (53)
EA has a  live track record  with many months of stable trading with  low drawdown : All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth . It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading a
Xyron Edge   is an automated breakout Expert Advisor designed to trade market structure using swing high and swing low levels. The EA places pending orders above resistance and below support areas to capture breakout movements while maintaining controlled risk management. --------- EA Setting :  EA Input Settings Guide Live Statistic :  Greyheaven.capital --------- Key Features Fully automated trading Dynamic support and resistance detection Pending order execution Spread filter Trading ses
MyGrid Scalper Ultimate は、外国為替、商品、暗号通貨、インデックス向けの強力でエキサイティングな取引ロボットです。 特徴: さまざまなロットモード: 固定ロット、フィボナッチロット、ダランバートロット、ラブシェールロット、マーチンゲールロット、シーケンスロット、ベット1326システムロット 自動ロットサイズ。 バランスのリスク、自動車ロットサイズに関連する 手動 TP または ATR を使用したテイクプロフィットとグリッド サイズ (動的/自動) EMA セットアップ ドローダウンの設定。金額またはパーセンテージでドローダウンを監視および制御します。 MARGIN チェックとフィルター。 取引セッションフィルター 手動取引/アクション用の画面上のボタン: 取引を開く、保留中の注文 (指値とストップ)、取引を削除する、取引を閉じる、すべての TP/SL オープン取引を削除する、SL= BE、SL +1 画面上のボタンで開かれた取引は EA によって処理され、管理されます。 フォーマットされたチャート。同時ローソク足がある場合は青色のローソク足とともに印刷します
Btcusd Grid
Ahmad Aan Isnain Shofwan
1 (1)
BTCUSD GRID EA は、グリッド取引戦略を使用するように設計された自動プログラムです。 BTCUSD GRID EA は、初心者にも経験豊富なトレーダーにも同様に非常に役立ちます。 使用できる他のタイプの取引ボットもありますが、グリッド取引戦略の論理的性質により、暗号グリッド取引ボットは問題なく自動取引を簡単に実行できます。 BTCUSD GRID EA は、グリッド取引ボットを試してみたい場合に使用するのに最適なプラットフォームです。 BTCUSD GRID EA は、通貨が不安定な場合でも理想的な価格ポイントで自動取引を実行できるため、暗号通貨業界にとって非常に効果的です。 この自動取引戦略の主な目的は、EA 内で事前に設定された値動きで多数の売買注文を行うことです。 この特定の戦略は自動化が容易であるため、暗号通貨取引によく使用されます。 グリッド取引戦略を正しく使用すると、資産の価格が変化したときに利益を得ることができます。 グリッド取引戦略が最も効果的であることが証明されています 。 暗号通貨の価格が変動するため。   -------------------
AccountUP Algo
Aurelian-eusebio Enescu
Short Description: Advanced, stable multi-order EA featuring dual-mode Trailing/Breakeven, hidden levels, and steady 80% Win Rate. Engineered for robust capital growth with tight ~10% Drawdown. Non-overoptimized. Long Description : AccountUP Algo is a premium, fully automated Expert Advisor engineered for stable, long-term equity growth without exposing your account to extreme market risks. Designed with a deep focus on capital preservation, this EA delivers a smooth, almost linear equity curv
Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the operating system (can match). This function allo
Alfascal
Vladislav Filippov
1 (1)
For the expert to work correctly, do not forget to upload the files to the directory of the agreement (... AppData \ Roaming \ MetaQuotes \ Terminal \ Common \ Files) Alfascal is a new model of a fully automated trading neuro-system, working on short timeframes. This system, which is based on a specialized neural network, is able to provide continuous training, transform the chaotic realities of the market into a specific system that can improve the quality of open transactions and absorb most
Big Hunter
Mehdi Sabbagh
5 (1)
The Multi Strategy Trading Robot This automated trading robot always uses stop loss. Big Hunter is specially designed to trade gold , but you can test it on other pairs since you have the access to the parameters. The robot uses different strategies like swing trading ,  momentum trading , position trading and more. It's backtested for the last 10 years under the harshest, simulated market conditions. Each trade has  unique SL, TP, Trailing stop, and breakeven. These parameters are variable a
The Avato is one of our standalone tools. (A Signal based on it will also be provided on Mt4 Market in the future). It is designed around a combined form of hedging and martingale techniques and uses sophisticated algorithms and filters to place the trades. It uses Stop loss and Take profit levels while Lot size is calculated automatically following the according multiplier settings. We consider it a toolbox for every seasoned trader. Made with Gold market in mind, it can be tested in other inst
Area 51 EA generates signals on different strategies. Has different money management strategies and dynamic lot size function. When a position is opened, it is equipped with a take profit and a stop loss. If the position becomes profitable, a dynamic stop loss based on the specified values (TrailingStep and DistanceStep) will be set for it and constantly trailed. This allows you to always close positions in profit.  If you want, that your manual opened positions will be handled by the EA, so you
Note : the spread value,  the broker's slippage and the VPS speed affect the Expert Advisor trading results. Recommendations: gold with spread up to 3, USDJPY with spread up to 1.7, EURUSD with spread up to 1.5. Results will be better with better conditions. The Ping value between VPS and the broker server should be below 10 ms. In addition, the smaller the broker's stop-level requirement, the better; 0 is the best. The Expert Advisor is based on a breakthrough system and carefully controls all
Introduction to Smart Trade Price Action Expert Advisor Smart Trade Price Action is an Expert Advisor (EA) with a flexible and diverse trading strategy, operating across 15 currency pairs on the All  timeframe. This approach enhances the chances of sustainable growth while reducing the risk of relying on a single pair or individual trades. Risk management is strictly controlled, ensuring the safety of your capital. With a simple setup, Smart Trade Price Action requires no specialized knowledg
With the Multiday Overlay Strategy EA you can trade in parallel all major/minor/cross pairs in Forex. This EA is rather unique, as it is capable to "follow the market", this means: no optimization is needed; the same set of input parameters is good for all pairs; you do not need to change the input parameters even if market conditions change. This 3 features mean that the EA is not "manually adapted" to a specific pair in a specific timeframe, as it normally happens when you optimize a pair with
Price Action EA for scalping. Open trades by bar height when bar height meet complex math calculations. Timerame is fundamentally M1 and works all forex symbols. Percentage trailing system. Time limitation. Autolot by percentage of balance. Settings by ea automatically. Close safety by time in minutes and close your order after x minute even if it is not in profit or loss by you. Set stoploss and takeprofit values automatically market price. Every major settings can be set automatically by robo
This EA works when spike is coming back. Executes a pending order according to spike and executes it on reversal. No standard indicators. No grid trading. No arbitrage. No curve fitting according to back-test results No Hedge   Very low Stop Loss Ratio  Can be started with $100 only, tested with 99.90% data Modelling quality . Recommendations: Developed for M1, EURUSD ECN Broker with 5 points Settings Spread: Need to be as low as possible. Trailing Enable/Disable: Either true or false. It decid
The CSM System is currently fully automated with all the special features and functions, controlled and regularly monitored. Its evolution, parameters and the individual algorithms are professionally evaluated and optimized by experienced development group of programmers who are developing new updated versions of system. Unlike the other systems, we focused to create the system where the backtesting successful results matching the real life situation. Our core lies in identification of these bi
注意重要です:通貨ペアでの取引にはこのシステムを使用しないでください。 注意:重要です:選択したブローカーの個別のセットファイルなしでこのシステムを取引およびテストに使用しないでください。 Marrykey株価指数 - ダフ屋システムは一目均衡表が6つの異なる戦略が装備されていると、このようなS&P500、ナスダック、ダ​​ウジョーンズ、Russell2000としてアメリカの株式市場の指数で動作するように主に設計されたハイブリッド組合せ論の上に構築されています。このシステムはM5からW1までのフレームで動作することができ、柔軟な設定が可能です。システムは任意の時間枠にインストールできますが、デフォルトではD1を使用します。 Marrykey株価指数 - 特定の時間フレームで選択した受注の多くを増やすことで失う取引を補償する機能を有している、この機能は、システムの数理統計学に基づいています。 Marrykey株価指数 - 自動リスク管理を備えています。システムの安定性に二つのパラメータによって制御(商品ごとのリスクと損失を停止)されますが、システムの安定性を追加したい場合は、ストップ
Win Sniper Follow
Nirundorn Promphao
1 (1)
I will support only my client. สำหรับลูกค้า Win Sniper Follow  is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The RSI indicator and an ATR-based filter are used for entries. Real operation monitoring as well as my other products can be found here :  https://www.mql5.com/en/users/winwifi/ General Recommendations The minimum deposit is 100 USD, the recommended timeframe is M15, H1, H4. Use a broker with good execution and with a spread of 2-5 points. A ver
This is a fully automatic EA based on price fluctuation, it uses principle of special recognition of price and balance. The parameters are simple and adaptable,the EA can deal with shock, trend, data, news and other types of market, and the performance is stable. Run timeframe: the results are the same in any period. Execution demonstration of the EA can be viewed in the links below: https://www.mql5.com/zh/signals/470101 Requirements and suggestions Please use this EA on EURUSD H1 timeframe, V
Chicken peck rices This is a short-term EA what based on price breakthroughs,and the parameters are simple and adaptable. Requirements: Run timeframe: H1; The type of account:ECN,spread of currency≤3,for example,EURUSD,USDJPY,and others. The minimum spread for order modification:0,it means that the minimum distance is zero between setting stop loss or take profit and current price. You must use the required accounts to ensure the reliability of profit. Input parameters: explanation=chicken peck
THE REVOLUTION Simple Trade is suitable for all type of traders whether you are a Swing Trader, Day Trader or Scalper. THE REVOLUTION Package consist of 3 EAs which combine into a Single EA which can create many stategies depend on the trading skills used/known by each traders. We provide AUTO_SETTING expecially for beginner or no experience investors which this AUTO_SETTING will trade to achieve 1000 Points or 10%/month, and for traders/investors who have experiences in trading can develop thei
Kryptosystém automaticky   Automatický kryptosystém je v súčasnosti plne automatizovaný so všetkými špeciálnymi vlastnosťami a funkciami, je kontrolovaný a pravidelne monitorovaný. Jeho vývoj, parametre a jednotlivé algoritmy sú odborne vyhodnotené a optimalizované skúsenou vývojovou skupinou programátorov, ktorí vyvíjajú nové aktualizované verzie systému. Na rozdiel od ostatných systémov sme sa zamerali na vytvorenie systému, v ktorom je spätné testovanie úspešných výsledkov zodpovedajúce situ
The Revolution Target Achiever FT -  Auto_Setting 1000 Points  Hi all Investors and traders, We've just updated this EA to a new version 3.0, which has a much more benefits , for Investors who want to run this EA 24 hours using vps can try the Auto_Setting to achieved 1000 Points or 10 %, for traders who have their own set up and target 1-100% can use the manual_setting, THE REVOLUTION Target Achiever is suitable for the investor who want to have a simple and ready to use Expert Advisor (EA). Th
Broker
Andrey Spiridonov
Broker Broker is a self-taught advisor. The algorithm of this adviser is constantly adjusting to the trading dynamics of the market. Advisor has a minimum number of parameters, which facilitates the work of beginners in the foreign exchange market. Advisor Benefits works on any time period works with any trade symbol no parameters that need optimization on each transaction, the adviser learns and adjusts to the current trading situation Advisor Parameters lot_persent = 10 - the volume of a trad
The REVOLUTION Great Achiever FT - AUTO 1000 POINTS / 10 %   ANOTHER EXCELLENT EA FOR YOU TO CONSIDER USING IT TO GROW YOUR INVESTMENT !!! THE REVOLUTION Great Achiever is suitable for the investors who want to have a simple and ready to use Expert Advisor (EA). This fixed EA Setting is modified and created from The REVOLUTION Simple Trade which has free customized Setting or Strategy Build EA which is suitable for experienced/advanced traders who have many ideas and strategies innovated  system
LeopardAdaptive is an advisor that works on the basis of candlestick analysis with simultaneous dissonance of three different embedded algorithms that determine the trend direction. The default settings of the advisor are optimal for working with four recommended trading instruments. The lot size or risk percentage can be selected by the trader. Every trade order has a stop loss and take profit. Recommended:  EURUSD 15m, GBPUSD 15m, USDCAD 15m, USDJPY 15m. Settings: Comment to order - comment t
Pisces EA
Nuttawut Khiawkiri
"Pisces Expert Advisor" Powered by FxGangster This EA Better work with GBPJPY and USD Pairs. this Expert Advisor has a Scalping, hedging and trend following  strategy when trade with wrong way, it will use hedging to fix it, and I have included too much indicator inside this EA, you can use all setting inside to set this EA, by the way you can look how many indicator and how to setting in my screenshots pictures. Live myfxbook : Pisces EA  ------------------- We provide Forex Analyst signals,
作者のその他のプロダクト
こんにちはます。  金融外国為替市場での取引のためのこのパネルについて少しお話ししたいと思います。 このパネルはMQL4プログラミング言語で書かれており、特定のポジションの成行注文を開くのに役立つように設計されています。 これは、通常の注文と保留中の注文の両方で動作します。 つまり、Buy、Sell、BuyLimit、SellLimit、BuyStop、SellStopなどの売り注文と買い注文を開きます。 また、グリッド注文を含む保留中の注文のネットワーク、つまり、保留中の注文を制限し、保留中の注文を一度に停止することもできます。 このパネルは、保留中の注文も閉じます。 今後の注文の設定は、パネルの上部にあります: 1. quantityは注文数(このパラメータは成行注文には影響せず、1つの価格で100注文としましょう)であり、ボタンを1回クリックするだけで開かれる保留中の注文の数を示します。 2. ロットは、ご注文が開かれる価格です 3. takeprofitはあなたの順序が利益と閉まる市場価格である。 4. stoplossは、お客様の注文が損失で終了する市場価格です 5. 距
This Expert Advisor uses Moving Average with certain parameters to open orders. He will always open the first deal to buy, but, with certain settings, he can only open deals to sell. To close orders, he uses a profit after which he will close all orders and start his work again. So far, it works as a Martingale and as a networker. extern double Lots                 = 0.20 ; - - From this parameter, which is the value of the currency at which you will to trade, the Expert Advisor begins its work.
The Breaking Trend ADVISOR opens the first position only to buy an order. Next, he looks at if the price goes to a loss, then at a certain loss distance he puts a pending Stop Order Sell for sale with an increased lot in order to cover the loss and fix the profit when closing buy and sell orders. And then the whole trade actually takes place with this logic. These are the settings of the advisor: -- LOT --- extern double lots                       = 0.2 ; - this parameter is responsible for th
このExpert Advisorは実際にはマーチンゲールであり、Magic1での買い注文に対してのみトレーリングで動作します。 他のすべてのオーダーでは、トローリングは機能しません。 EnteringMarketパラメータに応じて、EAが開きます 注文の頻度が少ないか、より頻繁に注文します。 これは、互いに移動平均の距離に依存し、この距離が大きいほど、 買い注文が開かれることはあまりありません。 戦略の意味は単純です:発注書が開かれ、価格がどのように動作するかに応じて、次のようになります。 我々は知らないが、保留中の注文を使用して、我々はそのさらなる動きを仮定し、予測し、 したがって、我々は獲得しようとします。 そして、はい、顧問は販売のためのマーチンゲールを開き、価格があれば注文を購入しません ロットは10.00以上に達し、10.00を超えるものはすべて4で除算され、3倍になります。 したがって、マーチンゲールから売り注文と買い注文の通常のグリッドアドバイザーに移動します これ以上の十ロット以下の運のための増加したロット。 extern double LotsBuy         
これはマーチンゲールシステムに取り組んでいる普通の顧問です。 平均価格の交点に応じて注文を配置します。 ここでは、例えば、第二以降の注文の開口部後の利益と終値と言わなければなりません 販売は、ポイントで測定され、カウントされません。 つまり、ストラテジーテスターでExpert Advisorを実行する必要があります そして、特定の通貨ペアなどのために適切にその設定を準備します。 あなたによってあなたに提供される資産の ブローカー。 extern double Lots= 0.01 ; -これは、最初の買い注文と売り注文が開かれるロット価格です。 extern int TakeProfit= 400 ; -これは、注文が利益でクローズされるポイント単位の価格です。 extern int TPB= 300 ;-これは、 複数の注文の終値が次のようになるポイント単位の価格です                                   発注書のための利益を使って。 extern int TPS= 400 ;-これは、 複数の注文の終値が次のようになるポイント単位の価格です      
アドバイザーはマーチンゲールシステムを使用して動作します。 彼は移動平均スケジュールに従って取引を開きます。 開くには、期間M15と異なる期間を使用します 価格計算期間と異なるシフトを持つ。 ここでは、例えば、第二以降の注文の開口部後の利益と終値と言わなければなりません 販売は、ポイントで測定され、カウントされません。 つまり、ストラテジーテスターでExpert Advisorを実行する必要があります そして、特定の通貨ペアなどのために適切にその設定を準備します。 あなたによってあなたに提供される資産の ブローカー。 extern double Lots= 0.20 ;-これは、最初の買い注文と売り注文が開かれるロット価格です。 extern int TakeProfit= 400 ;-これは、注文が利益でクローズされるポイント単位の価格です。 extern int TPB= 300 ;-これは、複数の注文の終値が次のようになるポイント単位の価格です                                    発注書のための利益を使って。 extern int TPS= 40
ここでは、このアドバイザーにはマジックナンバーがありません。 ある種の、これは不可能であるため、欠点です 複数のExpert Advisorsが互いに干渉するため、同じ端末で複数のExpert Advisorsを開きます。 しかし、 これは異なる端末では発生しません。 アドバイザーが動作し、そのロジックでそれらを使用するので、それらはコード自体にあります 専用の魔法の注文番号。 つまり、それはアドバイザーの仕事の論理の一部であり、それがなければ、方法はありません。 市場に参入するとき、顧問は現在の価格の異なる平均値とコントロールの大きな読み取り値を使用します 現在のバーを時間内に開くと、結論が出て買い注文または売り注文が開きます。 彼の取引のポイントは、常にトレンドに追いつくことです。 extern double Lots= 0.20 ;あなたのブローカーとあなたの口座の通貨でのロットの値を開く                                  最初の発注書。 extern int TakeProfit= 400 ;-購入のためのポイントで計算された利益を持つ注文の終値
このEAは最初のEAの続きですが、何倍も多くの注文を開きます。 どうして? 私が追加したので 保留中の注文を使用して彼にトレンド検索制御。 つまり、彼は価格がどの方向に動いているのかを覚えています。 どこで、なぜ彼は最後の注文を開いた。.. そして、このアドバイザーは常に正しい方向に動いています。 その唯一の欠点は、正しく設定してこれらの設定で動作させない場合です。 彼はまた、現在の価格の平均を考慮し、いくつかの結論に達し、結果を開きます 取引。 また、現在のバーの開口部を制御し、前に開かれた位置を分析します。 唯一の欠点は、現在の価格からのポイントで保留中の注文の開始を指定しなかったことです。 私がそれを改善するとき、私は間違いなくこのパラメータを設定に追加する可能性があります。.. extern double Lots= 0.20 ;-あなたのブローカーとあなたのアカウントの通貨でのロットの値を開く                                    最初の発注書。 extern double LotsStop= 0.08 ;-ストップ保留中の注文のロット値. e
この顧問の仕事の論理は非常に普通です。 市場に参入するには、異なる値の移動平均を使用します そして、これらの比率に基づいて、それは開き、常に最初の購入取引を開きます。 そしてすでに彼女と彼女の行動に基づいています 彼の行動の次のモデルを構築します。 その通り!... Expert Advisorでは、利食いとストップロスは使用されませんが、クローズされます 一定の利益を達成するための注文は、設定でそれ以下ではないことを示しています。.. たぶんもっと、しかし少なくはありません。 extern double Lots     = 0.2 ; これは、トランザクションのサイズ、つまりそのボリュームを決定する値です。 extern int Magic       = 1121 ; アドバイザーの注文のマジックナンバー。 // //--- // extern int EnteringMarketBuy = 100 ; これは、市場に参入するための2つの移動平均の間の距離です。 // //--- // extern int FirstTransition        = 500 ; 価格が次
これは、買い注文と売り注文のネットワークを配置する通常のパネルです。 このExpert Advisorは、設定で定義された利益注文を閉じます。 次に、ラダーと呼ばれるパラメータがあり、ラダーパラメータで示されたポイントだけ注文間の距離が増加し始めることを含みます(ここでは、メイン設定では10ポイントです)。これは、2次が10ポイント、3次が20ポイント、4次が40ポイントなどを意味します。 次に、これは設定にないため、このアドバイザーに何があるかを知る必要がありますが、このアドバイザーが提案した戦略のロジックに影響します。. アドバイザーが5つの注文を開くのは、ここの設定であるとしましょう。.. または購入のために。.. または販売のため。.. よかった.. ただし、注文を開くと、次のオープン注文のロットが以前にオープンした注文の半分だけ増加します。 つまり、設定で0.1ロットを設定すると、スキームに従って5つの注文が開き、現在の価格に近い最初の注文は0.1ロットの価格で開かれます。 第二に、与えられたステップのために、ここで50ポイントのステップは0.15ロットの価格で開きます。
яяяя 1 . "Opening Orders" extern double Lots      = 0.2 ;   extern int Slippage     = 50 ;   extern int Magic1       = 1911 ; extern int FirstBuy     = 100 ;   extern int NextOrderBuy = 300 ;   //--- //                       2 . "Order Opening Time" extern int Include   = 1 ; extern int TheSwitch = 15 ; //--- // 3 . "Increasing the lot" extern double mnogitb = 3.0 ; extern double mnogits = 2.0 ; //--- //                       4 . "Sell Order Network Settings" extern bool grids                   
zzzz "Opening Orders" ; extern double Lots             = 0.2 ; extern int Slippage            = 50 ; extern int Magic1              = 1911 ; extern int Magic2              = 1912 ; extern int FirstBuyOne         = 3 ; extern int FirstBuyTwo         = 0 ; extern int FirstBuyThree       = 1 ; extern int OpeningDistanceBuy  = 100 ; extern int NextOrderBuyOne     = 100 ; extern int FirstSellOne        = 1 ; extern int FirstSellTwo        = 3 ; extern int FirstSellThree      = 1 ; extern int OpeningD
このアドバイザーは、アイデアがマーチンゲールに似ていますが、まったくマーチンゲールではありません。 最初はそのロジックを隠したかったのですが、私はまだその特性を設定で部分的に開示しなければならないという事実を紹介します。プログラマーは、私の意見では、思考の論理において普通の人々とはわずかに異なるため、買い手がロジックに混乱しないように、そのパラメータを指定する必要があります。 そして、このため、個人的には、この顧問の仕事についての詳細を説明しようとします。 まず、私はこの顧問の口座残高の全額に制限を設定しており、顧問は確立された制限のこの量が彼が取引するのに十分であるまでのみ取引を開 ここでは、アドバイザーがドローダウンに入り、注文を開かない場合、マージンコール制限自体があなたを救うことはできませんが、彼はオープントレードで損失を被るので、アドバイザーは最終的にあなたのアカウントのすべての資本を排出することを知っておく必要があります。 そして、このため、貿易の顧問を提供する方が良い状況があります。 アドバイザの設定でLimit-1.0(one)を指定すると、制限を無効にできます。 
なぜヘッジ? このアドバイザーの戦略は、あなたの投資投資を保存しようとしますので。 そのため、この顧問はストップロスを使用せず、彼の戦略は勝利のみを目的としており、外国為替市場で発生する危機的な状況では、取引を開始して資本を節約しようとします。 XAUUSD通貨ペアのスクリーンショットグラフは、アドバイザーがヘッジ状態に入り、資本を節約しようとした時点で正確に表示され、同時にひどく稼がなかった(グラフ上のこれらの上向きの縞模様は、アドバイザーがどれだけ稼いだかを示しています。..)通貨ペアは一種の波、それが動く廊下を持っているので、プロセスの設定を変更することも良いことではありません。 もちろん、例外はありますが、価格はほとんど常に通常のコースに戻り、頑固に設定された方向に移動します。 彼女が今回何かを手に入れなかったら、彼女は間違いなく戻ってきて、彼女が手に入れなかったものを手に入れるでしょう。 これは人間の精神がどのように機能するかです。 したがって、賭けている通貨ペアの履歴に基づいてExpert Advisorを設定し、一定期間にわたって実行し、リスクを軽減し、道路に乗ることをお
指標はその作成において普通です。 これは、高値と安値を計算し、平均価格とそれらを相関させます。 それの唯一の美しさは、それが過去の日のパラメータと現在のパラメータを相関させることであり、それが私がそれを「その日」と呼んだ理由です。"これは、H1時間チャートの期間のために開発されました。 そして、それは彼が正しく行動する場所です。 設定では、パラメータを設定するのは簡単です。長さは平均価格を決定します。 パラメータ:primは、指標が平均価格を計算するために使用する価格を示します。 たとえば、2つの指標をチャートに配置し、1つの指標の低価格をプリムパラメータで指定し、もう1つの指標の高価格を指定すると、これら2つの指標がコリドーを作成します。 また、2つの指標を使用してストップロスを設定することもできます。 最初のパラメータがprim=Low、2番目のパラメータが=Medianであり、買い注文または売り注文の配置に応じて、ストップロスを中央線を超えて移動できるとします。 パラメータ:countは、最大値と最小値の計算を行います。 つまり、カウントするバーの数です。
この指標は、線を使用して特定のろうそくの測定値を構築する一種の戦略であり、トレーダーの計算と取引に役立ちます。 インジケーター自体は通常の移動平均であり、明るい色と暗い色の2色で着色されているため、特定の時点での現在の状況での市場行動の性質をトレーダーに示し、色の表示に応じて、この段階でどの取引が最もよく開かれているかを示します。購入するか、販売するかのいずれかです。 しかし、インジケーターの垂直線と水平線は、トレーダーに彼の結論を詳しく見る権利を与え、トレーダーが特定の時間に取引している場合はさらにそうです。このインジケーターは、インジケーター設定でトレーダー自身が設定した特定の時間の水平線で、キャンドルの最大値と最小値の開閉を計算し、これを分割しますパラメーターは、トレーダー自身が設定した一定期間の最大値と最小値の平均値を示す3行目で分割されます。 そして、トレーダーの便宜のために、私は日の取引で今日の取引の終わりを示す3番目の垂直線を追加しました。 インジケーターはH1期間正しく機能しています。 私は他の期間にそれをチェックしませんでした。 その後、私は無料でExper
Expert Advisorはレベルごとに取引されます。 つまり、レベルはアドバイザーの設定で設定されます。朝はレベルが計算されるとき、夕方は計算が実行されるときであり、アドバイザーが終値と始値の高値と安値を計算するのはこの期間中であり、その後は最大値より上のストップ保留中の注文を開き、最小値より下の1つを売ります。 アドバイザーの設定のnottradeパラメータは、アドバイザーが保留中の注文を開くまでの時間を担当します。 アドバイザーにはストップロスはありません。 Expert Advisorは、価格が損失している場合に前の注文を閉じるためにカウンター注文を開きます。 アドバイザーは、最大レベルと最小レベルの間の中央に正確にカウンター注文を開きます。 彼は増加したロットでこの注文を開きます。 どうして? ここでは、カウンター注文のロットが大きいほど、カウンター注文が注文を閉じるためのアドバイザーの設定にも示されている利益に主なものを閉じます。 しかし、カウンター注文が終値に達しず、市場価格がカウンター注文から再びロールバックされた場合、アドバイザーはメイン注文を閉じるのに役立つカウン
アドバイザーは市場の主要プレーヤーを計算し、主要プレーヤーが賭けをする準備ができているという結論に達し、この時点でアドバイザーはストップロスで売買するために2つの保留中のストップオーダーを開きます。市場には1人の主要プレーヤーがいない可能性があり、誰がどの方向に毛布を引っ張るのかわからないのですか?この時点で、アドバイザーは2つの保留中のストップオーダーを開き、ストップロスで売買します。! 現在の価格が逆転し、主要なプレーヤーが勝利にすべてを賭けた場合、後で特定の損失を被るよりもすぐに負けた注文を閉じる方が良いので、最小ストップロスを設定することをお勧めします。 アドバイザーの矢印、またはターミナルチャート上のファキルの魔法の杖は、トレンドの方向を示し、毎日のトレンドがどの方向に発展するか、または現在の価格による内訳が予想されるイベントを予測します。 アドバイザーは通貨ペアでうまく機能します:XAUUSDとbalance10,000のバランスで10年で400万ドル以上になりますが、アドバイザーは取引ごとに5.0ロットまたはtransaction5 これに基づいて、すべてを10で割った場
私はそれを少し変えました。 どうして? ストラテジーテスターを扱うのは少し難しいので、多くのブローカーは独自の個人的な履歴データを持っているため、あるブローカーのアドバイザー設定が別のブローカーの設定と一致しないことが判明し、アドバイザーを再構成してトランザクションの論理構造に入る必要があります。 ここでは、別のブローカーからの二つのスクリーンショットで、私はそれが動作するように必要なように、顧問の仕事を設定しようとしました、とあるブローカーでの顧問の設定は、別のブローカーでの顧問の設定と一致していない、とあるブローカーでの顧問の測定値は、別のブローカーでの顧問の測定値と一致していません。 だからここでは、道に沿って、踊りたい人は誰でも、私の興味を紹介します。 しかし、実際には、それはすべて、彼がこれらの問題に直面しなければならないので、誰がこの顧問とブローカーの彼の選択を得るかに依存します。 そこで私の意見ですが、お問合せくださいませダウンロードする必要があり、体験版のかたまりをビニール袋に入れ、お仲介確認し、図の思えなければいけないのですが、、描かれる結論は是非一度もしつこのアドバ
フィルタ:
レビューなし
レビューに返信