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

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
"FX Smart Grid Pro " is an advanced robotic market analysis system that uses intelligent open and close algorithms with sophisticated filtering method to identify only the safest entry points. This is a system that we developed many years ago, constantly improving it. " FX Smart Grid Pro " is secure trading system that uses real market mechanics to maximize profits while keeping risk under control. " FX Smart Grid Pro "   is a 100% automatic forex robot working on 8 major currency pairs   EURUSD
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%) Убыточные сделки (%
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
Auto Scalper 13 - professional automatic scalper for GBPUSD, M5 timeframe. This bot automatically analyzes the market using 13 analytical indicators and trades completely automatically. Each time after the orders are closed, the robot can send you information about the state of the balance by email and push. 3 full-time programmers and 10 freelance programmers worked on the creation of this robot, which is a total of 13 people. The number 13 was mysteriously encountered throughout the developme
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+
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.22 (18)
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
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 $
Bar Boss
Iurii Tokman
5 (1)
Bar Boss   Expert   Advisorは、FletBoxPushインジケーターを使用して市場を分析し、取引シグナルを決定します。インディケータはエキスパートアドバイザーに組み込まれており、チャートに追加でインストールする必要はありません。取引は、フラットの境界として定義されたレベルのブレイクアウトで行われます。損失の制限が使用されます。 アドバイザ設定の説明 TimeFrames-チャート期間、インジケーターの設定 色-インジケーターの設定であるフラットとして定義された価格領域の色 長方形-インジケーターの設定で、フラットとして定義された価格エリアを表示します ロット-トランザクションの開始ボリューム MagicNumber-注文のマジックナンバー Count_LOSS-ゼロ利益が設定される(ゼロに終了する)後の連続した負けトレードの数 FlatPips-フラットを決定するためのポイントの制限、インジケーターの設定 FlatBars-フラットを決定するためのバーの数の制限、インジケーターの設定 MinBarsClosedOutside-終値が特定のフラットレベルより
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks o
このプロダクトを購入した人は以下も購入しています
The Gold Reaper MT4
Profalgo Limited
4.74 (31)
プロップしっかり準備完了!   (   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 (23)
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
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
Gold Trade Pro
Profalgo Limited
4.61 (23)
プロモーションを開始します! 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/機械学習」として偽装されることがよくありますが、
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
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
ローンチプロモーション:30%OFF! 現在の価格で購入するために残っている販売は3つだけです。 次回価格: $993 無料で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のさ
GoldPulse AI
Babak Alamdar
4.54 (13)
バックテストではなく、実際の取引システムを購入してください。 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 を取引する最初の最もスマートなロボットです。 私は毎日ニュースをチェックし、技術的、基本的、感情的な裏付けが得られる機会はすべて利用します。せっかちなトレーダーのポケットから患者のポケットにお金が落ちます! この市場では、賢い人々と競争することになります。彼らはあなたのお金を手に入れようとしており、あなたも彼らのお金を手に入れようとしています。最も正確
Live signal :   TrendMaster FX The MT4 version : TrendMaster FX MT4   618セール、期間限定で300ドル割引 現在、EAの試用キャンペーンを実施中です。購入後にご連絡いただければ、「Gold Garden」または「AI TradingVision GPX」をご利用いただけます。詳細はお問い合わせください。 おすすめの通貨ペア: 英ポンド/米ドル(GBPUSD) 米ドル/カナダドル(USDCAD) ユーロ/米ドル(EURUSD) リスク設定: 積極的なトレーダーのための最大リスク設定は0.15です。 より保守的なトレーダーや、特に資本の大きい人は、0.05以下に設定することをおすすめします。 購入後: ユーザーマニュアルと注意事項を入手するために、私たちに連絡してください。すでに購入された方は、おすすめのユーザーマニュアルを参照してください。 安全で安定したEA: 当社のEAは、グリッドまたはマーチンゲール戦略を使用していません。各注文にはストップロスがあります。 大きな価格変動が発生した場合、ヘッジ保護があり、EA
Ai Multi Trend MT4
Mansour Babasafary
5 (4)
32% discount, until 2024.06.24  (Original 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 An expert who has been trained by artifi
way to starsは、市場のボラティリティが低い期間に低リスクの機会を活用して取引するために特別に設計された夜間スキャルピングeaです。この夜のスキャルピングeaは頻繁な取引のための小さな価格の動きをキャプチャすることに焦点を当て、それによって時間をかけて利益を蓄積します。1トレードあたりの潜在的な損失を抑制するために、厳格なストップロス対策を採用し、効果的なリスク管理を確保しています。way to starsは、ニューラルネットワーク、人工知能、chatgpt、または完全な直線バックテスト結果に依存しない、本物で正直な取引システムです。 MT5       マニュアル   signal:   https://www.mql5.com/en/signals/2220466 次価格: $699 setfile of signal このeaの特徴: 適切な通貨ペア:GBPUSD 時間枠の読み込み:任意の時間枠です 格子なし、マーチンゲールなし、一度に単一の取引 リスクを低減するために、注文を小さい注文に分割します リミット最大ポジションと最大浮動損失率を通じてリスクを管理します
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
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
AW Recovery EA
AW Trading Software Limited
4.32 (72)
Expert Advisor は、不採算ポジションを回復するために設計されたシステムです。 著者のアルゴリズムは、負けポジションをロックし、それを多くの別々の部分に分割し、それぞれを別々に決済します。簡単なセットアップ、ドローダウンの場合のローンチ遅延、ロック、他の Expert Advisor の無効化、トレンド フィルタリングによる平均化、負けポジションの部分決済が 1 つのツールに組み込まれています。 グループ全体でのみ注文をクローズするグリッド戦略とは対照的に、より低い預金負荷で損失を減らすことができ、損失をより安全に処理できるようにするのは、部分的に損失をクローズすることです。 注文が復元される方法: 1 EA は、選択した商品の他のウィンドウを閉じて、不採算の EA をオフにします (オプション)。 2 EA は、処理されたすべての注文のテイクプロフィットとストップロスのレベルをリセットし、対応する識別子を持つ保留中の注文を削除します。 3 EA は、利益を利用して不採算注文の一部をカバーし、総ポジション量を減らすために、すべての処理された採算性のある注文をクローズします
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. 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, No Grid - The order is always protected by Stoploss - EA is using in-bu
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
注意事項 EAには最大6つのエントリーポイントが含まれ、各取引のロット数は注文ロット数に6を乗じたものとなるため、ロット数が大き過ぎないようご注意ください。 ロット数のデフォルトの計算方法は資金のパーセンテージではありません。デフォルトの計算方法はレバレッジの影響を受けないため、リスクをより正確に管理できます。  リスク耐性を高めるために、1,000ドル以上の資金のご利用をお勧めします。 複数の通貨ペアを同時に使用するとリスクが蓄積される可能性があるためご注意ください。 こちらはMT5バージョンです。MT5バージョンは市場環境をより正確に再現できます。 MT4バージョンが必要な場合は、後日リリースいたします。 取引にはリスクが伴うため、こうしたリスクを理解し効果的に管理することが非常に重要です。 リアルマネーシグナル: クリックして表示 ライブシグナル: クリックして表示 MT5バージョン: MT5へ移動 618セール、期間限定で300ドル割引 現在、ゴールドEAを無料で提供するキャンペーンを行っています。購入後にご連絡いただければ、お受け取りいただけます。このキャンペーンは期間
Diamond PRO
Fanur Galamov
5 (16)
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
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
XG Gold Robot MT4
Marzena Maria Szmit
4.44 (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
強力な1分のスキャルピングシステム -  Xauusd通貨ペアの取引用の自動ロボットスキャルパー(ロボットは他の通貨ペアで取引されますが、ゴールドで最高の結果を得ます)。 推奨期間M1およびM5。 最小初期残高は500ドルからです。 このロボットは、価格のターニングポイントを自動的に決定し、トレンドの将来の方向にいくつかの繰延注文を設定します。 価格が正しい方向に展開されない場合、ロボットは遅延した注文を削除します。 しかし、価格が正しい方向に展開された場合、ロボットはオープン注文に伴い(変更)、最大の結果を得るようになります。 ロボットは2つのモードで動作できます。 ロボット設定の「ロット」パラメーターが= 0の場合、ロボットは各トランザクションのロットのサイズを自動的に計算します。 ロットのサイズは、最小限のリスクで最大の結果を得るために計算されます。 このモードでは、ロットのサイズはバランスの成長に比例して増加します。 「ロット」パラメーターが0.01に関係しない場合、ロボットは固定ロットサイズ= 0.01で注文を開きます。 このモードでは、ロットのサイズは常に固定されます
ランチプロモ! 現在の価格で残りわずかです! 次の価格:693ドル 最終価格:1993ドル Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EAは、トレードとコーディングに豊富な経験を持つチームによって開発された次世代のスキャルピングロボットです。これは、米国(US30)で最も
Big Forex Players MT4
Marzena Maria Szmit
4.65 (23)
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   (p ositions are sent from our databa
Scalp Bot EURUSD
Abu Talha Md Mahi Uddin
5 (5)
Buy One Get one Live again.. limited time offer  Best EuroUsd EA in the market...101$ to 1040$ (940%)  in 12 months ....with 21% drawdown.. For Last 1 year real time performance :  Click here PUBLIC GROUP CHAT : Click Here EA Strategy Take scalp Positions in Higher Time Frame Trend with safe Pips Distance/ Major Pair EurUsd Then you can also use :AudUsd/GbpUsd/NzdUsd Major & Safe TF is H1 / Minor & Aggressive TF is M1 Minimum Deposit is 100$ / Secured Deposit is 300$ For each 300$ you can ad
Dark Algo
Marco Solito
4.79 (61)
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 .
Bonnitta EA
Ugochukwu Mobi
3.5 (20)
Bonnitta EA は、保留ポジション戦略 (PPS) と非常に高度な秘密取引アルゴリズムに基づいています。 Bonnitta EA の戦略は、秘密のカスタム指標、トレンドライン、サポートおよびレジスタンス レベル (価格アクション)、および上記の最も重要な秘密の取引アルゴリズムを組み合わせたものです。 3 か月以上のリアルマネーテストなしで EA を購入しないでください。ボニッタ EA をリアルマネーでテストするのに 100 週間以上 (2 年以上) かかりました。結果は以下のリンクで確認してください。 BONNITTA EA は愛とエンパワーメントから作られています。 少数の購入者のみを対象とした価格設定と著作権侵害アルゴリズムの実装です。 Bonnitta EA は、22 年間で 99.9% の品質を持つ本物のティックを使用してテストされ、実際の市場状況に近いスリッページとコミッションでストレス テストに合格しました。 Expert Advisor には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリッ
元の価格 $269 → 50%割引で $129 のみ ライブ結果:   Bio内のリンク Tiger Trade Pro - 自信を持って取引するための鍵! Tiger Trade Proは、Scalp-Trendシステムを使用し、他の類似したEAと比較して非常に有利なリスクを持つ実際かつ一貫して利益を上げるEAです。このEAは、取引スタイルに合わせてシンプルな設定と高度な設定の両方を提供しています。 カスタマイズされた設定:  あなたがシンプルな設定を好むか、高度なコントロールを好むかに関わらず、Tiger Trade Proは対応しています。高度なオプションには次のものがあります: トレーリングストップ:利益を保護します。 自動ロット:システムによってアカウントの純資産に基づいて取引サイズを調整します。 資産停止:資産範囲を定義して損失を最小化します。 時間取引:特定の時間に取引を実行。 ダイナミックステップ:市場条件に基づいて収益性を最適化します。 市場の状況に適応可能:Tiger Trade Proは異なる市場の状況にシームレスに適応し、柔軟性と強靭性を確保し
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (1)
需要と供給の 原理に基づいた 完全自動アドバイザー 。完全に自動化された 需要と供給のアドバイザー を初めて提供しました 。 取引が 簡単に なり、取引戦略を完全にコントロールできるようになりました 便利なグラフィカル操作パネルを使用。 15,000 行を超えるコードを含む、非常に高品質の アルゴリズム取引 ソフトウェアが手に入ります。 EA ProBot の需要と供給のガイド Prop Firms を取引するための最良の方法は、資格のあるトレーダーになるためのすべての手順に挑戦します。 すべてのトランザクションは自動的に行われ、管理されます。 インプットを選択する だけで、リラックスして利益の成長を観察できます。 パネル入力パラメータ: 取引方向の 選択 (買いまたは売り) 取引したい時間枠 を選択してください 操作したいゾーンのタイプ を選択します (広、中、狭、超狭) 3つの資金管理オプション から選択 利益を得る取引 または 損失を得る 取引の数の後に停止するアドバイザーを選択してください 。 リスクまたは ATR に基づいて TP および SL
RSF MT4 Pro
Van Hoa Nguyen
5 (6)
RSF MT4 PRO is specially developed for the EURUSD pair on the 1H timeframe. RSF MT4 Pro is a high frequency trading advisor. EA uses many algorithms to confirm short-term trends, medium-term trends and implements many internal strategies to spread risk in trading. Backtests show a very stable growth curve, with tightly controlled declines and rapid recovery. This EA has been stress tested for the longest period of time available for EURUSD, using multiple price feeds for different brokers and
作者のその他のプロダクト
こんにちはます。  金融外国為替市場での取引のためのこのパネルについて少しお話ししたいと思います。 このパネルは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
フィルタ:
レビューなし
レビューに返信