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

BreakingTrend

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 the purchase of a lot when opening 
                                                  the first position, purchase orders.

extern double MultiplyingLotForFirstTime = 3.0; - this parameter answers by which number it will be increased 
                                                  (multiplied), the initial purchase lot to open a pending order
                                                  for sale, in order to pay off losses on an open purchase order
                                                  and when a certain profit is reached, close all orders 
                                                  (for purchase and sale), which are on the market and participating 
                                                  in the auction.
In a way, this is the strategy of this adviser: To open orders only for purchase, and by placing pending
orders for sale, where the trader usually puts his stop loss and if the price goes to a loss from the first open
order, then the trader has the opportunity to make money on this loss. In theory, this OrderCloseBy function is 
available in the mql4 language, but not all brokers allow it to be used in trading. Here the lot is multiplied by 
3.0 and will be equal to 0.6 lots when buying a pending stop order for sale, and TheFirstOrderToClose parameter will 
show which one at a distance from the first open buy order, a pending sell order will be opened if the current price
crosses this barrier set by you, in which you set this distance allowing your losses.
The pending sell order itself will be opened plus 50 points from the distance you specified in this parameter.

extern double IncreasingLotForSecondTime = 4.0; - this parameter answers by which number the current one will be 
                                                  increased lot (0.6) and will already be equal to 2.4 lots with an 
                                                  open pending order for sale and if, suddenly, the current price 
                                                  changes again the direction of the trend will begin to make a loss 
                                                  already on the open a sell order, but with all this, she will 
                                                  compensate for her if there is a loss with the first open buy order,
then we will try open a pending stop order to buy so that when a certain profit is reached, which is specified in the 
closelotprofit parameter, all orders in our market would be closed and we would start our tactics anew. It should
be noted here that the closelotprofit parameter works from the specified parameter and can be greater, but not less 
than the specified parameter. The pending stop order for purchase will be opened at the specified distance by the 
TheSecondOrderToClose parameter,when the current price is reached, a pending stop order for a purchase of 500 points 
from the current price will be opened and it will be designed for a sudden market fluctuation in the growth of 
purchase prices in order to open and immediately close all orders in our market in order to start your trading 
strategy anew. The TheSecondOrderToClose distance is indicated from an open pending sell order plus 500 points.

extern double IncreasingLotForThirdTime  = 3.0; - well, if everything goes wrong here, and everything doesn't go our 
                                                  way, then this parameter will be responsible for increasing the 
                                                  current lot for sale and which we will try to open at a distance 
                                                  from the very first us an open position to buy and, the lot will 
                                                  already be equal to 7.2 lots for sale. P.S: Here it is necessary 
to notice one feature that the deferred orders can be placed in a large lot, but this is not the fact that they will 
be opened in the market.

extern double IncreasingLotForFourthTime = 5.0; - well, this parameter can already be said to be a lifeline for 
                                                  the adviser and which will increase the current lot by the 
                                                  specified number and it will be equal to 36.0 lots for opening a 
                                                  purchase order. And this one the parameter interacts with The 
                                                  Fourth Order To Close parameter which indicates the distance from 
the first open order It is designed to open a closing buy order and close all orders and at the same time change
the trend for further trading, so that you can start all over again.


--- ORDER OPENING DISTANCE ---

extern int TheFirstOrderToClose  = 100; - this parameter is responsible for the distance to open a stop order for 
                                          sale plus 50 points from the first open buy order.

extern int TheSecondOrderToClose = 150; - this parameter is responsible for opening a pending stop order to buy plus
                                          500 points from an already open sell stop order.

extern int TheThirdOrderToClose  = 200; - This parameter is used to open a sell order and is calculated  
                                          the distance from the first open purchase order and located in
                                          the market.

extern int TheFourthOrderToClose = 5800; - this parameter is responsible for opening the last order of the ADVISER, 
                                           upon reaching which a purchase order will be opened in order to close
                                           all orders that are in the market and change the trend to start trading
                                           the operations are repeated.


--- CLOSE ---

extern double closelotprofit = 0.01; - this parameter is responsible for the profit at which all orders will be closed
                                       located in the market and opened by this adviser. P.S: it should be noted here
                                       such a feature that when the price fluctuates, orders will be closed more
                                       the specified parameter, but not less. That is, if you specify 10.0, then, for 
                                       now the amount of orders opened in the market will not be equal to 10.0 orders 
                                       will not be closed. 
