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

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.






















































おすすめのプロダクト
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
| 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
We do not want to make you confused with an imaginary high profit screenshot from Strategy Tester which has no relation/guarantee of future profit! We just want to tell you the real thing about our EA. TrendEx Pro has been developed to trade on Gold specially, combining multiple strategies algorithm to ensure Trend catching and trading on. It can identify both short and long trends and opens positions accordingly with excellent built-in risk management logic. There is no use of any dangerous met
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%自動的に
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
MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
торговая система с риском 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%) Убыточные сделки (%
Riders
Alexandr Nyukhin
5 (1)
GunLines RSI、ボリンジャーバンド指標を使用したグリッド取引システムで、部分的な決済とヘッジポジションを含む合計利益に基づいて決済されます。 シグナル https://www.mql5.com/ru/signals/1525221?source=サイト +プロフィール+販売者 通貨ペア: EURUSD、GBPUSD、EURGBP、AUDCAD、AUDNZD、NZDCAD。 時間枠: M15 アドバイザは、すべてのシンボルを取引するために 1 つのチャートにのみインストールされます ブローカーがサフィックス (CAD.с など) を使用している場合は、設定にサフィックスを入力する必要があります。 設定  固定ロット0.01  リスクロット リスク20  ロット値動的 10000  固定初回デポジット False  MaximumLot=10 最大ロット  ヘッジを許可 - True  取引可能な通貨ペア  ボリンジャーバンド 期間 20  RSI期間 - RSI期間30  最大 RSI 値 - 25  
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
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
The MelBar HedgeScalper FinTech RoboTrader MAXIMUM LOTSIZE : 100 Lots (US$10,000,000) per TRADE/POSITION FULLY TRIED, TESTED, PROVEN & VERIFIED ON A REAL LIVE TRADING ACCOUNT! TRY OUT THE DEMO! The Experienced Trader & Global Money Manager Version. 89% Trade Winning Percentage. 32.679% Profit Gain or ROI in 2 Trading Days. Profit Factor 3.59 Average Trade Length 1h 22m. The MelBar HedgeScalper FinTech RoboTrader is easy to use. Has the Advantage of Retiring Unnecessary "Debt
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
Redefining trading
Tran Thi Thu Huyen
3.5 (4)
Redefining trading is an MT4 expert advisor that will change the way you trade currency pairs. Developed by a team of experienced traders with over 10 years of trading experience in the forex market. IMPORTANT! After purchasing, please send me a private message to receive installation instructions and receive my top robots for free Promotional price $90. Price will increase by $200 for every 10 purchases. Final price is $1150. Redefining trading stands out from other expert advisors with its
TRADING PAIR: EUR/USD CANDLE TIME: 5M  BROKER: IG https://www.ig.com LEVERAGE: 1:200 NOVA EurUsd EA uses RSI , CCI , Stop Loss and it locks profits and sustains little drawdown by trailing its profits.   Bars in test     262084 Ticks modelled   75562166 Modelling quality       90.00 % Mismatched charts errors         4 Initial deposit 10000.00 Spread  Current ( 6 ) Total net profit         3417.50 Gross profit     33101.90 Gross loss      - 29684.40 Profit factor   1.12 Expected payoff 0.6
This is a grid Expert Advisor. It has several trading strategies based on the MACD indicator. The virtual trailing stop, stop loss, take profit levels can be set pips, in the deposit currency or as a percentage of the balance. Depending on the settings, different orders may be opened for diversifying risks. Their closure can be either an oppositely directed or unidirectional basket of orders. The orders grid is adaptive, only market orders are used in it. If the price moves the distance of Order
Moneyflow trader is an EA based on the MFI indicator. It  doesn't use martingale or grid. Open trades are based on MFI compared to mfi a spesified number of candels back in time. It closes trades by stoploss or a set of rules based on MA.  Check out my other products:  https://www.mql5.com/en/users/tkjelvik/seller#products EA is most suitable for traders who like a lot of action and trades.  Input parameters MAperiode: Moving average periode used by the close function mfiperiode: Money
EA Two MA
Ruslan Pishun
5 (1)
The Expert Advisor trades by two Moving Average lines. There are also two types of order closing: 1) if there is an opposite signal, 2) closing order by take profit, stop loss, and trailing stop. You can configure Moving Average indicators. Key Advantages Ability to work with fixed lot and MM. Six trailing stop modifications. Easy to use. Two types of order closing. The EA works with all brokers. Parameters General Order Type – trade directions. Use_Risk_MM – if true , lot size is increased
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings;  Recommendations Before using on real money, test the adviser with minimal risk on a cent tr
EA KOGORO TREND PROFITABLE HIGHER, FLEXIBLE AND SAFER EA KOGORO is a robot that operates on the most basic principle of the market: "Trend is Friend" combined with the improved Martingale principle with many times more safety than conventional Martingale. - EA KOGORO is a fully automatic EA robot for established pairs. - The principle of order balancing, low DD protects accounts better for high profits. - Opening and closing orders is really flexible. - Safer, high profit. - Manage
Red Hawk EA
Profalgo Limited
4.18 (17)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Red Hawk is a "mean reversion" trading system, that trades during the quiet times of the market. It runs on 9 pairs currently: EURUSD, GBPUSD, USDCHF, EURCHF, EURGBP, AUCAD, AUDJPY, EURAUD and USDCAD. Recommended timeframe: M5 Since this kind of strategy works best with low spread and fast execution, I advise using an good ECN broker. IMPORTANT
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with
HMA Trend Expert
Alexander Fedosov
5 (1)
HMA Trend robot for professional traders works with a set of Hull moving averages( HMA ). Advisor Parameters Use Trade Panel  — Use the visual panel to configure and trade robot. Lot  — Lot size for a market entry. Take Profit(points)  — Take Profit for an open order. Stop Loss(points)  — Stol Loss for an open order. Max Spread(0 - disabled)  — Maximum allowable spread at which you can enter the market. 0 - disabled. Magic number  — The magic number of the robot. EA Comment  — Comments of robot.
Trend Momentum
Gonzalo Melendi Mancebo
Trend Momentum use indicators as EMAs, MACD and an algorithm to detect trends. After first conditions as been reached, it computes crossing angles of the EMAs to set the trigger. Money management is aloud to set percentage lots or fixed lot. After TP1 is reached, SL is moved to Entry point in order to reduce risk. Parameters for Buy Trades and Sell Trades are separated for optimization process. Default parameters EURUSD - 1H.
Down Under
Thomas Bradley Butler
ダウンアンダーは1時間の時間枠でAUD/USDペアを取引します。 このEAはATRとOHLCをトレードします。 この時間枠でこのペア用にフォーマットされます。 複利は分で使用されます。 ロットサイズと最大。 ロットサイズ。 残高のパーセンテージは、勝ちトレードで合成されます。 バランスが変動すると、ロットサイズも変動します。 設定: mmリスク% mmロット 最大ロット 他に変更するものはありません。 これには、マーチンゲールまたはヘッジ機能はありません。 変更する他の機能は、取引している場合、AUD/USDのCFDのみです。 ブローカープラットフォームでこれを小数点以下で変更します。 リスク免責事項 先物、オプション、通貨取引はすべて大きな潜在的な見返りがありますが、大きな潜在的なリスクもあります。 これらの市場に投資するには、リスクを認識し、喜んで受け入れる必要があります。
Brexit Breakout (GBPUSD H1) This EA has been developed for GBPUSD H1.  Everything is tested for H1 timeframe . Strategy is based on breakout of the This Bar Open indicator after some time of consolidation. It will very well works on these times, when the pound is moving. It uses Stop pending orders with  FIXED Stop Loss and Take Profit . It also uses PROFIT TRAILING to catch from the moves as much as possible. At 9:00 pm we are closing trading every Friday to prevent from weekly gaps. !!!Adjust
Fundamental Robot MT4
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must b
The system applies Fibo levels. Apart from basic Fibo levels (23.6; 38.2; 50.0; 61.8; 100.0;), the EA features custom levels (34.0; 36.0; 64.0; 66.0;). You can decide the levels trading is to be performed from. Sample trade: when the market is bullish and the price rolls back to the levels (as we remember, we select the levels on our own), the EA opens buy orders. The opposite is true for sell orders. The EA can work in three modes. Each of the modes is a separate Fibo levels construction method
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 $
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
このプロダクトを購入した人は以下も購入しています
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2258186 Gold Trading AI is an EA that uses artificial intelligence technology to analyze data of many indicators. From there, EA will have the best option to enter orders. The biggest difference of Gold Trading AI is that the EA can control the Risk:Reward ratio much better than other EAs.That is possible thanks to a set of tools to control entry
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
CyNera MT4
Svetlana Pawlowna Grosshans
5 (1)
CyNera:あなたの取引、私たちの技術 シグナル:  CyNera マニュアルとセットファイル: 購入後にご連絡いただければ、マニュアルとセットファイルをお送りします 価格: 価格は販売されたライセンスの数に応じて上昇します 利用可能なコピー: 3部 金取引は、市場で最も変動の激しい金融商品であり、精密さ、徹底した分析、そして強力なリスク管理が求められます。CyNeraエキスパートアドバイザーは、これらの要素を巧みに組み合わせ、最適な金取引を実現するために設計された高度なシステムです。CyNeraの高度な戦略と技術は、経験豊富なトレーダーだけでなく、初心者にも、金取引がもたらす独自の課題やチャンスを乗り越えるための支援を提供します。 CyNeraは、金市場の複雑さに対応した信頼できるソリューションを提供します。適応性に優れたインテリジェントな戦略と、多時間枠分析、自動取引調整、そして正確なリスク管理などの高度な機能を組み合わせています。この柔軟性により、CyNeraは市場の急速な変化に即座に対応しつつ、長期的に資本を守るための強力なツールとなります。 シンボル XAUUSD
CoreX G MT4
Arseny Potyekhin
5 (5)
概要 CoreX G EAは、外国為替市場の複雑さに対応するために特別に設計された高度な取引システムです。最先端のニューラルネットワーク、高度な機械学習技術、および統合されたビッグデータ戦略を活用することで、CoreX Gは取引において卓越した精度とセキュリティを提供します。このエキスパートアドバイザー(EA)は、技術的な優秀さとプレミアムなカスタマーサポートにより際立ち、ユーザーが質問や懸念に常に対応できるようサポートします。 信号:   Live Signal 1 Live Signal 2 Blog: CoreX G EA この戦略は非常にユニークなので、ライセンスの数を制限して販売したいと考えています。そのため、販売を制限するために価格は着実に上昇します。 次の価格は 790米ドル です 。 ブローカー 任意のブローカー、 ECN / ZERO スプレッドを推奨 レバレッジ 1:20 から 入金 最低 200 ドル      シンボル XAUUSD タイムフレーム H1 ビッグデータ統合と取引戦略 ビッグデータはCoreX Gの戦略の基盤です。膨大な量の過去およびリア
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (5)
The EUR/USD Multi-Strategy Trading Robot MT4 is an advanced tool designed to optimize trading by combining 3 key systems:   daily trading, volume analysis, and Fibonacci   retracement levels. This robot works by integrating these different approaches to create a more dynamic and adaptable strategy for trading the   EUR/USD pair . EA adapts to different market conditions, this makes it an ideal solution for traders looking to enhance their trading strategy with a powerful, multi-faceted approach.
ChatGPT TurboによるAI駆動テクノロジー Infinity EA は、GBPUSD および XAUUSD 向けに設計された高度な取引エキスパート アドバイザーです。安全性、一貫したリターン、無限の収益性に重点を置いています。マーチンゲールやグリッド取引などの高リスク戦略に依存する他の多くの EA とは異なり、Infinity EA は、機械学習に組み込まれたニューラル ネットワーク、ChatGPT の最新バージョンによって提供されるデータ分析 AI ベースのテクノロジーに基づく、規律ある収益性の高いスキャルピング戦略を採用し、全体的な取引体験を卓越したものにします。 6,000 人を超えるメンバーが参加する MQL5 コミュニティ に参加して、他のトレーダーとつながりましょう。最新の製品アップデート、ヒント、独占コンテンツを常に入手しましょう。 MT5バージョン Infinity EAの設定方法 特徴 Infinity EA は AI 主導のスキャルピング戦略を活用します。 EA はリアルタイムのデータ分析のために ChatGPT-4 Turbo と統合されています。
Quantum Emperor MT4
Bogdan Ion Puscasu
4.88 (144)
ご紹介     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 Emperor EAを購入すると、Quantum StarMan Quantum Gold Emperorを無料で入手できます!*** 詳細についてはプライベートでお問い合わせください 新しい Live Signal V5:   ここをクリック MT5バージョン:  ここをクリック 量子EAチャネル:       ここをクリック 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル クォンタムエンペラー EA     は、
Z4scalp
Cence Jk Oizeijoozzisa
2.89 (9)
-------------------------------------------Z4SCALP の紹介 ------------------------------------------- Z4SCALP は、トレードごとに SL を持つ高度なトレーディング ロボットで、非常に小さな SL で、マーチンゲールなしで設計されています。 偽の利益 2週間利益を出し、限られた損失で消える。このエキスパートはそのような動作をしません。 私のエキスパートは忍耐を必要とします。2か月後、結果と複利がアカウントに表示されます。 急いで利益を上げたい場合は、このエキスパートを購入しないでください。 限定オファー: 1 つの製品を購入すると、もう 1 つが無料で提供されます。他の 3 つのバージョンは無料で利用できます ---------------------------------------------------------------------------------------------------------------- テスト戦略を信頼できない場合は、このアカウントを毎
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
Professional trading robot   Albatross : Your reliable assistant in the Forex market Albatross is an innovative trading robot designed to analyze the market using a specialized algorithm. This expert uses advanced methods to assess the strength and amplitude of price movements, which allows it to accurately predict trend reversals and make optimal trading decisions. Benefits of using Albatross Unique analysis algorithm: Albatross analyzes market data for a certain period of time, assessing th
Diamond PRO
Fanur Galamov
5 (21)
Sale 30% OFF! Only 3 copies for $215. Tomorrow price --> $299.  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
Golden Ai EA MT4
Mansour Babasafary
3 (5)
40% discount only for the next 5 buyes (Original price: 600 $) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert Golden Ai 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 Gold (XAUUSD) currency pair and 3 important time frames An expert who has been trained by artif
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here New V2.2 Live Signal Old Live Signal ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィ
AW Recovery EA
AW Trading Software Limited
4.36 (73)
Expert Advisor は、不採算ポジションを回復するために設計されたシステムです。 著者のアルゴリズムは、負けポジションをロックし、それを多くの別々の部分に分割し、それぞれを別々に決済します。簡単なセットアップ、ドローダウンの場合のローンチ遅延、ロック、他の Expert Advisor の無効化、トレンド フィルタリングによる平均化、負けポジションの部分決済が 1 つのツールに組み込まれています。 グループ全体でのみ注文をクローズするグリッド戦略とは対照的に、より低い預金負荷で損失を減らすことができ、損失をより安全に処理できるようにするのは、部分的に損失をクローズすることです。 注文が復元される方法: 1 EA は、選択した商品の他のウィンドウを閉じて、不採算の EA をオフにします (オプション)。 2 EA は、処理されたすべての注文のテイクプロフィットとストップロスのレベルをリセットし、対応する識別子を持つ保留中の注文を削除します。 3 EA は、利益を利用して不採算注文の一部をカバーし、総ポジション量を減らすために、すべての処理された採算性のある注文をクローズします
Bitcoin Robot MT4
Marzena Maria Szmit
4.79 (19)
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
Boring Pips MT4
Thi Thu Ha Hoang
5 (10)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くの EA は利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading S
XG Gold Robot MT4
Marzena Maria Szmit
4.48 (25)
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
way to starsは、市場のボラティリティが低い期間に低リスクの機会を活用して取引するために特別に設計された夜間スキャルピングeaです。この夜のスキャルピングeaは頻繁な取引のための小さな価格の動きをキャプチャすることに焦点を当て、それによって時間をかけて利益を蓄積します。1トレードあたりの潜在的な損失を抑制するために、厳格なストップロス対策を採用し、効果的なリスク管理を確保しています。way to starsは、ニューラルネットワーク、人工知能、chatgpt、または完全な直線バックテスト結果に依存しない、本物で正直な取引システムです。 MT5       マニュアル   signal :  https://www.mql5.com/en/signals/2260126   次価格: $ 699 setfile of Medium-low Risk  (signal's setfile) setfile of High Risk このeaの特徴: 適切な通貨ペア:GBPUSD 時間枠の読み込み:任意の時間枠です 格子なし、マーチンゲールなし、一度に単一の取引 リスクを低減するた
注意事項 EAには最大6つのエントリーポイントが含まれ、各取引のロット数は注文ロット数に6を乗じたものとなるため、ロット数が大き過ぎないようご注意ください。 ロット数のデフォルトの計算方法は資金のパーセンテージではありません。デフォルトの計算方法はレバレッジの影響を受けないため、リスクをより正確に管理できます。  リスク耐性を高めるために、1,000ドル以上の資金のご利用をお勧めします。 複数の通貨ペアを同時に使用するとリスクが蓄積される可能性があるためご注意ください。 こちらはMT5バージョンです。MT5バージョンは市場環境をより正確に再現できます。 MT4バージョンが必要な場合は、後日リリースいたします。 取引にはリスクが伴うため、こうしたリスクを理解し効果的に管理することが非常に重要です。 MT5バージョン: MT5へ移動 リアルマネーシグナル: クリックして表示 ライブシグナル: クリックして表示 現在、ゴールドEAを無料で提供するキャンペーンを行っています。購入後にご連絡いただければ、お受け取りいただけます。このキャンペーンは期間限定です。 実行の推奨事項 推奨通貨ペア:G
Waka Waka EA
Valeriia Mishchenko
4.31 (48)
EA has a live track record with 4.5 years of stable trading with low drawdown: Live performance MT5 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 p
Trend Predictor EA
AW Trading Software Limited
4.69 (13)
AWトレンドプレディクターEA-トレンドインジケーターシグナルAWトレンドプレディクターを使用して取引するエキスパートアドバイザー。インジケーター戦略TakeProfitおよびStopLossを使用します。マルチタイムフレームフィルタリングを使用できます。インジケーターによって計算された固定のStopLossまたはStopLossがあります。時間ベースの作業と平均化は機能的に可能です。 Instruction and description ->  HERE  / MT5 version ->  HERE   利点: 現在のボラティリティに基づいてインジケーターによって計算された固定StopLossまたは動的StopLossを使用します 時間通りに働き、滑りと最大の広がりを制限する機能を持っています あらゆる種類の取引商品で動作します 手動で開いた位置の追跡に適しています 任意の時間枠で動作します。M15以上の時間枠で動作することをお勧めします より高い時間枠または長期間のインジケーターによってトレンドをフィルタリングする機能が含まれています オプションで平均化を使用できます 入
The   Milioron   robot, developed for the Forex market, has significant flexibility and offers many mechanisms for maintaining a series of orders. It allows traders to automate and optimize their trading using built-in strategies and risk management approaches. Some of the main features and capabilities of the Milioron robot include: 1. **Flexibility of settings**: The robot provides traders with a wide range of parameters and settings that can be adapted to specific trading strategies and
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. Gold Scalper Trading is an EA that uses a complex trading methodology that includes cross-market analysis to find scalpable entry points with XAUUSD, one of the market's wildest running pairs. EA uses stop loss for all orders, only 1 order and does not use any dangerous trading methods: No grid, no martingale,... Gold Scalper Trading is one of the EAs I have used. using and trading with fund management account
Stock Indexes EA MT4
Marzena Maria Szmit
5 (1)
Stock Indexes EA is a sophisticated trading robot meticulously engineered to capitalize on the dynamics of the US30 . This expert advisor employs advanced algorithms and technical indicators to analyze market trends, identify potential entry and exit points, and execute trades with precision. A news filter has also been added to the robot, which prevents it from opening a position during important economic news , minimizing the risk. In robot, you can also specify the days and hours when the EA
Bonnitta EA
Ugochukwu Mobi
2.9 (20)
Bonnitta EA は、保留ポジション戦略 (PPS) と非常に高度な秘密取引アルゴリズムに基づいています。 Bonnitta EA の戦略は、秘密のカスタム指標、トレンドライン、サポートおよびレジスタンス レベル (価格アクション)、および上記の最も重要な秘密の取引アルゴリズムを組み合わせたものです。 3 か月以上のリアルマネーテストなしで EA を購入しないでください。ボニッタ EA をリアルマネーでテストするのに 100 週間以上 (2 年以上) かかりました。結果は以下のリンクで確認してください。 BONNITTA EA は愛とエンパワーメントから作られています。 少数の購入者のみを対象とした価格設定と著作権侵害アルゴリズムの実装です。 Bonnitta EA は、22 年間で 99.9% の品質を持つ本物のティックを使用してテストされ、実際の市場状況に近いスリッページとコミッションでストレス テストに合格しました。 Expert Advisor には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリッ
-   Real price is 1000$   - Limited Discount (It is now 299$) Welcome, Bitcoin Expert opens automatically trade with Highly profit, Fixed Stop loss. After purchase, You can receive  Gold Trade Expert  for  Free ! Contact me for this  BONUS ! No Martingale, No Grid, No Scam It is fully focused on exploiting the volatility of the Bitcoin market by trading the breakouts of support and resistance levels with  many AI conditions to find best position trades. The focus of the EA lies on safety, whi
AI NeuroX EA is an innovative trading advisor based on advanced artificial intelligence technologies, including neural networks and the Perplexity and GPT-4 platforms. This advisor has a unique ability to analyze and predict the dynamics of financial markets using deep learning and advanced algorithms. Thanks to the intuition that even the most experienced traders would envy, AI NeuroX EA is capable of developing unprecedented trading strategies, ensuring excellent performance. This advisor oper
Indicement MT4
Profalgo Limited
5 (2)
Indicementへようこそ! プロップファーム準備完了! -> セットファイルを ここからダウンロード ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   LIVE SIGNAL INDICEMENT は、 専門的な取引アルゴリズムの作成における私の 15 年間の経験をインデックス市場にもたらします。 EA は、最適なエントリー価格を見つけるために非常によく考えられたアルゴリズムを使用し、取引のリスクを分散するために内部で複数の戦略を実行します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリング ストップロスとトレーリング テイクプロフィットも使用します。 このシステムは、重要なサポート レベルとレジスタンス レベルのブレイクアウトをトレー
Ai Multi Trend MT4
Mansour Babasafary
5 (2)
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 An expert who has been trained by artificial intelligence for years to correctly recognize trends(wi
CyBRG RX Mt4
Arseny Potyekhin
5 (3)
CyBRG RXのご紹介:次世代のトレーディングアシスタント 最先端のトレーディングパートナーであるCyBRG RXとともに、トレーディングの未来に足を踏み入れましょう。 高度なニューラルネットワークの力を活用して、CyBRG RXは変化し続ける市場状況をかつてない精度で分析し、適応します。 信号:   ライブ信号 1 ライブ信号 2 この戦略は非常にユニークなので、ライセンスの数を制限して販売したいと考えています。そのため、販売を制限するために価格は着実に上昇します。 次の価格は 890米ドル です。 ブローカー 任意のブローカー、 ECN / ZERO スプレッドを推奨 レバレッジ 1:20 から 入金 最低 50 ドル      シンボル USDJPY タイムフレーム H1 なぜCyBRG RXを選ぶのか? 最先端のニューラルネットワーク :CyBRG RXは学習し進化する高度なAIアルゴリズムを駆使し、洞察に富んだ市場分析を提供します。 適応戦略 :金融市場の動的な特性に合わせて、CyBRG RXは戦略を継続的に調整し、常に一歩先を行くことを保証します
作者のその他のプロダクト
こんにちはます。  金融外国為替市場での取引のためのこのパネルについて少しお話ししたいと思います。 このパネルは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
この顧問の仕事の論理は非常に普通です。 市場に参入するには、異なる値の移動平均を使用します そして、これらの比率に基づいて、それは開き、常に最初の購入取引を開きます。 そしてすでに彼女と彼女の行動に基づいています 彼の行動の次のモデルを構築します。 その通り!... 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ロットの価格で開きます
フィルタ:
レビューなし
レビューに返信