• 概要
  • レビュー (3)
  • コメント (10)
  • 最新情報

RenkoFromRealTicks

4.67

This non-trading expert utilizes so called custom symbols feature (available in MQL API as well) to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time.

The generated renko chart uses M1 timeframe. It makes no sense to switch the renko chart to a timeframe other than M1. The start time of a "minute" bar does normally correspond to the start time of renko box. The end time of a such "minute" bar is dummy (MetaTrader does not allow for bars with different duration), instead you should look at start time of the next "minute" bar. Optionally, you may enable markup of the boxes by close time (see CloseTimeMode below).

After its placement on a chart, RenkoFromRealTicks downloads tick history and generates renko bars for the custom symbol. This may take a while and require additional space on the disk. EA shows a progress in the comment. When the process is finished, the comment looks like this:

RenkoChart(100pt): open EURUSD_T_r100 / 1000 bars

where 100pt is the requested box size in points, EURUSD_T_r100 is a customizable symbol name, 1000 is a number of generated boxes (if EA is running for the very first time, this is the total number of renko bars, but if it continues on results of a previous terminal session, the number of new boxes can be a few, because only most recent, missing boxes are generated).

You may build renko faster and with less resources using RenkoCharts. But RenkoFromRealTicks is more precise and feature-reach.


Unique feature - volume delta per box. The delta is encoded in a special way, because MetaTrader does not support negative volumes. This is why you need free CustomVolumeDelta indicator to view it.

