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

SpiderNotKnowWeb

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. That is, the first 
                                               one that opened an order in the terminal will be opened for $ 0.20 
                                               if you have an account in in dollars and a purchase order will be 
                                               opened.
Next, the adviser will work on the martingale principle and the parameter will be responsible for increasing transactions 
MultiplierBuy. If the price threatens to lose, then with the StepBuy parameter you can set exactly where and at what
distance from the opened unprofitable order to open another purchase order, which would thereby compensate
for the loss incurred by the order that was opened before the newly opened order. P.S.: Here it should be noted that this parameter
cannot equal "Zero - 0", since multiplication is going on in the code and in this case there will be an error and the second and subsequent
orders, if the current price goes to a loss, will not be opened. But if you want your advisor to
if I traded one lot and opened a network of orders, then this parameter should be made "One - 1".

extern double Lots2                = 0.70; - Here it is necessary to say a little about the trading strategy of the 
                                             adviser itself. He opens either a network or martingale orders only for 
                                             purchase. The parameter WhenToClose determines after which
order a counter sell order with an increased lot will be opened, since the current price is moving at a loss, in order
to close all the ADVISER's orders when a certain amount is reached and start trading anew from scratch. Here, in the settings, it is worth, 
that after the second order, a sell order will be opened. And if the current price is still moving in
the direction of loss, then when the DistanceToClosing parameter is reached, in points, a sell order will be opened, at a price
multiplied by the IncreasingClosingAmount parameter, that is, by ten to 10, at a price of $ 2.00. And when the
profit is reached, the amount set by the - CloseTOTAL parameter, here 10 cents or more, the Adviser's orders will be closed. And the parameter 
Lots2 is responsible if this condition is not met and the current market price changes its trend and goes against 
closing orders and a margin call will begin to threaten, since the sell order was opened with a large lot, then, after the very
first buy order, the current market price, reaching the distance specified by the BuyClosure parameter, we will open 
again, a buy order at the Lots2 price, in the hope that our orders in the bag will cover the losses of an open sell order and
when a certain amount is reached, our orders will be closed with a profit specified by the CloseTOTAL parameter.

extern double Lots3                = 4.00; - This parameter of the ADVISER is responsible for the lot of the opened 
                                             order, if the current market price will change its trend again and go 
                                             to a loss already to all open orders in the market, then we will try to 
                                             change the situation in 
We will open a sell order at this price and the ADVISER will close all orders when the parameter
specified by us in CloseTOTAL is reached.

extern int Slippage                = 50;  - this is a parameter of slippage from the current price.
extern int Magic                   = 401; - This is a magic number
extern int Magic2                  = 402; - This is a magic number
extern int Magic3                  = 403; - This is a magic number
extern int Magic4                  = 404; - This is a magic number
                                            P.S: You can open two or more Expert Advisors in the terminal. But, 
                                                 no matter what they do not interfere with each other in their work, 
                                                 it will be necessary to change each adviser
                                                 all the magic numbers so that they do not look like each other, since
                                                 The ADVISOR uses separate magic numbers for each operation.
//---
extern int BeginningSELL           = 6; - this parameter determines after which open purchase orders will be placed 
                                          A sell order is being opened. (In this case, it won't be open, so
                                          how the order closing events will occur).

extern double StartMultiplierSell  = 2.0; - this parameter is a multiplier and answers at what price it will be opened
                                            a sell order. Here he doubles it, that is, Lots = 0.40;
//---
extern int StepBuy                 = 600; - this parameter is responsible for the items for which the next one will 
                                            be opened a buy order if the price goes to a loss.

extern int StepSell                = 100; - this parameter is responsible for the points for which the next order 
                                            will be opened for sale if the price goes to a loss.

extern double MultiplierBuy        = 2; - this parameter is a multiplier, responsible for increasing the lot, at what 
                                          price it will be buy an increasing buy order.

extern double MultiplierSell       = 2; - this parameter is a multiplier, responsible for increasing the lot, at what 
                                          price it will be buy an increasing sell order.
//---
extern double CloseTOTAL           = 0.10; - this parameter is responsible for the amount, profit, reaching which 
                                             and more The Adviser will try to close all the orders in the market with 
                                             this an advisor.