But if the amount of orders is equal to the fluctuation of the market price: 10.01, 11.0, 12.0, 13.0 20.0, etc. then 
the orders will be closed. That is, the parameter indicates that orders will be closed at least this parameter. That 
is, if the amount of orders is 9.99, then the orders will not be closed.


-- TREND LINE ---

enum TREND - these are enumerations of parameters that indicate the period for which the trend will be calculated. 
{
   Period_M1   = PERIOD_M1,
   Period_M5   = PERIOD_M5,
   Period_M15  = PERIOD_M15,
   Period_M30  = PERIOD_M30,
   Period_H1   = PERIOD_H1,
   Period_H4   = PERIOD_H4,
   Period_D1   = PERIOD_D1,
   Period_W1   = PERIOD_W1,
   Period_MN1  = PERIOD_MN1
};
input TREND trendline; - in this parameter, you will just specify for which period you will calculate
                         the trend for the adviser to work and open the first order.

extern int Last  = 1; - this parameter indicates the minimum price of the bar. The last bar is listed here and its
                        the minimum price. If you set 0 to zero, then the calculation will take place at the current 
                        price.

extern int First = 20; - this parameter indicates the minimum price of the bar. The twentieth bar is listed here and 
                         its the minimum price. If you set 0 to zero, then the calculation will take place at the 
                         current price.

PS: Here it should be noted that the adviser begins to work on a downward trend. But it can be done that he will also
start trading on an uptrend. How? Swap the values. Where there is a unit, put twenty,
and where there is twenty, put one.



--- MAGIC NUMBER ---

extern int magic1 = 111; - this is the magic number of the first order.
extern int magic2 = 123; - this is the magic number of the second order.
extern int magic3 = 124; - this is the magic number of the third order.
extern int magic4 = 125; - this is the magic number of the fourth order.






















