Parameters

  • RenkoBoxSize - box size in points, by default - 100;
  • ShowWicks - enable/disable wicks on renko, by default - true;
  • EmulateOnLineChart - enable/disable ticks emulation on renko charts, by default - true; it updates indicators and other EAs on backtests and online;
  • OutputSymbolName - name of the custom symbol for renko, by default - empty string - then the name is formed as "Symbol_T_PrefixSizeSuffix", where Symbol - current work symbol, Prefix - "r" (renko) wicks are enabled or "b" (brick) if disabled, Size - RenkoBoxSize; optional Suffix - "c" for close time mode; "g" - for gapless renko type;
  • Reset - an option to enforce complete recalculation of entire renko chart, by default - false; after it is set to true and calculations are completed, it is recommended to reset it back to false in order to eliminate excessive recalculations on every terminal restart; this mode is helpful in rare cases, when generated renko chart contains an error for some reason; normally the option is disabled, because the EA continues calculation smartly from the most recent existing box;
  • RenkoType - selector of the box calculation algorithm: Conventional or Gapless (also known as non-gap, rail-to-rail, see examples in the pictures);
  • VolumeType - selector of the volumes per box calculations: Total Volume, or Delta Volume with either of 3 algorithms (Ask vs Bid, Ask + Bid, Tick Flags);
  • CloseTimeMode - when true, boxes are shown and formed at their close time; in this mode only 1 tick is generated per box, when box is added completely formed to a chart; by default - false, i.e. boxes are created at open time (the latest live "box" is updated continuously and is not actually a box until it's closed);
  • DropTicksOutsideBars - filter out incorrect ticks (outliers);
  • StartFrom - time where to start the tick history processing, 0 means very beginning;
  • StopAt - time where to stop, 0 means till current time;


Volume Delta Methods

In the method Ask vs Bid tick volumes are considered for buy if Ask price increases, and for sell if Bid decreases (please note, that on some accounts/symbols Bid changes more frequent than Ask, which introduces a negative bias; this is the platform specificity).

The method Ask+Bid analyses the changes of the average price (sum of Ask and Bid): move up - buy, move down - sell.

Tick Flags is based on buy/sell tick flags and applicable for exchanges only.


レビュー 3
Mohamed Tharwat Hussein El Sherief
376
 

Hello,

I have traded Renko for many years manually without using EAs. Like many other traders, I faced the challenge when attempting to Backtest and/or optimize trading EAs based on custom symbols (Renko charts) in MT5. I have tested different Renko Generators EAs. I have generally struggled with these main points:

A-Backtesting results vary a lot.

B-The coders who created these EAs are not responsive and if they do respond, their replies are very short and do not address my concerns.

C- When applying Renko Generators on custom symbols, some Renko generators do not work or the backtesting results do not show 100 percent history quality.

For example: using third-party Tick Data providers to create a custom symbol for any pair and then creating a Renko custom symbol based on this imported tick data. Not all MT5 brokers offer tick data for previous years and thus we need to rely on imported tick data.

The result is that either the Renko Generator does not create a Renko custom symbol (because the source chart is a custom tick data chart) or it creates a custom symbol but the backtesting shows zero percent history quality. Regardless of how accurate and precise the Renko Generator is, there will always be limitations with MT5. It is inevitable as MT5 does not offer a custom-tailored solution for Renko bars. Any EA generator is simply trying to apply the concept of Renko on a time-based chart.

In a time chart, all data series (o/h/l/c) have to be manipulated by any Renko Generator. There are limits and issues. Stanislav (the creator of RenkoFromRealTicks) is very transparent about it in one of his articles. Read them to understand. This shortfall will apply to any Renko Generator you use (from Stanislav or others).

All right! So now starts my review of Stanislav Korotky Renko Generator (RenkoFromRealticks) EA.

1- Communication and support:

I give 5 stars out of 5 for the communication with Stanislav. I purchased his EA when it was version 1. There were so many backtracks done from my end and I had many questions to send to Stanislav. To be honest and straightforward, I am a very skeptical person by nature and I compare different products and always question the result.

It has been a couple of weeks and Stanislav was always responsive and updated his EA with a newer version to address a concern I have. He has also backtested two of my EAs and changed the code in one of them to make sure (from his view) that the backtesting is accurate. I have also sent him a third EA and some tick data and asked him to backtest it without changing the code and his results closely matched with mine.

I have never had such a communication channel with any other Renko Coder! Thank you, Stanislav for your support. I have also sensed you are a sincere coder who takes responsibility for his work and is very open with limitations (from MT5) without hiding or polishing them.

2-Applying RenkoFromRealTicks on Custom symbols: No issues at all. Let’s say you have a custom EURUSD chart built from tick data provided by a third party. You can apply RenkoFromRealTicks on it and it will generate the Renko bars. Some other Renko Generators do not! This is because they rely on one-minute data and the authors won't inform you.

3-Backtesting: Some Renko Generators have a special mode for backtesting. In other words, the user has to change the Renko size for reversal bars. (for example, Reno Reversal should be 200 percent of Renko bar). This is not wrong as this depends on the Author’s recommendations when backtesting. However, in the case of RenkoFromRealTicks, you do not need such a feature and you should not worry about (the artificial opening of a bar) affecting the backtest.

I have exhausted this concern with Stanislav! Besides, it is a lot nicer to see the authentic look of Renko Bars in the bactested chart. Also bear in mind, that some Renko Generators do not address this issue at all! Coders decline to inform their users if backtesting is synthetic and not real. So again: it depends on how the Renko generator is coded and what are the recommendations (if any) for Backtesting.

The recommendation from Stanislav is to choose (Bulk Ticks per box) in the Tick History Mode for the most accurate backtesting. Stanislav may need to update the description of the EA for Backtesting.

Some Renko Generators do not deal well with (compressed tick data)! Read this carefully! Some tick data providers offer a compressed version of their tick data to reduce the file size of tick data. That is great; sometimes you would get 99 percent quality instead of 100 percent.

A one percent difference is not that much when it comes to reducing file sizes on your PC. However, here is the issue: Some Renko generators do not handle well such compressed Data. They construct the bars in the wrong way affect your trading EA Backtesting and give you an unrealistic high profit factor.

But when it comes to RenkoFromReal Ticks, there was no issue at all. This Renko generator deals very well with either compressed or standard-sized data. There was no real concerning discrepancy when I backtested my trading EAs. The important thing is that you have a detailed log report to investigate the construction of Renko bars and the tick data you are using. I have also once downloaded the wrong format of ticks from one of the tick data providers. I downloaded a .csv file that was not meant for MT5. RealDataFrom Ticks EA generated a blank custom symbol and upon going through the log report, I noticed many ticks are being missed or are bad. I then downloaded the right format for MT5, and the EA worked like a charm.

However, when I used another Renko generator, the bars were still created and the trading EA got me an unrealistic high-profit factor. I realized then that RenkoFromRealTicks is a trustworthy Renko generator I should use.

C-History Quality: With RenkoFromRealTicks, I got 99 percent quality with the compressed data and 100 percent quality with standard-size data. When it comes to standard size tick data, I tested another commercial Renko generator and it was close to RenkoFromRealTicks EA but it shows history quality at Zero percent! This does not give me assurance the backtesting is good (even if the results are very close).

D-Online Trading: I have not tested it on online mode but I do not see any reason why it would not perform as expected. Usually, the issue of any Renko EA generator is in backtesting not in online mode.

E-takes a bit of time when constructing the renko bars: I believe this is because it is a genuine Renko generator that does build Renko from real ticks. I have similar MT4 Renko generators that take some time to construct Renko HST and FXT files from tick data. Besides, I was skeptical of other MT5 Renko generators that generate Renko bars on the fly! Or in a few seconds.

I hope I have given a comprehensive review of the product based on experience and knowledge.

Finally, I want to add that I did not have a reference point to compare the backtesting results I got from my trading EAs tested on Renko bars generated by RenkoFromRealTicks EA. I used a couple of EAs in MT4 and MT5 and was looking for an outlier here or there. The best way to make sure that any Renko Generator EA is offering the best backtesting results is to run an EA on a server for a month or so and compare the life trading results with the backtested ones. I have not done this yet.

My Recommendations for future development: (This depends on the users’ opinion and voting for such features)

1-I wish I see another EA from Stanislav (a different product with a different purchase) that offers Flexible Renko Construction. (i.e. changing the open and close offset by percentage). This way it will be a universal Renko builder to create Mean Renko or other exotic Renko bars.

The current EA offers Conventional and rail-to-rail (Point O Chart) Renko bars. The author would be able to code a new Renko generator if there is enough demand for it.

2-Option to build a Renko chart based on a percentage of the price. This will be great for stock trading. I am not fond of Renko based on ATR and I think the percentages will be a better option.

Thank you,

Alexey Lushnikov
1792
Alexey Lushnikov 2022.04.15 14:58 
 

Из нескольких Ренко генераторов, которые я покупал - этот лучший!

carlospelegrini
87
carlospelegrini 2022.09.29 17:45 
 

the only non-gap renko I found.. it works okay

おすすめのプロダクト
Gino Renko
Stephane, Andr Valette
1 (1)
Another renko-based indicator. It returns different usable values ​​for an EA, and is directly displayed on the main chart. Its setting is very simple: The size of the renko The number of bars taken into account The falling color The color on the rise Returned values: Buffer 0 : Value of the middle Buffer 1 : Value of the Top Buffer 2 : Value of the Bottom Buffer 3 : Direction of renko (0.0 for top ; 1.0 for bottom) Buffer 4 : Ratio of the renko, for example, if it is twice, 3 times, ro more of
TradeMirrorは、MT4/MT5プラットフォーム用のトレードコピーEAです。 TradeMirrorを選ぶ理由 金融ソフトウェアにはセキュリティ、安定性、プライバシーが重要であることを理解しているため、この3つの要素を細部にわたって固めるために、さらなる努力を重ねています: 操作が簡単なユーザーフレンドリーなグラフィカルインターフェースを提供 プライバシーとセキュリティを重視し、注文の分配にプライバシーが要求される様々な金融シナリオに適していること 注文の正確な複製、ミリ秒単位での配信 フルプラットフォーム、MT4またはMT5をサポート  システム状況のインテリジェントな認識、メール通知で取引の安全性をガード コア機能一覧 フォローアップソフトは、機能が多ければ良いというものではないので、厳密な需要分析の後、プログラムを合理化し、最終的に以下のコア機能を保持しました。 マルチコネクション メール通知機能 ロットスケーリング 信号のフィルタリング 逆指値注文 テイクプロフィット/ストップロスのリセット 無料デモ Trademirrorを購入する前に、いつでも無料のデモを試すこと
Renko Plus
Eadvisors Software Inc.
With Renko Plus you can use the features in the Indicator functionality, just add it to the Metatrader5 chart.             The Renko chart is a type of chart, developed by the Japanese, that is constructed using price movement rather than standardized prices and time intervals like most charts. It is believed to be named after the Japanese word for bricks, "renga", as the graphic looks like a series of bricks.             A new brick is created when the price moves a specified p
Renko Builder GLX1
Eranga Thilina Dhanushka Gallage
GLX1 Renko Builder   Expert Advisor (EA) can create the Renko bar charts on any symbol. The Renko charts are generated as real-time custom symbol charts which can be further used for technical analysis with any MT5 compatible indicator.  Find the free   GLX1 Renko Euro   Expert Advisor from here.  https://www.mql5.com/en/market/product/115074 Included Features: Truly responsive Renko Charting on a custom symbol chart Accurate automatic live chart update Ability to attach any MT5 indicator
Indicador "MR BEAST - Detectador de Mejores Spikes" para el Índice BOOM1000 (M1) El indicador "MR BEAST - Detectador de Mejores Spikes" es una herramienta especializada y altamente precisa diseñada exclusivamente para operar en el índice CRASH 1000, con un enfoque específico en el marco temporal de 1 minuto (M1). Desarrollado por el reconocido trader Mr. Beast, este indicador ha sido meticulosamente diseñado para identificar únicamente los mejores spikes, permitiendo a los operadores capitalizar
KT Renko Live Chart utility creates the Renko charts on MT5 that can be further used for speculation or live trading. The Renko chart created by this utility supports most of the custom indicators and automated Expert Advisors. Fully compatible with our Renko Patterns indicator and Renko Patterns EA . Features A simple and straightforward Renko utility that provides the Renko chart on MT5 without any complicated settings. It supports most of the custom indicators and Expert Advisors for 100%
Renko Chart
Marcin Konieczny
4.27 (11)
This indicator allows to display Renko charts in the indicator window. Renko charts show only price movements that are bigger than the specified box size. It helps to eliminate noise and allows to focus on main trends. Time is not a factor here. Only price movements are taken into account. That's why Renko chart is not synchronized with the main chart it is attached to. Indicator works in two modes: CLOSE - only close prices are taken into account while building the chart HIGH_LOW - only high/
FREE
This non-trading expert utilizes so called   custom symbols   feature to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time. This is a functionally limited demo version of  RenkoFromRealTicks . RenkoFromRealTicks utility can not work in the tester because it uses CustomSym
FREE
The   Basic Candlestick Patterns   is an excellent indicator for identifying candlestick patterns, which displays your chosen patterns on the chart and helps you make trade decisions. You can download  MT4 version The indicator has simple settings for coloring and alerts. You can also activate or deactivate the desired patterns using the panel on the chart.
FREE
The   Basic Renko   indicator shows the Renko boxes on the main chart. MT4 Version Its advantage is that you have access to both the main chart and the Renko chart at the same time. In addition, you can find out how many bars it took to form each Renko box. When a reversal occurs, the indicator will notify you with pop-up, push and email alerts. This indicator does not have complicated settings, and beginners and professionals can easily use it in their strategies. Through the inputs, y ou can
FREE
The Expert Advisor is used to create Renko chart, realtime updates, easy for technical analysis. Backtest your strategy with all indicators with Renko chart in MetaTrader 5. Parameters Box Size : input the number of box size. Show Wicks : if true , draw a candle with high/low. History Start: input the date to creat first candle. Maximum Bars: limit number of bars on renko chart How to use Attach the Expert Advisor to a chart (timeframe M1), for which you want to create a renko. Input box siz
Advanced 4xZeovo MT5 Indicator (MetaTrader 5)   Product Description  4xZeovo is a powerful trading indicator system monitoring 24/7 financial markets. Metatrader5 tool designed to find the best buying/selling opportunities and notifies the user.    Making life easy for traders in helping with the two most difficult decisions with the use of advanced innovate trading indicators aiming to encourage users to hold the winning positions and take profit at the best times.    Equipped with a unique tra
Indicador "MR BEAST - Detectador de Mejores Spikes" para el Índice CRASH 300(M1) El indicador "MR BEAST - Detectador de Mejores Spikes" es una herramienta especializada y altamente precisa diseñada exclusivamente para operar en el índice CRASH 1000, con un enfoque específico en el marco temporal de 1 minuto (M1). Desarrollado por el reconocido trader Mr. Beast, este indicador ha sido meticulosamente diseñado para identificar únicamente los mejores spikes, permitiendo a los operadores capitalizar
Indicador "MR BEAST - Detectador de Mejores Spikes" para el Índice CRASH 500(M1) El indicador "MR BEAST - Detectador de Mejores Spikes" es una herramienta especializada y altamente precisa diseñada exclusivamente para operar en el índice CRASH 1000, con un enfoque específico en el marco temporal de 1 minuto (M1). Desarrollado por el reconocido trader Mr. Beast, este indicador ha sido meticulosamente diseñado para identificar únicamente los mejores spikes, permitiendo a los operadores capitalizar
Trend Direction ADX indicator Trend Direction ADX is part of a serie of indicators used to characterize market conditions. Almost any strategy only work under certain market conditions. Therefore it is important to be able to characterize market conditions at any time: trend direction, trend strength, volatility, etc.. Trend Direction ADX is an indicator to be used to characterize trend direction: trending up trending down ranging Trend Direction ADX is based on ADX standard indicator.
Gino Renko EA
Stephane, Andr Valette
Here is an EA based on the Renko indicator, it can be used with currencies, commodities, and forex. Just associate it with the corresponding graph. The indicator used for the EA is available here, but it is not necessary for its operation, they are 2 independent products: https://www.mql5.com/fr/market/product/87852?source=Site +Market+MT5+Indicator+Search+Rating006%3agino+renko Personally I don't like renko like EA, and I haven't done any tests to find out which configuration is the best.
Auto Channel Trader
Ross Adam Langlands Nelson
The Auto Channel Trader creates a channel by plotting a line along the high points and low points of the chart, the EA then makes long trades near the bottom of the channel and short trades near the top of the channel. The channel is created by finding high points for the top line and low points for the bottom line, these points are shown with arrows. A line of best fit is then plotted through these points and extended until the end of the chart.  The length of the channel is determined by the M
Bands are a form of technical analysis that traders use to plot trend lines that are two standard deviations away from the simple moving average price of a security. The goal is to help a trader know when to enter or exit a position by identifying when an asset has been overbought or oversold. This indicator will show upper and lover bands. You can change input parameters nPeriod and  nMethod to calculate those bands for each timeframe. Aqua clouds represent up or down trends.
Big Player Range
Thalles Nascimento De Carvalho
5 (2)
「BigPlayerRange」インジケーターへようこそ。これは金融機関が市場で示す重要なエリアを特定するために開発されたテクニカル分析ツールです。このインジケーターは、主要な市場参加者が相当な活動と興味を示す価格範囲を正確に分析します。 主な特徴: 1. 金融機関の関心エリアのマッピング:「BigPlayerRange」は金融機関が強い活動を示すチャート上のエリアを正確に強調表示します。これらのポイントは戦略的に重要であり、市場の将来の動きについての洞察を提供します。 2. 出口の基準としてのプロジェクション:関心のあるエリアを特定するだけでなく、このインジケーターはプロジェクションを使用して可能な出口の基準としています。これらのプロジェクションは市場が将来どの方向に動くかに基づいて戦略を計画するのに役立ちます。 3. 識別された範囲に戻るときの引き戻しの確率:「BigPlayerRange」のユニークな機能の1つは、価格が関心のある範囲に戻ったときの引き戻しの確率を計算できることです。これは潜在的なトレンドの反転を評価するのに役立ちます。 「BigPl
O Alpha B3 Renko Trader  é um robô especialista para negociação no Bovespa B3  (miniíndice e minidólar) que une a análise de candlesticks do gráfico Renko (calculado internamente, sem imagens gráficas) com a estratégia Alpha B3 . O robô permite configurar, para os sinais de entrada, o tamanho do brick do gráfico Renko, bem como um número de candlesticks para análise. Além disso, você deve configurar os stops fixos, em pontos. O robô permite também a configuração de funções, tais como número de c
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
HLC bar MT5 Wyckoff
Eduardo Da Costa Custodio Santos
MT5のインジケーター「HLC_bar_MT5Wyckoff」は、取引時の分析を容易にするために作成されました。 HLCバーはRichardWyckoffによって使用され、現在「VSA」操作で広く使用されています。 Wyckoffは、High、Low、およびCloseを使用すると、グラフがはるかにクリーンになり、分析が容易になることを発見しました。 区分 "HLC_bar_MT5 Wyckoff"により、以下が可能になります。 #バーの幅を変更します。 #バーを同じ色のままにします。 #そして、同じ価格で開閉したバーを強調表示します。 色と幅は設定で簡単に変更できます インジケーターを使用するには、インジケーターをチャートにドラッグするだけです。
Fibo Expertt
Ignacio Agustin Mene Franco
Fibo expert! It is an automatic fibonacci indicator. adapting to any temporality, to catch those rebounds, or the path of that trend, special to make longs in H1 or H4 clear the trend, but it also works for scalp in m1 up to m15 works for all forex pairs and for all pairs of synthetic indices, ideal for volatility 75 in synthetics no more to enjoy good profit World Investor.
A professional tool for trading - the divergence indicator between the  MACD and the price, which allows you to receive a signal about a trend reversal in a timely manner or catch price pullback movements (depending on the settings). The indicator settings allow you to adjust the strength of the divergence due to the angle of the  MACD peaks and the percentage change in price, which makes it possible to fine-tune the signal strength. The indicator code is optimized and is tested very quickly as
FREE
A professional tool for trading - the divergence indicator between the  RVI and the price, which allows you to receive a signal about a trend reversal in a timely manner or catch price pullback movements (depending on the settings). The indicator settings allow you to adjust the strength of the divergence due to the angle of the  RVI peaks and the percentage change in price, which makes it possible to fine-tune the signal strength. The indicator code is optimized and is tested very quickly as p
FREE
All about time and price by ICT. This indicator provides a comprehensive view of ICT killzones, Silver Bullet times, and ICT Macros, enhancing your trading experience.  In those time windows price either seeks liquidity or imbalances and you often find the most energetic price moves and turning points. Features: Automatic Adaptation: The ICT killzones intelligently adapt to the specific chart you are using. For Forex charts, it follows the ICT Forex times: In EST timezone: Session: Asia: 20h00-0
RENKO PRICE ACTION ATRは、レンコチャートの作成を通じて開発された「エキスパートアドバイザー」であり、各BRICKは、ユーザーが選択した期間のATRによって計算されたサイズを持ちます。 レンコチャートは、マイナーな価格変動を除外するように設計されているため、トレーダーは重要なトレンドに集中しやすくなります。 価格動向の検出効率が高いため、支持と抵抗、および上下の相違を明確に識別して、取引機会をより有効に活用することもできます。 手術 RENKO PRICE ACTION ATRは、どの通貨ペアでも機能します。 RENKO PRICE ACTION ATRは、優れたリアルタイム更新パフォーマンスを備えています。 設定 ATR計算時間枠:ATRの平均を適用し、各BRICKのサイズを計算/再計算するためのRENKO PRICE ACTIONATRのユーザー選択期間。 ATR計算平均化期間:各BRICKのサイズ計算を実行するためのRENKO PRICE ACTIONATRのATR平均化のユーザー選択期間。 ATRサイズのパーセンテージ:各BRICKの形成に使用され
MT4版  |  FAQ Owl Smart Levels Indicator は、 Bill Williams の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels 取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、注文を出すため
Trading patterns on Forex is considered to be the highest level of trading, since it usually requires years of mastering various patterns (shapes and candle combinations) and the ways they affect the price. Patterns are different combinations of Japanese candles on a chart, shapes of classical technical analysis, as well as any regularities of the market behavior repeating many times under the same conditions. After the patterns appear on a chart, the price starts behaving in a certain way allow
A professional tool for trading - the divergence indicator between the WPR and the price, which allows you to receive a signal about a trend reversal in a timely manner or catch price pullback movements (depending on the settings). The indicator settings allow you to adjust the strength of the divergence due to the angle of the WPR peaks and the percentage change in price, which makes it possible to fine-tune the signal strength. The indicator code is optimized and is tested very quickly as par
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.4 (171)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 注意、アプリケーションはストラテジーテスターでは機能しません。 説明ページからデモ版をダウンロードできます  Manual, Description, Download demo ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、
価格が一瞬で変わる可能性のある市場では、注文はできるだけ簡単にすべきだと思いますか? Metatraderでは、注文を開くたびに、開始価格を入力し、損失を止めて利益を得るウィンドウと、取引サイズを開く必要があります。金融市場の取引では、初期預金を維持し、それを増やすために資本管理が不可欠です。それで、あなたが注文をしたいとき、あなたはおそらくあなたがどれくらいの大きさの取引を開くべきか疑問に思いますか?この単一の取引であなたの預金の何パーセントを危険にさらすべきですか?この取引からどれだけの利益を得ることができますか?また、リスクに対する利益の比率はどのくらいですか?トレードサイズを設定する前に、トレードサイズがどうあるべきかという質問に対する答えを得るために必要な計算を行います。 これらすべてを自動的に行うツールがあると想像してみてください。チャートを開き、市場分析を行い、エントリーポイント、ディフェンスポイント(ストップロス)、ターゲット(テイクプロフィット)を水平線でマークし、最後にリスクのレベルを定義します。利用可能な資本の%として、このトランザクションで負担することができ、こ
TradePanel MT5
Alfiya Fazylova
4.89 (112)
Trade Panel は、多機能の取引アシスタントです。 このアプリケーションには手動取引用に設計された 50 以上の機能が含まれており、ほとんどの取引アクションを自動化できます。 アプリケーションの主な機能: 任意のシンボル(外国為替、CFD、先物など)で機能します。 無制限の文字数での同時作業。 取引ごとのリスクの自動計算とストップロスとテイクプロフィットの比率の設定。 OCO注文を行うことができます(一方が他方をキャンセルします-1つの注文を実行すると別の注文がキャンセルされます)。 タスクを含む行を設定できます(ポジションを開く、保留中の注文を開く、またはグループごとに注文を閉じる)。 仮想テイクプロフィットとストップロスを設定できます。 成行注文を反転またはロックできます。 6種類のトレーリングストップ。 ストップロスを損益分岐点に設定する機能があります。 ポジションを部分的にクローズする機能があります(利益または損失の一部をクローズします)。 価格が特定のラインに達するとアラート機能があります。 自動および手動のスクリーンショット。 ワンクリックですべてのターミナルウィン
Local Trade Copier EA MT5
Juvenille Emperor Limited
5 (63)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動し
Adam FTMO MT5
Vyacheslav Izvarin
5 (1)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
Mentfx Mmanage mt5
Anton Jere Calmes
4.43 (7)
The added video will showcase all functionality, effectiveness, and uses of the trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates al
UTM Manager は、迅速かつ効率的な取引執行を提供する直感的で使いやすいツールです。際立った機能の 1 つは、「スプレッドを無視」モードです。これにより、スプレッドを完全に無視して、ローソク足の価格で取引できるようになります (たとえば、LTF でより高いスプレッドのペアを取引でき、スプレッドによって取引から除外されるのを回避できます)。 UTM Manager のもう 1 つの重要な側面は、独自のローカル取引コピー機であり、各ブローカーで異なる取引戦略と設定 (たとえば、さまざまな TP、BE、およびリスク ルール) を柔軟に実行できます。 取引執行: 迅速かつ効率的な取引執行: チャート上のエントリー価格とストップロス価格をクリックして簡単に取引を入力するか、ワンクリックの固定ストップロスサイズ機能を使用します。 自動ロットサイズ計算: ロットは事前定義されたリスク設定に基づいて計算され、ドラッグによってポジションが変更されると再計算されます。 1 つまたは複数のポジションを同時に処理できる能力。 利益確定と損益分岐点: 柔軟なテイクプロフィット設定: 特定のリスク対報
-25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading w
OrderManager をご紹介:MT5用の革新的なユーティリティ 新しく設計されたOrder Managerユーティリティを使用して、MetaTrader 5での取引をプロフェッショナルなものにしましょう。シンプルさと使いやすさに焦点を当てたこのユーティリティは、各取引に関連するリスクを簡単に定義し、視覚化できます。これにより、情報に基づいた意思決定が可能になり、取引戦略を最適化できます。OrderManagerに関する詳細は、マニュアルをご参照ください。 [ マニュアル ] [ MT4 バージョン ] [ Telegram チャンネル ] 主な特長: リスク管理:取引のリスクを素早く簡単に定義し、より良い意思決定を行い、取引パフォーマンスを向上させます。 視覚表現:オープンなポジションとそれに関連するリスクをグラフィカルに表示し、明瞭かつ簡潔な理解が可能です。 注文変更:数回のクリックで注文を簡単に変更またはクローズし、取引プロセスを効率化し、貴重な時間を節約します。 手のひらの上の最新ニュース:ボタン一つで最新の市場ニュースに常にアクセスできます。 MT5トレーダーにと
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャートのスクリーンショットが含まれます 追加の
-25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials, manuals, DEMO download   here .   Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extend
Auto Trade Copier is designed to copy trades between multiple MT4/MT5 accounts/terminals with 100% accuracy. The provider and receiver accounts must be on the same PC/VPS. With this tool, you can copy trades to receiver accounts on the same PC/VPS. All trading actions will be copied from the provider to the receiver with no delay. This version can be used on MT5 accounts only. For MT4 accounts, you must use Auto Trade Copier (for MT4). Reference: For MT5 receiver, please download "Trade Receiver
Trade Assistant 38 in 1
Makarii Gubaydullin
4.87 (15)
多機能ツール 搭載機能: ロット計算機、プライスアクション、リスク/リワードレシオ、トレードマネージャー、需要供給ゾーンなどをはじめ65以上の機能。 バージョ:デモ版   |   ユーザーマニュアル   |    MT5版 このユーティリティはストラテジー テスターでは機能しません。 ここからデモ   バージョンをダウンロードして製品をテストできます。 ご不明な点や改善提案、バグの発見などございましたら、 連絡してください 。 取引プロセスを簡素化、高速化、自動化します。このダッシュボードで標準端末機能を拡張します 1. 新しい取引を開始します : ロット / リスク / RR の計算 1. Lot計算機(リスクサイズに基づく取引量計算 2. リスク計算機(ロットサイズに基づくリスク量) 3. リスク/リワードレシオ (R/R) 4. 注文のアクティベーション トリガー + Buy StopLimit / Sell StopLimit 5. 仮想 SL / TP レベル (隠しSL、TP: ブローカーには見えない) 6.  Smart SL / エントリー レベル: バ
DrawDown Limiter
Haidar, Lionel Haj Ali
5 (17)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
ワンクリックで取引できるトレーディングパネル。ポジションと注文の操作!チャートまたはキーボードから取引。 当社の取引パネルを使用すると、チャートから直接シングルクリックで取引を実行でき、標準の MetaTrader コントロールよりも 30 倍高速に取引操作を実行できます。 パラメータと関数の自動計算により、トレーダーにとって取引がより速く、より便利になります。 グラフィックのヒント、情報ラベル、取引取引に関する完全な情報はチャート MetaTrader にあります。 MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 手動取引用の取引パネル。チャート(チャートウィンドウ)またはキーボードから取引できます。  開閉、リバース、ロックポジションと注文を処理する МetaТrader5 のメインオーダーのトレーディングコントロールパネル:売買、売却、売却、売却、売却、閉じる、削除、修正、トレーリングストップ、ストップロス、takep
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overri
MT5 to Discord Signal Provider は、Discord へ直接トレーディングシグナルを送信するために設計された、使いやすく完全にカスタマイズ可能なユーティリティです。このツールは、あなたのトレーディングアカウントを効率的なシグナルプロバイダーに変えます。 スタイルに合わせてメッセージフォーマットをカスタマイズ!利便性を考え、事前にデザインされたテンプレートから選択し、メッセージのどの要素を含めるか除外するかを選択できます。 [ デモ ] [ マニュアル ] [ MT4 バージョン ] [ Telegram バージョン ] セットアップ 簡単なセットアップのために、私たちの詳細な ユーザーガイド に従ってください。 Discord API の事前知識は必要ありません。必要なツールはすべて提供されます。 主な特徴 購読者の更新のための注文詳細をカスタマイズ。 ブロンズ、シルバー、ゴールドなど、各レベルで異なるシグナルアクセスを提供する階層的サブスクリプションモデルを実装。 注文が実行されたチャートのスクリーンショットを添付。 これらのスクリーンショットに表
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version   right now. You can find   deta
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Build
Botトークンや管理者権限の必要なしに、メンバーであるすべてのチャンネルからシグナルをコピーして、MT5に直接送信します。 多くの機能を提供しながら、ユーザーを考慮して設計されています この製品は、使いやすい視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用開始できます! ユーザーガイド + デモ  | MT4バージョン | Telegramバージョン デモを試してみたい場合は、ユーザーガイドを参照してください。 DiscordからMT5への変換は、ストラテジーテスターで動作しません。 DiscordからMT5への変換の特長 メンバーである任意のチャンネルからコピーします。BotトークンやチャットIDは不要です リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズします すべてのシグナルを認識するための単語やフレーズを設定します(デフォルトは99%のシグナルプロバイダーに適用されます) コピーするタイミングと日時の設定をカスタマイズします 一度に
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow develop strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA   in this market place. You can use as trade
Trade Copier Agent は、複数の MetaTrader(4/5) アカウント/端末間で取引をコピーするように設計されています。 このツールを使用すると、プロバイダー (ソース) または受信者 (宛先) として機能できます。すべての取引アクションは、遅延なくプロバイダーからレシーバーにコピーされます。 このツールを使用すると、0.5 秒未満の超高速のコピー速度で、同じコンピューター上の複数の MetaTrader ターミナル間で取引をコピーできます。 Trade Copier Agent インストール & 入力ガイド コピーを開始する前、または注文がないうちに、プロバイダー アカウントで設定を適用してください。 注文中の変更は、受取人のアカウントに影響します。 例: プロバイダー アカウントが買い注文を適用し、その後、受信者アカウントのすべての買い注文を無効にすると、決済されます。 EA追加URL(   http://autofxhub.com   )MT4端末(スクリーンショット参照) に関する通知を受け取りたい場合 。 MT5 バージョン https://w
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナ
MT5のエキスパートアドバイザーリスクマネージャーは非常に重要であり、私の意見ではすべてのトレーダーにとって必要なプログラムです。 このエキスパートアドバイザーを使用すると、取引口座のリスクを管理することができます。リスクと利益の管理は、金銭的およびパーセンテージの両方で実行できます。 エキスパートアドバイザーが機能するには、それを通貨ペアチャートに添付し、許容可能なリスク値を預金通貨または現在の残高の%で設定するだけです。 PROMO BUY 1 GET 2 FREE -   https://www.mql5.com/en/blogs/post/754725 アドバイザ機能 このリスクマネージャーは、リスクの管理を支援します。 -取引のために -1日あたり - 1週間 - ひと月ほど 制御することもできます 1)取引時の最大許容ロット 2)1日あたりの最大注文数 3)1日あたりの最大利益 4)エクイティを引き受ける利益を設定する それだけではありません。設定で自動設定を指定した場合、アドバイザーはデフォルトのSLとTPを設定することもできます。
This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
The most advanced news filter and drawdown limiter on MQL market NEW: Take a Break can be backtested against your account history! Check the " What's new " tab for details. Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when
Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
作者のその他のプロダクト
WalkForwardOptimizer MT5
Stanislav Korotky
3.86 (7)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
This indicator is a conventional analytical tool for tick volumes changes. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). The algorithm used internally is the same as in the indicator VolumeDeltaMT5 , but results are shown as cumulative volume delta bars (candlesticks). Analogous indicator for MetaTrader 4 exists - CumulativeDeltaBars . This is a limited substi
AutomaticZigZag
Stanislav Korotky
4.67 (3)
This is a non-parametric ZigZag providing 4 different methods of calculation. Upward edge continues on new bars while their `highs` are above highest `low` among previous bars, downward edge continues on next bars while their `lows` are below lowest `high` among previous; Gann swing: upward edge continues while `highs` and `lows` are higher than on the left adjacent bar, downward edge continues while `highs` and `lows` are lower than on the left adjacent bar. Inside bars (with lower `high` and
FREE
Time And Sales Layout indicator shows traded buy and sell volumes right on the chart. It provides a graphical representation of most important events in the time and sales table. The indicator downloads and processes a history of real trade ticks. Depending from selected depth of history, the process may take quite some time. During history processing the indicator displays a comment with progress percentage. When the history is processed, the indicator starts analyzing ticks in real time. The l
CustomVolumeDelta
Stanislav Korotky
4.5 (2)
This indicator displays volume delta (of either tick volume or real volume) encoded in a custom symbol, generated by special expert advisers, such as RenkoFromRealTicks . MetaTrader does not allow negative values in the volumes, this is why we need to encode deltas in a special way, and then use CustomVolumeDelta indicator to decode and display the deltas. This indicator is applicable only for custom instruments generated in appropriate way (with signed volumes encoded). It makes no sense to ap
FREE
If you like trading by candle patterns and want to reinforce this approach by modern technologies, this indicator and other related tools are for you. In fact, this indicator is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains: SOMFX1Builder  - a script for training neural networks; it builds a file with generalize
This indicator is an extended implementation of Weis waves. It builds Weis waves on absolute volumes (which is the classical approach) or delta of volumes (unique feature) using different methods of wave formation and visualization. It works with real volumes, if available, or with tick volumes otherwise, but also provides an option to use so called "true volume surrogates", as an artificial substitution for missing real volumes (for example, for Forex symbols), which was introduced in correspo
Comparator
Stanislav Korotky
4.14 (7)
This indicator compares the price changes during the specified period for the current symbol and other reference symbol. It allows to analyze the similar movements of highly correlated symbols, such as XAUUSD and XAGUSD, and find their occasional convergences and divergences for trading opportunities. The indicator displays the following buffers: light-green thick line - price changes of the current symbol for TimeGap bars; light-blue thin line - price changes of the reference symbol ( LeadSymbo
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
HZZM
Stanislav Korotky
2.67 (3)
This is an adaptive ZigZag based on modification of  HZZ indicator (original source code is available in this article ). Most important changes in this version: two additional indicator buffers added for zigzag evolution monitoring - they show cross signs at points where zigzag direction first changes; zigzag range (H) autodetection on day by day basis; time-dependent adjustment of zigzag range. Parameters: H - zigzag range in points; this parameter is similar to original HZZ, but it can take 0
FREE
Most of traders use resistance and support levels for trading, and many people draw these levels as lines that go through extremums on a chart. When someone does this manually, he normally does this his own way, and every trader finds different lines as important. How can one be sure that his vision is correct? This indicator helps to solve this problem. It builds a complete set of virtual lines of resistance and support around current price and calculates density function for spatial distributi
ADXS
Stanislav Korotky
5 (3)
Ever wondered why standard ADX is made unsigned and what if it would be kept signed? This indicator gives the answer, which allows you to trade more efficient. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly s
Classical ADX revamped to provide faster and more solid trading signals. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly speaking, any conversion to an absolute value destroys a part of information, and it mak
WalkForwardDemo is an expert adviser (EA) demonstrating how the built-in library WalkForwardOptimizer (WFO) for walk-forward optimization works. It allows you to easily optimize, view and analyze your EA performance and robustness in unknown trading conditions of future. You may find more details about walk-forward optimization in Wikipedia . Once you have performed optimization using WFO, the library generates special global variables (saved in an "archived" file with GVF-extension) and a CSV-f
FREE
This indicator provides a statistical analysis of price changes (in points) versus time delta (in bars). It calculates a matrix of full statistics about price changes during different time periods, and displays either distribution of returns in points for requested bar delta, or distribution of time deltas in bars for requested return. Please, note, that the indicator values are always a number of times corresponding price change vs bar delta occurred in history. Parameters: HistoryDepth - numbe
FREE
SOMFX1Builder
Stanislav Korotky
5 (1)
If you like trading by candle patterns and want to reinforce this approach by modern technologies, this script is for you. In fact, it is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains: SOMFX1Builder  - this script for training neural networks; it builds a file with generalized data about most characteristic pric
FREE
This is a demo version of a non-trading expert , which utilizes so called the custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place the EA on a chart of a working instrument. The lesser timeframe of the source chart is, the more precise resulti
FREE
The indicator calculates running total of linear weighted returns. It transforms rates into integrated and difference-stationary time series with distinctive buy and sell zones. Buy zones are shown in blue, sell zones in red. Parameters: period - number of bars to use for linear weighted calculation; default value - 96; smoothing - period for EMA; default value - 5; mode - an integer value for choosing calculation mode: 0 - long term trading; 1 - medium term trading; 2 - short term trading; defa
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker in real time. The expert OrderBook Recorder records market book changes and stores them in local files for further usage in indicators and expert adviser, including testing in the tester. The expert stores market book
FREE
This non-trading expert utilizes so called   custom symbols   feature to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time. This is a functionally limited demo version of  RenkoFromRealTicks . RenkoFromRealTicks utility can not work in the tester because it uses CustomSym
FREE
OrderBook Utilities is a script, which performs several service operations on order book hob-files, created by OrderBook Recorder . The script processes a file for work symbol of the current chart. The file date is selected by means of the input parameter CustomDate (if it's filled in) or by the point where the script is dropped on the chart. Depending from the operation, useful information is written into the log, and optionally new file is created. The operation is selected by the input parame
FREE
This indicator shows price changes for the same days in past years. D1 timeframe is required. This is a predictor indicator that finds D1 bars for the same days in past 8 years and shows their relative price changes on the current chart. Parameters: LookForward - number of days (bars) to show "future" price changes; default is 5; Offset - number of days (bars) to shift back in history; default is 0; ShowAverage - mode switch; true - show mean value for all 8 years and deviation bounds; false - s
FREE
This indicator shows price changes for the same days in the past. This is a predictor that finds bars for the same days in past N years, quarters, months, weeks, or days (N is 10 by default) and shows their relative price changes on the current chart. Number of displayed buffers and historical time series for comparison is limited to 10, but indicator can process more past periods if averaging mode is enabled (ShowAverage is true) - just specify required number in the LookBack parameter. Paramet
This non-trading expert utilizes so called custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also, it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place RenkoCharts on a chart of a work instrument. The lesser timeframe of the source chart is, the more precise resulting renko chart is, but the lesse
This script allows performing a walk-forward analysis of trading experts based on the data collected by the WalkForwardLight MT5 library. The script builds a cluster walk forward report and rolling walk forward reports that refine it, in the form of a single HTML page. This script is optional, as the library automatically generates the report immediate after the optimization in the tester is complete. However, the script is convenient because it allows using the same collected data to rebuild th
FREE
This indicator predicts rate changes based on the chart display principle. It uses the idea that the price fluctuations consist of "action" and "reaction" phases, and the "reaction" is comparable and similar to the "action", so mirroring can be used to predict it. The indicator has three parameters: predict - the number of bars for prediction (24 by default); depth - the number of past bars that will be used as mirror points; for all depth mirroring points an MA is calculated and drawn on the ch
If you like trading crosses (such as AUDJPY, CADJPY, EURCHF, and similar), you should take into account what happens with major currencies (especially, USD and EUR) against the work pair: for example, while trading AUDJPY, important levels from AUDUSD and USDJPY may have an implicit effect. This indicator allows you to view hidden levels, calculated from the major rates. It finds nearest extremums in major quotes for specified history depth, which most likely form resistence or support levels, a
The indicator displays most prominent price levels and their changes in history. It dynamically detects regions where price movements form attractors and shows up to 8 of them. The attractors can serve as resistance or support levels and outer bounds for rates. Parameters: WindowSize - number of bars in the sliding window which is used for detection of attractors; default is 100; MaxBar - number of bars to process (for performance optimization); default is 1000; when the indicator is called from
This is an intraday indicator that uses conventional formulae for daily and weekly levels of pivot, resistance and support, but updates them dynamically bar by bar. It answers the question how pivot levels would behave if every bar were considered as the last bar of a day. At every point in time, it takes N latest bars into consideration, where N is either the number of bars in a day (round the clock, i.e. in 24h) or the number of bars in a week - for daily and weekly levels correspondingly. So,
The indicator draws a histogram of important levels for several major currencies attached to the current cross rates. It is intended for using on charts of crosses. It displays a histogram calculated from levels of nearest extremums of related major currencies. For example, hidden levels for AUDJPY can be detected by analyzing extremums of AUD and JPY rates against USD, EUR, GBP, and CHF. All instruments built from these currencies must be available on the client. This is an extended version of
フィルタ:
Mohamed Tharwat Hussein El Sherief
376
 

Hello,

I have traded Renko for many years manually without using EAs. Like many other traders, I faced the challenge when attempting to Backtest and/or optimize trading EAs based on custom symbols (Renko charts) in MT5. I have tested different Renko Generators EAs. I have generally struggled with these main points:

A-Backtesting results vary a lot.

B-The coders who created these EAs are not responsive and if they do respond, their replies are very short and do not address my concerns.

C- When applying Renko Generators on custom symbols, some Renko generators do not work or the backtesting results do not show 100 percent history quality.

For example: using third-party Tick Data providers to create a custom symbol for any pair and then creating a Renko custom symbol based on this imported tick data. Not all MT5 brokers offer tick data for previous years and thus we need to rely on imported tick data.

The result is that either the Renko Generator does not create a Renko custom symbol (because the source chart is a custom tick data chart) or it creates a custom symbol but the backtesting shows zero percent history quality. Regardless of how accurate and precise the Renko Generator is, there will always be limitations with MT5. It is inevitable as MT5 does not offer a custom-tailored solution for Renko bars. Any EA generator is simply trying to apply the concept of Renko on a time-based chart.

In a time chart, all data series (o/h/l/c) have to be manipulated by any Renko Generator. There are limits and issues. Stanislav (the creator of RenkoFromRealTicks) is very transparent about it in one of his articles. Read them to understand. This shortfall will apply to any Renko Generator you use (from Stanislav or others).

All right! So now starts my review of Stanislav Korotky Renko Generator (RenkoFromRealticks) EA.

1- Communication and support:

I give 5 stars out of 5 for the communication with Stanislav. I purchased his EA when it was version 1. There were so many backtracks done from my end and I had many questions to send to Stanislav. To be honest and straightforward, I am a very skeptical person by nature and I compare different products and always question the result.

It has been a couple of weeks and Stanislav was always responsive and updated his EA with a newer version to address a concern I have. He has also backtested two of my EAs and changed the code in one of them to make sure (from his view) that the backtesting is accurate. I have also sent him a third EA and some tick data and asked him to backtest it without changing the code and his results closely matched with mine.

I have never had such a communication channel with any other Renko Coder! Thank you, Stanislav for your support. I have also sensed you are a sincere coder who takes responsibility for his work and is very open with limitations (from MT5) without hiding or polishing them.

2-Applying RenkoFromRealTicks on Custom symbols: No issues at all. Let’s say you have a custom EURUSD chart built from tick data provided by a third party. You can apply RenkoFromRealTicks on it and it will generate the Renko bars. Some other Renko Generators do not! This is because they rely on one-minute data and the authors won't inform you.

3-Backtesting: Some Renko Generators have a special mode for backtesting. In other words, the user has to change the Renko size for reversal bars. (for example, Reno Reversal should be 200 percent of Renko bar). This is not wrong as this depends on the Author’s recommendations when backtesting. However, in the case of RenkoFromRealTicks, you do not need such a feature and you should not worry about (the artificial opening of a bar) affecting the backtest.

I have exhausted this concern with Stanislav! Besides, it is a lot nicer to see the authentic look of Renko Bars in the bactested chart. Also bear in mind, that some Renko Generators do not address this issue at all! Coders decline to inform their users if backtesting is synthetic and not real. So again: it depends on how the Renko generator is coded and what are the recommendations (if any) for Backtesting.

The recommendation from Stanislav is to choose (Bulk Ticks per box) in the Tick History Mode for the most accurate backtesting. Stanislav may need to update the description of the EA for Backtesting.

Some Renko Generators do not deal well with (compressed tick data)! Read this carefully! Some tick data providers offer a compressed version of their tick data to reduce the file size of tick data. That is great; sometimes you would get 99 percent quality instead of 100 percent.

A one percent difference is not that much when it comes to reducing file sizes on your PC. However, here is the issue: Some Renko generators do not handle well such compressed Data. They construct the bars in the wrong way affect your trading EA Backtesting and give you an unrealistic high profit factor.

But when it comes to RenkoFromReal Ticks, there was no issue at all. This Renko generator deals very well with either compressed or standard-sized data. There was no real concerning discrepancy when I backtested my trading EAs. The important thing is that you have a detailed log report to investigate the construction of Renko bars and the tick data you are using. I have also once downloaded the wrong format of ticks from one of the tick data providers. I downloaded a .csv file that was not meant for MT5. RealDataFrom Ticks EA generated a blank custom symbol and upon going through the log report, I noticed many ticks are being missed or are bad. I then downloaded the right format for MT5, and the EA worked like a charm.

However, when I used another Renko generator, the bars were still created and the trading EA got me an unrealistic high-profit factor. I realized then that RenkoFromRealTicks is a trustworthy Renko generator I should use.

C-History Quality: With RenkoFromRealTicks, I got 99 percent quality with the compressed data and 100 percent quality with standard-size data. When it comes to standard size tick data, I tested another commercial Renko generator and it was close to RenkoFromRealTicks EA but it shows history quality at Zero percent! This does not give me assurance the backtesting is good (even if the results are very close).

D-Online Trading: I have not tested it on online mode but I do not see any reason why it would not perform as expected. Usually, the issue of any Renko EA generator is in backtesting not in online mode.

E-takes a bit of time when constructing the renko bars: I believe this is because it is a genuine Renko generator that does build Renko from real ticks. I have similar MT4 Renko generators that take some time to construct Renko HST and FXT files from tick data. Besides, I was skeptical of other MT5 Renko generators that generate Renko bars on the fly! Or in a few seconds.

I hope I have given a comprehensive review of the product based on experience and knowledge.

Finally, I want to add that I did not have a reference point to compare the backtesting results I got from my trading EAs tested on Renko bars generated by RenkoFromRealTicks EA. I used a couple of EAs in MT4 and MT5 and was looking for an outlier here or there. The best way to make sure that any Renko Generator EA is offering the best backtesting results is to run an EA on a server for a month or so and compare the life trading results with the backtested ones. I have not done this yet.

My Recommendations for future development: (This depends on the users’ opinion and voting for such features)

1-I wish I see another EA from Stanislav (a different product with a different purchase) that offers Flexible Renko Construction. (i.e. changing the open and close offset by percentage). This way it will be a universal Renko builder to create Mean Renko or other exotic Renko bars.

The current EA offers Conventional and rail-to-rail (Point O Chart) Renko bars. The author would be able to code a new Renko generator if there is enough demand for it.

2-Option to build a Renko chart based on a percentage of the price. This will be great for stock trading. I am not fond of Renko based on ATR and I think the percentages will be a better option.

Thank you,

carlospelegrini
87
carlospelegrini 2022.09.29 17:45 
 

the only non-gap renko I found.. it works okay

Alexey Lushnikov
1792
Alexey Lushnikov 2022.04.15 14:58 
 

Из нескольких Ренко генераторов, которые я покупал - этот лучший!

レビューに返信
バージョン 1.6 2024.02.15
- Custom symbol properties is changed to overcome strange unsynchronization problems, which may occur between bars and ticks in the tester;
- Custom symbol path is now preserved in accordance with original symbol.
バージョン 1.5 2024.02.11
A workaround for terminal bug: individual ticks for bars in history are dropped.
バージョン 1.4 2024.02.10
- History is now building faster;
- New parameter is added - TickHistoryMode. It allows you to improve renko quality (backtesting precision) due to tick generation on the history. Possible modes: SingleTicks - most simple and fast mode, equivalent of the previous version; OHLCticks - generation of several ticks per box - intermediate mode by speed and quality; BulkTicks - most precise mode, but it's the slowest one - all original ticks are translated into boxes of the history.
バージョン 1.3 2022.11.04
History start autodetection is added: by default (if StartFrom parameter is left with "zero" date, i.e. showing 1970.01.01 00:00:00), the program generates renko from most distant date (bar) available on the current chart.
バージョン 1.2 2021.02.18
Fixed a bug with incomplete delta calculations under certain conditions: depending from tick flags, some of the ticks could be skipped.
バージョン 1.1 2021.02.04
New option of volume delta calculation based on changes of the original symbol chart building price (bid or last) is added.