extern int BuyClosure              = 1000; - this parameter is responsible for the logic of operation, and if there 
                                             are no orders closed for profit and the price will go up to the moose 
                                             and change its trend,then, after overcoming the current market price of 
                                             the first purchase order by the specified distance in points, a purchase 
order will be opened in order to overcome the sum of the purchase orders that have already been opened loss by an 
open sell order and close orders with a profit specified by the CloseTOTAL parameter.

extern int SellClosure             = 200; - this parameter is responsible for the distance to open a sell order,
                                            if the current price changes its trend again and goes to the bears and, 
                                            what would try to close orders again with the profit specified by the 
                                            parameter CloseTOTAL.

extern int WhenToClose             = 2; - this parameter determines after which purchase order the order will be 
                                          opened to sell in order to close all orders in the market after reaching
                                          the specified price and more by the CloseTOTAL parameter.

extern int DistanceToClosing       = 50; - this parameter determines at what distance from the order it will be 
                                           opened a sell order to close all orders in the market.

extern double IncreasingClosingAmount = 10; - this parameter is a multiplier and increases the Lots in order to 
                                              the opened sell order could close all open orders
                                              for the purchase.



おすすめのプロダクト
5 copies are left for $149. The next price is $189. Griddy Calm EA uses the classical strategy of open orders in trend direction at the best price. At trend turning it implements the soft averaging grid. Big dynamic step, small lot multiplier and equity stop loss makes the grid strategy safe enough for long term trading. The key feature of the EA is an algorithm of partial closing which uses small rollbacks of price to gradually close bad trades. Moreover, this strategy is absolutely universal
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
FX Airtaye  is an advanced grid system that has been working consistently for many years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit. FX Airtaye      is a 100% automatic Forex robot working on 8 major currency pairs:   EURUSD, GBPUSD, USDJPY, USDCHF
ロボットは、ボリンジャーバンド指標のラインをブレイクする取引戦略を使用します。 この戦略の本質は、インジケーターラインの継続的な分析と、そのラインの最も効果的なブレイクアウトポイントの検索にあります。 価格がいずれかの方向で指標線を突破すると、ロボットはその方​​向で取引を開始し、それに追従し始めますが、ロボットは指標線が突破されるたびに取引を開始するわけではなく、指標線が突破された場所でのみ取引を開始しますそれが最も効果的であると考えられます。 これは、世界中の何千人ものトレーダーによって長年にわたってテストされてきた、非常に信頼できる戦略です。 これは、GPTchat が学習のために提供する実用的なスキャルピング戦略の 1 つです。 人工知能は、これが M5 時間枠で最も効果的な取引スキャルピング戦略の 1 つであると信じています。 私たちは人工知能にも同意し、この戦略の実際の有効性を確認します。 ロボットの利点: マーチンゲールは使用しません。 ロットサイズはトレーダーが設定で指定します。 残高が10%増加するごとにロットが10%増加します ロボットは適応型リスク管理機能を
LRY FX Robot is a fully automatic trading Robot, which makes orders according to RSI indicators. EA operating environment The EA can be run in any currency, but the best test is EURUSD for H1, with a minimum of $1000. Parameters Lot - lot size for pending orders. MaxLotSize - the maximum number of open orders. InterestAmount - As the balance increased, so did the number of orders Star Hour - the EA operation start hour. End Hour - the EA operation end hour. LotMultiplier - lot multiplier for the
Dr Trade Proをご紹介します。知的で一貫性のある取引のために精巧に設計されたEA(専門家アドバイザー)です。 当社の専門家アドバイザーは、トレンドの認識と正確な市場分析を利用して取引をシームレスに実行する精度を重視しています。Dr Trade Proは、各取引に戦略的なバックアッププランを備えており、収益性を重視し潜在的な損失を最小限に抑えています。 Dr Trade Proの特徴的な点は、異なる市場状況に適応できることであり、ニュースや市場の変動に強い、信頼性のあるEAの重要な特徴です。この適応性により、ボットは市場の変化をスムーズに検出し、アルゴリズムを更新し、大規模またはより波乱のある市場でも安定性と最適なパフォーマンスを確保します。 Dr Trade Proには取引に平均戦略が組み込まれていることに注意してください。このEAのスタイルに馴染みがない場合は、購入を検討する前にその機能を慎重に確認することをお勧めします。 Dr Trade Proの能力を探索して、取引体験を向上させるために設計された洗練されたEAをご覧ください。信頼性に対するあなたの信頼が私たちの最優先
This scanner is a tool used to support trading with the Ichimoku method. Its basic features are: 10 trading setups implemented in accordance with the Ichimoku technique, the possibility of simultaneous scanning, all financial instruments available on the platform, the possibility of simultaneous scanning, in all timeframes available on the platform, two trading modes available: Manual and AutoTrading, the ability to open in Manual mode from the level of the chart, the ability to determine the si
TugOfWar
Erwin Rustandi
4.33 (3)
Expert Advisor Description EA TugOfWar will open both buy and sell positions at different times according to the triggered signal, the most positions and in accordance with the market direction that will win and profit.  Profit target per war is 1% to 5%. Warmode normal = Longterm strategy Warmode extreme = Shortterm strategy Parameter Description StartTrade =  Time to start trading / open position EndTrade =  Time to end trading / open position WarMode =  1 -> Normal, 2 -> Extreme (lots of t
FREE
MTF顧問クリスタリウム平均はプログラマーアレクサンダー Gavrilinと一緒に作成されました。 このシステムは十分に自動化される。 マーチンゲールじゃない ここで働くの平均。  これは、すべての通貨ペアで動作します。  EAは、三つのルールを使用しています:1)私たちは、トレンドにのみ取引、2)"誰もが販売しているときに購入し、誰もが買うときに販売する"、3)価格は常に  MTFのQristaliumの平均は作り付けの表示器を使用して多数の時間枠のこれらの規則をろ過する。 市場と傾向は経済的および政治的ニュースの影響を受けているので、EAは設定SL(私は100をお勧めします)で無効にして有効にすることができる平均 EAでは、ロットを変更することができます,テイク利益の大きさを設定します(TPは損益分岐点から計算されたとき-あなたはまた、設定に変更するこ また、作業期間と時間フィルタを変更することができます。  推薦された働く期間D1。 フィルタH1とH4。 100を平均するステップ。 預金1000$、ロット0.01 設定: 作業時間  修正ロット(
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
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
PundFirst
Fabrizio Pierantoni
Pound First Expert advisor. 3 moving averages combined with a MACD oscillator to try to intercept the short-term signal reversal. The expert advisor was designed for the GBP/USD pair on Timeframe H4. Exiting the position occurs automatically or by setting a stop loss (optional). No further optimizations are necessary . VPS service recommended. Happy Trading.
The expert implements the strategy of "catching tails", earning on inevitable corrections after the beginning of a powerful trend. For the beginning of the trend, the moment of occurrence of a strong directed candle is taken. The order is opened in the opposite direction from the trend. If the price continues to go on a trend, then the level of the planned profit is shifted by implementing a grid of warrants, waiting for an inevitable correction or reversal of the trend. The input parameters i
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible
H4 Trend
Kenneth Parling
5 (2)
序章 H4トレンド外国為替取引ロボット-トレンドの動きをキャッチするためにH4チャートを取引するように設計された使いやすく完全に自動化された取引ロボット。移動平均インジケーターを横切ることによって生成された売買シグナル。注文は常に仮想ストップロスを使用し、利益を取り、トレーリングストップに加えて、資金を確保するためにサーバー接続が失われた場合に備えて次のハードストップを使用します。 特性 マルチンゲール、ヘッジ、その他の危険なテクニックはありません 低ドローダウン 安全で安定した取引 最適化が容易で、TP / SLとトレーリングレベルに加えてインジケーターに焦点を当てる バーチャルテイクプロフィット、ストップロス、トレーリングストップレベル 計算されたATR(平均真の範囲)は利益とトレーリングストップを取ります リスク評価-固定ロットまたは動的ポジションサイズパーセントで取引する(動的は常に推奨) ADXトレンド強度フィルター 低い初期預金-アカウントレバレッジ1:400-1:500に基づくセントアカウントの$ 200 / $ 20 EurUsdH4で使用できるデフォルト設定 最適化
移動平均トレーダーは、パラメーターを設定する必要のないプロの取引ロボットです。 使用するロットのサイズを決定するだけです。 ロボットは完全に自動化されており、人間の介入は必要ありません。 移動平均に基づいて取引され、すべての通貨ペアで取引できます。 トレンドを検出するスマートなアルゴリズムを備えています。 エキスパートはトレンド方向に注文を作成します。 入力と出力の注文は、どの MT4 プラットフォームでも見られる 2 つのインジケーター (移動平均クロスオーバーとエンベロープ インジケーター) の組み合わせによって与えられます。 指標には、最高の純利益になるように最適な組み合わせで調整された期間とレベルの値があります。 また、ストップロスとテイクプロフィットが含まれており、ボラティリティが高まる時期に資本のセキュリティをもたらします。 エキスパートは、2020 年 1 月 1 日から 2022 年 12 月までの 1 年間の GBPUSD M15 履歴データでテストされました (MT4 での 2 年間のバックテスト)。 ダウンロードして自分でテストしてください。
PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  The trade strategy is based on Averaging and uses a little bit combination of martingale and grid strategy. Methodology   – Trading entails technical analysis with m
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
VELVET SEA: a usable, free simple expert advisor by the maker of velvet. CONCEPT This expert advisor is designed for use with a VPS that has continuous connectivity and trades based on whether or not it detects decisive momentum in a market, and can be configured to trade all open charts in a session or for it to only be attached to one chart with a given set of parameters.  That makes it possible for Velvet Sea to trade different symbols with different parameters to suite the needs of the use
Special Launch Offer! Be one of the first 5 buyers and get   Red Panda Miner EA   for just   $249.00 ! Plus, receive 1 free EA activation of your choice. This is a limited-time offer, so don't miss out. After this promotion, the price will start increasing by $100 every 5 copies sold .  Group Chat : Join Now Private message me for prop firm set file! Red Panda Miner EA Red Panda Miner EA is an expert advisor that revolutionizes Forex trading. Designed to operate on the M5 timeframe , it combine
Oldies automatic trading advisor is an EA based on Stoch logic cross with RSI filter and MA, logic that is fairly ancient but produces consistent profits and long-term life I hope you provide reviews and comments so that EA Oldies Advisor can continue to grow and get the latest updates Supported currency pairs: Major Pair Recommended timeframe: M5 - H1 Recommended Preset Settings: I included in the google drive link Preset input recommendations? download here:   - Requirements The EA is NOT s
Ilanis
Mikhail Sergeev
4.61 (28)
Ilanis is and Expert Advisor for stock trading, it can be used for trading on Forex and other markets, including commodities, metals and index markets. To determine the market entry, the EA uses the modern and ultra-light adaptive indicator FourAverage. Principle of position maintaining is similar to that of the popular Forex robot Ilan, using averaging. But unlike Ilan, Ilanis uses an accurate entry into the market. The robot pays a lot of attention to position control, if the price goes in the
Description for EA Magic Choice                                             EA is based on RSI, Support and Resistance indicator.                     STANDARD ACCOUNT (broker Broker 1 and  Broker 2)   Minimum 500 USD Time Frame H1-H4 Pair : XAUUSD, GBPUSD, EURUSD, AUDUSD, NZDUSD,  (usd pair is best) Note:- XAUUSD (if pair name is GOLD then news filter will not work) 1000usd for XAUUSD Standard Account Live Signal https://www.mql5.com/en/signals/1877276 SETTING Tr
Main: Not martingale, not a grid; Use on EURUSD; Use on M5. Signals: There is a good rational algorithm. Work of two indicators: Ichimoku and Alligator  (you can set a separate Timeframe for each indicator) Stop Loss/Take Profit: There is a good money management system (there are several type for trailing stop loss); There is virtual levels of Stop Loss / Take Profit; There is smart lot (percent by risk) or fix lot Important: EA can work on closed candles, and on current candles; Quickly
| 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
PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  Recommendations: Timeframe:   H1 (Any Timeframe) Supported currency pairs:   EURUSD , EURCHF,   USDCAD, AUDCAD, EURAUD and many more except *** JPY*** Pairs ...
"Still" is a trend-based Expert Advisor that looks for trend changes and opens orders in the direction of the new trend. The Moving Average indicator is used as the main signal supplemented by additional integrated confirmation functions. Whenever the signal changes, the opened orders are closed and a new order is opened. Stop levels are used for safety purposes. The EA is tied to the current timeframe. Recommended timeframes are H1 and M30. It can also work on M15 and M5. The recommended curren
********** 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 Expert Advisor is the legend of EA.   The Expert Advisor only opens one high precision entry. This EA can make you a nice profit.   Works on GBPUSD on M30   Features: Very easy to use and, if necessary, customize to your own requirements. Consistent Profit EA The EA uses the adaptive trade management algorithm.   PRICE WILL INCREASE..  BUY TODAY AT LESS PRICE !!   One Punch GBPUSD was tested and has successfully passed the stress test with slippage and commission approximate to the real mar
Auto3M MT4
Mr Anucha Maneeyotin
ボリンジャーバンドとストキャスティクスとの戦略取引 ボリンジャーバンドは主にトレンドを追うために使用されます。 オープン保留中の注文の購入または販売のための確率的メインラインおよびシグナルラインの使用 フィボナッチは目標利益、サポート、レジスタンスレベルの価格を使用しています アドバイザAuto3MProMT4はVPSで動作できます。 MT5 version :  Auto3M MT5 特徴 マーチンゲールなし ハードストップロスと各ポジションの利益を取る ボリンジャーバンドによる柔軟なストップロス、固定小数点、以前の高さまたは低さ、フィボナッチレベル 柔軟な固定小数点間で利益を取り、フィボナッチレベルで利益を得る 固定小数点間の柔軟なトレーリングストップとストップレベルの乗算 資金管理 ニュースフィルター 保留中の注文をインターバル時間で自動的に削除 保留中の注文には買いストップと売りストップ機能を使用します 自動チャートにフィボナッチ、ボリンジャーバンド、ストキャスティクスを追加 市場が閉じる前に利益を閉じる バランスによる動的ロットサイズ ヘッジポジ
このプロダクトを購入した人は以下も購入しています
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/機械学習」として偽装されることがよくありますが、
ローンチプロモーション: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のさ
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 時間枠の読み込み:任意の時間枠です 格子なし、マーチンゲールなし、一度に単一の取引 リスクを低減するために、注文を小さい注文に分割します リミット最大ポジションと最大浮動損失率を通じてリスクを管理します
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
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
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
AW Recovery EA
AW Trading Software Limited
4.32 (72)
Expert Advisor は、不採算ポジションを回復するために設計されたシステムです。 著者のアルゴリズムは、負けポジションをロックし、それを多くの別々の部分に分割し、それぞれを別々に決済します。簡単なセットアップ、ドローダウンの場合のローンチ遅延、ロック、他の Expert Advisor の無効化、トレンド フィルタリングによる平均化、負けポジションの部分決済が 1 つのツールに組み込まれています。 グループ全体でのみ注文をクローズするグリッド戦略とは対照的に、より低い預金負荷で損失を減らすことができ、損失をより安全に処理できるようにするのは、部分的に損失をクローズすることです。 注文が復元される方法: 1 EA は、選択した商品の他のウィンドウを閉じて、不採算の EA をオフにします (オプション)。 2 EA は、処理されたすべての注文のテイクプロフィットとストップロスのレベルをリセットし、対応する識別子を持つ保留中の注文を削除します。 3 EA は、利益を利用して不採算注文の一部をカバーし、総ポジション量を減らすために、すべての処理された採算性のある注文をクローズします
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
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は異なる市場の状況にシームレスに適応し、柔軟性と強靭性を確保し
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
Bitcoin Robot MT4
Marzena Maria Szmit
5 (11)
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
作者のその他のプロダクト
こんにちはます。  金融外国為替市場での取引のためのこのパネルについて少しお話ししたいと思います。 このパネルはMQL4プログラミング言語で書かれており、特定のポジションの成行注文を開くのに役立つように設計されています。 これは、通常の注文と保留中の注文の両方で動作します。 つまり、Buy、Sell、BuyLimit、SellLimit、BuyStop、SellStopなどの売り注文と買い注文を開きます。 また、グリッド注文を含む保留中の注文のネットワーク、つまり、保留中の注文を制限し、保留中の注文を一度に停止することもできます。 このパネルは、保留中の注文も閉じます。 今後の注文の設定は、パネルの上部にあります: 1. quantityは注文数(このパラメータは成行注文には影響せず、1つの価格で100注文としましょう)であり、ボタンを1回クリックするだけで開かれる保留中の注文の数を示します。 2. ロットは、ご注文が開かれる価格です 3. takeprofitはあなたの順序が利益と閉まる市場価格である。 4. stoplossは、お客様の注文が損失で終了する市場価格です 5.
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 t
この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
フィルタ:
レビューなし
レビューに返信