おすすめのプロダクト
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Magic Grid
Aliaksandr Charkes
4.5 (22)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
史上最高の US500 ロボット Maximun alpha trader は、移動平均と、シンプルで信頼性の高い独自の高度な傾斜反転予測アルゴリズムに基づいています。 Maximun alpha trader EA 戦略は、いくつかの指標の組み合わせです トレンドに加えて、そのクラスでそれをユニークにするトレンドの枯渇を検出する独自のインジケーター、このインジケーターはユニークであり、秘密はまだ市場にリリースされていません. デモをテストするには、設定をコピーして画面キャプチャに貼り付けます Maximun alpha トレーダーはテストされ、20 年間にわたって 99.9% の品質で実際のティックを使用して、実際の市場条件でテストに合格しました。 ロボットはUS500用に設計されています MAGIC NUMBER を構成できるため、同じアカウントを複数の戦略に使用できます。各ボットはその MAGIC NUMBER の注文にのみ作用し、他のボットの注文は表示されません。 Maximun alpha trader には多くの制御入力があり、非常に用途が広く、専門家でない場合でも資本を保
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
TLFv1
Thanakorn Suphakornthongchot
Short-Term Fibonacci Trading Strategy with Clear TP and SL Strategy: Timeframe: M15 Indicator: Fibonacci Retracement Fibonacci Levels: Buy Entry: 38.2%, 50.0% Sell Entry: 61.8%, 78.6% TP/SL Placement: SL: Below/above the Fibonacci level used for entry Minimum Capital: $100 Instruments: Metals: Gold (XAUUSD) The recommended spread starts from 10 to 25, and should not exceed 28.
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (%
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Dr Trade Proをご紹介します。知的で一貫性のある取引のために精巧に設計されたEA(専門家アドバイザー)です。 当社の専門家アドバイザーは、トレンドの認識と正確な市場分析を利用して取引をシームレスに実行する精度を重視しています。Dr Trade Proは、各取引に戦略的なバックアッププランを備えており、収益性を重視し潜在的な損失を最小限に抑えています。 Dr Trade Proの特徴的な点は、異なる市場状況に適応できることであり、ニュースや市場の変動に強い、信頼性のあるEAの重要な特徴です。この適応性により、ボットは市場の変化をスムーズに検出し、アルゴリズムを更新し、大規模またはより波乱のある市場でも安定性と最適なパフォーマンスを確保します。 Dr Trade Proには取引に平均戦略が組み込まれていることに注意してください。このEAのスタイルに馴染みがない場合は、購入を検討する前にその機能を慎重に確認することをお勧めします。 Dr Trade Proの能力を探索して、取引体験を向上させるために設計された洗練されたEAをご覧ください。信頼性に対するあなたの信頼が私たちの最優先
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 mo
VANDORA FX USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 5 great strategies The EA can be run on even a $20
Bar Boss
Iurii Tokman
5 (1)
Bar Boss   Expert   Advisorは、FletBoxPushインジケーターを使用して市場を分析し、取引シグナルを決定します。インディケータはエキスパートアドバイザーに組み込まれており、チャートに追加でインストールする必要はありません。取引は、フラットの境界として定義されたレベルのブレイクアウトで行われます。損失の制限が使用されます。 アドバイザ設定の説明 TimeFrames-チャート期間、インジケーターの設定 色-インジケーターの設定であるフラットとして定義された価格領域の色 長方形-インジケーターの設定で、フラットとして定義された価格エリアを表示します ロット-トランザクションの開始ボリューム MagicNumber-注文のマジックナンバー Count_LOSS-ゼロ利益が設定される(ゼロに終了する)後の連続した負けトレードの数 FlatPips-フラットを決定するためのポイントの制限、インジケーターの設定 FlatBars-フラットを決定するためのバーの数の制限、インジケーターの設定 MinBarsClosedOutside-終値が特定のフラットレベルより
This automated trading robot uses the capabilities of the macd indicator to create a grid strategy. The algorithm creates a grid strategy at overbought and oversold levels and in times of high volatility. This makes it susceptible to all price fluctuations. The Close Money input is the total amount of earnings in the cycle. We define it as the total take profit amount in the cycle. It has the ability to open more cycles in short periods. However, you can use the robot in medium-term trading. Rea
Jet Punch
Didit Haryadi Saputra
Jet Punch is another best expert advisor for MT4,  can help you make money while you sleep by automatically entering and exiting trades. It trades by opening trades every day and closing them at the right time to ensure you always earn a profit. The software is very simple and can be used by both beginner and experienced traders.  Jet Punch was tested and has successfully passed the stress test with slippage and commission approximate to the real market condition. Recommendations: Currency pair
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
GOAL TIME is an expert advisor based on the notion of time, it studies the change of price according to time, and it finally detects the best time to execute a good order. The EA is based on an indicator that draws a price curve in relation to time, this curve is deduced by an algorithm that analyzes old data. Then, the EA exploits the generated curve and executes the correct order. In case of incorrect choice, the EA has the mission to limit the losses. After a thorough study of this strategy o
Future EA MT4
Mansour Babasafary
4.43 (7)
This expert is the newest expert of our team. We want to implement the latest market strategies in it. A long-term project of several years If you want to be a partner in the development of this expert, you can buy it at a very low price. An expert based on mixed strategies We will combine several strategies in this expert Price action, patterns, waves, maybe even artificial intelligence and... Attributes of Version 1.0: Can be used in the GBPUSD and USDCHF currency pair Can be used in
********** CHRISTMAS OFFER - LIMITED TIME ONLY 30$ ********** 6 COPIES OUT OF 10 LEFT AT $35  ---> NEXT PRICE $55 UPDATED v1.8 IS OUT ON MARCH 2022 " I built this EA based on my past trading experience, on my personal needs, on what I already had in my hands, on those useful functions that I needed. I am happy to share it with you at a very small cost considering the potential and the time dedicated to developing it. " PLEASE READ ALL THE DESCRIPTION BEFORE USE IT -  Grid EA with  selectab
This is a fully automatic trading robot for the EURCHF currency pair.  But this robot can be configured to trade for other currency pairs. TURBO SCALPER PRO using a trend following strategy based on MACD, Parabolic SAR and Moving Average indicator. The robot works in full automatic mode, on the M1 timeframe. The trader does not need to set it up for trading. Open EURCHF and attach TURBO SCALPER PRO only to EURCHF M1 using the default settings. Advantages of the TURBO SCALPER PRO :  We show y
Thank you for visiting us. We would like to introduce our new BLACK OUT EA which comes along with a moving average indicator for better trading This EA open and closes trades for you, no need to stress yourself. You can trade on any broker using any time frame . there are no restrictions!! You can easily increase your Lot size on the EA settings Backtest was done for two months. stay tuned for more !!!
移動平均インジケーターのトレーディングロボット 専門家のメリット: スキャルピング、マーチンゲール、グリッド取引。 1つの注文または注文のグリッドのみで取引を設定できます。動的、固定、または乗数のステップと取引ロットを備えた高度にカスタマイズ可能な注文グリッドにより、エキスパートアドバイザーをほぼすべての取引手段に適合させることができます。 ドローダウン回復システム、重複する損失注文とバランス保護 グリッド取引がリバウンドしない価格変動に対して脆弱であることは周知の事実ですが、注文回収システムのおかげで、アドバイザーはほとんどのドローダウンから抜け出すことができます。ドローダウンからの脱出は、最も遠い不採算の注文を、利益のある市場に最も近い注文とオーバーラップさせることによって実行されます。取引ロボットは、手動取引または他の専門家によって開かれた取引のために、アカウントの負けたポジションを回復するために使用できます。マジックナンバーですべての注文を受け取り、処理することができます。 オープニングフィルターを扱う。 すべての取引戦略には、
ET9 New on the Market, Launch promo! Only a few copies left at: $699 Next price: $799 Final price: $1599 The Best  Expert Advisor  on   XAUUSD   any timeframes! ET9  for MT4 Updated 4.70 !!   Important update: Merge Dragon Ball's H4 breakout strategy, Optimize parameters Include Free  ET1 for MT4:  https://www.mql5.com/en/market/product/113219 Dragon Ball MT4 Updated v1.70 !!  https://www.mql5.com/en/market/product/116521 Descriptions ET9 for MT4 is a powerful automated trading program with
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is n
EA MAGIC WIN is the advanced trading system which was tested for long on different market conditions with heavy load tests. Based on our custom indicator which is backed with mean reversion concept along with few other algorithm this products fits itself into the current market conditions and act accordingly.  Supported currency pairs: EURUSD, GBPUSD, AUDCAD, AUDNZD, NZDCAD Recommended TF: M15. Setfile can be downloaded from here : Click Here Live Signals https://www.mql5.com/en/signals/2
Super grid nineth (ninth) generation is another grid type EA on this huge forex system population, this EA not using any indicator to avoid any fake signaling to open or closing position orders. This EA will open pending order stop and limit in the first time EA run, then maintain all opened order with unique way to balancing account free margin and make equity growth. This EA have unique system not like anyother grid EA, with correct setup and run on max 3 pairs in one account, this EA capable
***        10 years profitable backtest on EURUSD (Jan 2010 - Jan 2020)    ***    ***        10 years profitable backtest on GBPUSD (Jan 2010 - Jan 2020)    ***   Just try it, in use by myself! USE ON 5 DIGIT BROKERS (1.12345)            5 MIN FRAME ONLY DEFAULT SETTINGS ARE  READY FOR USE            DESIGNED FOR   EURUSD GBPUSD others possible see backtests    The EA calculates promising entry points according a carefully developed algorithm, based on moving averages and many other facto
EA work for EURUSD in timeframe M15. USE stoploss, The account will never break out. Lot risk can set auto or fix: signals see also:  (auto,   Lot_Auto_Equity  = 100 ) https://www.mql5.com/en/signals/1785354 para setting: Lot_mode_select_Fix_or_Auto,when set to Auto,must use " Lot_Auto_Equity " value,example every 100usd , lot=0.01 Lot_Fix,Lot will be still one value,example 0.01 Lot_Auto_Equity,Associated to parameter " Lot_ mode_ select_ Fix_ or_ Auto " . enjoy.
MK_R It is based on contrary patterns for EURUSD.  Basically, it will entry using the condition of 1 buy wave and 6 sell wave of Granville's law. The EA does not use indicators, grid, martingale, arbitrage.  The EA has been proven to be profitable in the six months of 2020 and is particularly suitable for the current EURUSD market since mid-December 2020. Monitoring: https://www.mql5.com/en/signals/789229 Timeframe is M5. EA needs M1 chart,M5 chart,M15 Chart,H1 chart,H4 chart. Maxium Sp
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
マトリックスアローEAMT4 は、 マトリックスアローインジケーターのMT4 シグナルをチャート上のトレードパネルと手動または100%自動でトレードできるユニークなエキスパートアドバイザーです。 マトリックスアローインジケーターMT4 は、初期段階で現在のトレンドを判断し、最大10の標準インジケーターから情報とデータを収集します。 平均方向移動指数(ADX) 商品チャネルインデックス(CCI) クラシック平研アシキャンドル 移動平均 移動平均収束発散(MACD) 相対活力指数(RVI) 相対力指数(RSI) 放物線SAR ストキャスティクス ウィリアムズのパーセント範囲 すべてのインジケーターが有効な買いまたは売りシグナルを与えると、対応する矢印がチャートに印刷され、次のろうそく/バーの開始時に強い上昇トレンド/下降トレンドを示します。ユーザーは、使用するインジケーターを選択し、各インジケーターのパラメーターを個別に調整できます。 Matrix Arrow EA MT4 を使用すると、チャートのトレードパネルから直接、または100%アルゴリズム取引オプションを使用して100%自動的に
LAUNCH PROMO Next price:        $249 The price will be rise to limit the number of users for this strategy The "Trend BtD" Expert Advisor is a representative of robots trading breakout levels. Levels built automatically. The uniqueness of the advisor is that it work WITHOUT averaging and using the martingale principle. ALL orders have StopLoss and TakeProfit. VERY IMPORTANT: Always load SET Files for each pair! Adjust Lot size to yours deposit! HOW TO TEST: 1. Choose  H1  TimeFrame 2. Load my  
このプロダクトを購入した人は以下も購入しています
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 このシステムは、重要なサポート
FT Gold Robot MT4
Marzena Maria Szmit
5 (18)
Introducing the FT Gold Robot MT4, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, FT Gold is a forex robot meticulously crafted to optimize your trading performance with   XAUUSD pairs . With its advanced analytical capabilities,   FT Gold Robot   constantly monitors the gold market, identifying key trends, patterns, and price movements with lightning speed. The FT Gold Robot opens 5 positions every da
Gold Trade Pro
Profalgo Limited
4.59 (22)
プロモーションを開始します! 449ドルで残りわずかです! 次の価格: 599ドル 最終価格: 999ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Gold Trade Pro はゴールド取引 EA の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲール システムであり、市場が初期ポジションに逆らったときに取引を追加します。  それらは「ニューラル ネットワーク/AI/機械学習」として偽装されることがよくありますが、
HFT Prop Firm EAは、その独特のロゴからGreen Manとも呼ばれており、高頻度取引(HFT)戦略を許可するプロプライエタリトレーディング会社(prop firms)の課題や評価を克服するために特別に作成されたエキスパートアドバイザー(EA)です。 期間限定:HFT Prop Firm EAを購入すると、$198相当の無料ユーティリティがもらえます MT5バージョン: https://www.mql5.com/en/market/product/117386 HFTチャレンジパフォーマンスモニター($200から開始): ブローカー:IC Markets アカウント番号:66603384 サーバー:ICmarketsSC-Demo06 パスワード:Greenman ブローカー:IC Markets アカウント番号:21718043 サーバー:ICmarketsSC-Demo02 パスワード:Greenman 結果1: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4333.gif 結果2: https://c.mq
Hercules AI MT4
Aleksandr Chebotaev
5 (1)
Hello, my name is Alexander. I would like to introduce you to my new development, the Hercules AI advisor. The advisor is synthesis of Price Action Method and Artificial Intelligence technologies.  It doesn't use  any indicators. The EA works well on Gold  pair. The advisor has shown stable performance for more than 10 years. It does not use dangerous trading methods such as martingale, etc. All transactions are protected by take profit and stop loss. I tried to make the advisor as easy to insta
Quantum Emperor MT4
Bogdan Ion Puscasu
4.92 (131)
ご紹介     Quantum Empire EA は 、有名な GBPUSD ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Empire EA を購入すると、Quantum StarMan、Quantum Trade EA、または Quantum Gold Empire を無料で入手できる可能性があります!*** 詳細については個別にお問い合わせください。 新しい Live Signal V4:   ここをクリックしてください MT5バージョン:   ここをクリック 量子EAチャネル:       ここをクリック *プロモーション価格: $1199。 10回購入するごとに価格が10
GoldPulse AI
Babak Alamdar
4.29 (14)
バックテストではなく、実際の取引システムを購入してください。 Live Signal 1     Live Signal 2       Live Signal 3   この価格はプロモーション期間中の一時的なもので、間もなく値上げされます EA を 1 つ無料で入手 -> 購入後に連絡してください 現在の価格では残りわずかです。次の価格は -->> 1480 $  Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! これは、XAUUSD、XAUEUR、XAUGBP、XAUAUD、XAUJPY、XAUCHF、XAUSGD、XAUCNH などの完全なペアで金または XAU を取引する最初の最もスマートなロボットです。 私は毎日ニュースをチェックし、技術的、基本的、感情的な裏付けが得られる機会はすべて利用します。せっかちなトレーダーのポケットから患者のポケットにお金が落ちます! この市場では、賢い人々と競争することになります。彼らはあなたのお金を手に入れようとしており、あなたも彼らのお金を手に入れようとしています。最も正確
注意事項 EAには最大6つのエントリーポイントが含まれ、各取引のロット数は注文ロット数に6を乗じたものとなるため、ロット数が大き過ぎないようご注意ください。 ロット数のデフォルトの計算方法は資金のパーセンテージではありません。デフォルトの計算方法はレバレッジの影響を受けないため、リスクをより正確に管理できます。  リスク耐性を高めるために、1,000ドル以上の資金のご利用をお勧めします。 複数の通貨ペアを同時に使用するとリスクが蓄積される可能性があるためご注意ください。 こちらはMT5バージョンです。MT5バージョンは市場環境をより正確に再現できます。 MT4バージョンが必要な場合は、後日リリースいたします。 取引にはリスクが伴うため、こうしたリスクを理解し効果的に管理することが非常に重要です。 リアルマネーシグナル: クリックして表示 ライブシグナル: クリックして表示 MT5バージョン: MT5へ移動 現在、ゴールドEAを無料で提供するキャンペーンを行っています。購入後にご連絡いただければ、お受け取りいただけます。このキャンペーンは期間限定です。 実行の推奨事項 推奨通貨ペア
AW Recovery EA
AW Trading Software Limited
4.3 (70)
Expert Advisor は、不採算ポジションを回復するために設計されたシステムです。 著者のアルゴリズムは、負けポジションをロックし、それを多くの別々の部分に分割し、それぞれを別々に決済します。簡単なセットアップ、ドローダウンの場合のローンチ遅延、ロック、他の Expert Advisor の無効化、トレンド フィルタリングによる平均化、負けポジションの部分決済が 1 つのツールに組み込まれています。 グループ全体でのみ注文をクローズするグリッド戦略とは対照的に、より低い預金負荷で損失を減らすことができ、損失をより安全に処理できるようにするのは、部分的に損失をクローズすることです。 注文が復元される方法: 1 EA は、選択した商品の他のウィンドウを閉じて、不採算の EA をオフにします (オプション)。 2 EA は、処理されたすべての注文のテイクプロフィットとストップロスのレベルをリセットし、対応する識別子を持つ保留中の注文を削除します。 3 EA は、利益を利用して不採算注文の一部をカバーし、総ポジション量を減らすために、すべての処理された採算性のある注文をクローズします
Live signal :   TrendMaster FX The MT4 version : TrendMaster FX MT4   現在、EAの試用キャンペーンを実施中です。購入後にご連絡いただければ、「Gold Garden」または「AI TradingVision GPX」をご利用いただけます。詳細はお問い合わせください。 おすすめの通貨ペア: 英ポンド/米ドル(GBPUSD) 米ドル/カナダドル(USDCAD) ユーロ/米ドル(EURUSD) リスク設定: 積極的なトレーダーのための最大リスク設定は0.15です。 より保守的なトレーダーや、特に資本の大きい人は、0.05以下に設定することをおすすめします。 購入後: ユーザーマニュアルと注意事項を入手するために、私たちに連絡してください。すでに購入された方は、おすすめのユーザーマニュアルを参照してください。 安全で安定したEA: 当社のEAは、グリッドまたはマーチンゲール戦略を使用していません。各注文にはストップロスがあります。 大きな価格変動が発生した場合、ヘッジ保護があり、EAに不必要なリスクを加えることはありません
AI Gen XII EA This is an Expert Advisor with the latest use of Artificial Intelligence and Neural Networks. The EA runs on the top-of-the-line GPT-4o platform and also uses Advanced Discrete Fourier Imaging in ATFNet aligns the frequency spectrum of the input series, allowing for a more complete analysis of time series data. The EA also boasts trading on different strategies simultaneously and matching backtest trades and real trading, which is very important in its time.  Details about Advisor
Diamond PRO
Fanur Galamov
5 (15)
Diamond PRO is enhanced powerful version of Diamond for advanced traders. Pro version includes optimized cores, new impoved entry points filters, new multistage profit closure algorithm and сontains number of external control parameter that allows build and fine tune own tradind decisions and algorithms. The system provides more accurate market entries, analyzes and filters upcoming economic news, contains spread protection and an advanced position management algorithm. Main goal of Diamond PRO
ローンチプロモーション: 現在の価格で入手可能な限定数のコピー 最終価格: 990$ NEW: 無料で EA を 1 つゲット!   (2取引口座の場合) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files DayTrade Pro アルゴリズムへようこそ!   何年にもわたって市場を研究し、さまざまな戦略をプログラミングしてきた結果、優れた取引システムに必要なすべてを備えたアルゴリズムを見つけました。 ブローカーに依存しない スプレッド インディペンデント MT4、MT5、TDS2、および複数のブローカーで、実際の変数スプレッドテストを使用して非常に安定したバックテストを簡単に示します 何百もの異なる設定はすべて、テストで有益な結果をもたらします (もちろん、私は最高のものを選択しました!) 非常に堅牢なシステム -> 設定は交換可能であるため、USDJPY
Bitcoin Robot MT4
Marzena Maria Szmit
5 (9)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2234734 Limited price $299 is only for 10 first sales. After 10 sales, the price will be raised +$100. Final price for Gold Trading Algo is $1999. IMPORTANT! Contact me immediately after the purchase to get instructions and Manual Guide to set up EA. Forex EA Trading Channel:  Update the latest news from me Some Features: - No Martingale, N
Aura White Edition
Stanislav Tomilov
4.4 (5)
Aura White Edition   is unique Expert Advisor that continues the Aura series of advisors. The Expert Advisor is based on the engine of   Aura Black Expert Advisor , but with a number of changes and author's settings for currency pairs. Innovative methods of the programme's approach to trading, and promising performance results are possible thanks to the use of modern technologies and methods. Aura White Edition is a fully automated EA designed to trade currencies only. Working pairs EURUSD, GBPU
Aura Black Edition
Stanislav Tomilov
4.76 (17)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
Oracle MT4
Stanislav Tomilov
4.1 (10)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Ai Hybrid Robot MT4
Mansour Babasafary
5 (3)
Several experts in one expert With this expert, you can use several up-to-date strategies Enhanced with artificial intelligence Can be used in several popular forex currencies Can be used in the most popular forex time frames Without using high-risk strategies Attributes : Can be used in the EURUSD , GBPUSD , USDCHF , AUDUSD , USDCAD , NZDUSD  currency pairs Can be used in M30 , H1 , H4 , D1 time frames Has profit limit and loss limit Without using risky strategies like martingale or hedg
One Gold MT4
Stanislav Tomilov
4.67 (12)
Welcome to the world of next-generation investments with our unique trading robot for gold on the MetaTrader platform! Our proprietary developments represent the pinnacle of advanced data analysis computational platforms in the world of trading. One Gold EA is a genuine smart algorithm, operating at a level beyond human traders' reach. Its unique method is based on the principles of a neuroscanner and advanced technologies in neural networks, EA is capable of analyzing historical and current dat
ローンチプロモーション:30%OFF! 現在の価格で購入するために残っている販売は3つだけです。 次回価格: $1033 無料でUS30スキャルパーEAとQuantum Algo EAを入手 -> 購入後にご連絡ください Live signal:  https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql5.com/en/market/product/116010?source=Site+Market+Product+Page Prop Challenge取引履歴: https://www.mql5.com/en/blogs/post/757093 よくある質問: https://www.mql5.com/en/blogs/post/757094 Diamond Titan FXの
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くの EA は利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading St
強力な1分のスキャルピングシステム -  Xauusd通貨ペアの取引用の自動ロボットスキャルパー(ロボットは他の通貨ペアで取引されますが、ゴールドで最高の結果を得ます)。 推奨期間M1およびM5。 最小初期残高は500ドルからです。 このロボットは、価格のターニングポイントを自動的に決定し、トレンドの将来の方向にいくつかの繰延注文を設定します。 価格が正しい方向に展開されない場合、ロボットは遅延した注文を削除します。 しかし、価格が正しい方向に展開された場合、ロボットはオープン注文に伴い(変更)、最大の結果を得るようになります。 ロボットは2つのモードで動作できます。 ロボット設定の「ロット」パラメーターが= 0の場合、ロボットは各トランザクションのロットのサイズを自動的に計算します。 ロットのサイズは、最小限のリスクで最大の結果を得るために計算されます。 このモードでは、ロットのサイズはバランスの成長に比例して増加します。 「ロット」パラメーターが0.01に関係しない場合、ロボットは固定ロットサイズ= 0.01で注文を開きます。 このモードでは、ロットのサイズは常に固定されます
Dark Algo
Marco Solito
4.78 (58)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market trends .
Ai Multi Trend MT4
Mansour Babasafary
5 (2)
45% discount, until 2024.06.14 (for old customers and first buyers >>> Expert final price: $1000) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert trend hunter Combined with artificial intelligence Control the AI ​​with a variety of simple settings Without using dangerous strategies (all trades have a profit limit and a loss limit) Can be used in 6 main market currency pairs and 4 important time frames
FXMachine
Alexander Kozachuk
4.75 (12)
2020 年以降の実際のアカウントの統計 過去 13 年間のバックテスト 低ドローダウン戦略 複数通貨アルゴリズム あらゆるブローカーと互換性があります 実証済みのドローダウン制御システム 2020 年以降 のリアル口座での取引: ここをクリック USDCAD、EURGBP、GBPUSD、EURUSD での取引: ここをクリック EURGBP での取引: ここをクリック GBPUSD での取引: ここをクリック FXMachine EA の完全なバックテストはここからダウンロードできます: ここをクリック 当社について: FXMachine およびその他のロボットの開発とサポートは、 外国為替 分野で 14 年以上の経験を持つ専門チームによって行われています。 この 14 年間 の間、私たちは開発を改善し、取引に対するより優れた効果的なアプローチを見つけてきました。 もし私たちに 私たちが与えることができる最高のアドバイスは何ですかと尋ねられたら どの EA が優れているか、どの EA がそうでないかを判断するには、次のような答えが得られます。 最も
元の価格 $269 → 50%割引で $129 のみ ライブ結果:   Bio内のリンク Tiger Trade Pro - 自信を持って取引するための鍵! Tiger Trade Proは、Scalp-Trendシステムを使用し、他の類似したEAと比較して非常に有利なリスクを持つ実際かつ一貫して利益を上げるEAです。このEAは、取引スタイルに合わせてシンプルな設定と高度な設定の両方を提供しています。 カスタマイズされた設定:  あなたがシンプルな設定を好むか、高度なコントロールを好むかに関わらず、Tiger Trade Proは対応しています。高度なオプションには次のものがあります: トレーリングストップ:利益を保護します。 自動ロット:システムによってアカウントの純資産に基づいて取引サイズを調整します。 資産停止:資産範囲を定義して損失を最小化します。 時間取引:特定の時間に取引を実行。 ダイナミックステップ:市場条件に基づいて収益性を最適化します。 市場の状況に適応可能:Tiger Trade Proは異なる市場の状況にシームレスに適応し、柔軟性と強靭性を確保し
TopBottomEA's advantage: the first support for small capital work EA, real trading for more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of 12 hours or so, with a limit of $ 20 principal challenge backtesting ran through more than 10 years. Every interval of three days to increase the price of $ 100, the price process: 998 --> 1098 --> 1198...... Up to the targ
現在のプロモーション: 残り 1 個 349$ 最終価格: 999$ プロモーション ブログ で「 究極の EA コンボ パッケージ」 をチェックしてください 。   NEW: イーサリアムもサポートするようになりました! Bitcoin Scalp Pro は市場で唯一の取引システムです。  サポートとレジスタンスレベルのブレイクアウトを取引することにより、ビットコイン市場のボラティリティを悪用することに完全に焦点を当てています. EA の焦点は安全性にあります。これは、極端に低いドローダウンと取引の非常に優れたリスク/報酬比につながります。 EA は、ビットコインの実際の価格に基づいて、ストップロス、テイクプロフィット、トレーリングSL だけでなく、エントリーとロットサイズも計算する「スマート適応パラメーター システム」を内部で使用します。 つまり、ビットコインが 6000 または 30000 で取引されている場合、すべてのパラメーターの値が異なります。 EA は 2022 年 6 月以降、実際のライブ アカウントでフォワード テストされており、これまでのところ結果は
需要と供給の 原理に基づいた 完全自動アドバイザー 。完全に自動化された 需要と供給のアドバイザー を初めて提供しました 。 取引が 簡単に なり、取引戦略を完全にコントロールできるようになりました 便利なグラフィカル操作パネルを使用。 15,000 行を超えるコードを含む、非常に高品質の アルゴリズム取引 ソフトウェアが手に入ります。 EA ProBot の需要と供給のガイド Prop Firms を取引するための最良の方法は、資格のあるトレーダーになるためのすべての手順に挑戦します。 すべてのトランザクションは自動的に行われ、管理されます。 インプットを選択する だけで、リラックスして利益の成長を観察できます。 パネル入力パラメータ: 取引方向の 選択 (買いまたは売り) 取引したい時間枠 を選択してください 操作したいゾーンのタイプ を選択します (広、中、狭、超狭) 3つの資金管理オプション から選択 利益を得る取引 または 損失を得る 取引の数の後に停止するアドバイザーを選択してください 。 リスクまたは ATR に基づいて TP および SL
作者のその他のプロダクト
こんにちはます。  金融外国為替市場での取引のためのこのパネルについて少しお話ししたいと思います。 このパネルは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.
この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
フィルタ:
レビューなし
レビューに返信