• Overview
  • Reviews (15)
  • Comments (99)
  • What's new

Ultimate Renko

4.58

Ultimate Renko is a full implementation of a robust Renko style charting solution for MT4. It enables creating custom live charts resembling Median Renko, Mean Renko, Turbo Renko, and Better Renko candles as well as Vanilla Renko and Renko with wicks, PointO charts, and many more. This all-in-one package provides all of the signals needed by day traders, scalpers, and even long-term traders.

You can apply all of the standard and custom indicators and technical studies as well as templates to the Renko charts and you can run EAs directly on these charts as well* (see text below the input summary).

To create the Renko chart you need to attach the indicator to a standard timeframe (1 minute is recommended) and use the indicator's settings to generate a live custom chart that will be displayed on an offline chart.

Available settings

== Bar type definition ==

  • Renko body size - Defines the size of the candle body.
  • Renko body calculation mode - ( pips / ticks/ points / ATR % / % )
  • Presets (sets 3 values below): (Renko / Median Renko / PointO / Turbo Renko / Hybrid Renko)
  • Open offset % (0 to ..) - offsets the new trending bar's open value back by % or the defined candle body size (see the last screenshot)
  • Reversal Open offset % (0 to ..) - offsets the new reversal bar's open value back by % or the defined candle body size (see the last screenshot)
  • Reversal bar size % (0 to ..) - sets the size of the reversal bar as a  % or the defined candle body size (see the last screenshot)
  • Show wicks (true/false)
  • Build history for a number of days
  • Build history starting from date

== Settings for ATR based calculation ==

  • Daily ATR period
  • Percentage of ATR to calculate candle body size

== Chart synchronization ==

  • Truncate trailing digits on the first renko
  • Number of digits to truncate
  • Reset Open on each trading day
  • Override start of trading day

== Misc settings ==

  • Display on offline chart (M2, M3, M4, M6, M7, M8, M9 or M10)
  • Apply template to offline chart (name of the template to apply to the range bars chart)
  • Automatically open offline chart (true/false)
  • Build history for a number of days
  • Re-calculate chart on history updates
  • Minimum chart update interval (defined in milliseconds)

== Alerts and Info ==

  • Sound signal on a new bar (true/false)
  • Only signal reversal bars (true/false)
  • Use Alert Window to display signal (true/false)
  • Sound file to play on a bullish bar
  • Sound file to play on a bearish bar
  • The color of High threshold indicator
  • The color of Low threshold indicator

*) EAs can be used directly on the offline chart however a small tweak is required, so you need to have access to your EA source code. Below is an EA skeleton example that is capable of running directly on the offline chart:

#property strict
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{
   // You need to initialize a time to call the OnTimer event.
   // It is used to call OnTick whenever the Bid price changes.
   // The check is made every 250 ms, which should be sufficient.
   
   EventSetMillisecondTimer(250);
      
   //---
   
   return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
   // Remember to destroy timer in the OnDeinit event.
   
   EventKillTimer();

   //---      
}
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
{
   //
   // This is where all of your EA trading logic resides.
   // I just write to the log in this example...
   //
   
   Print("OnTick function call - bid = "+(string)Bid);
}
//+------------------------------------------------------------------+
//| The OnTimer function is used to call OnTick()                    |
//| whenever the Bid price changes.                                  |
//+------------------------------------------------------------------+
void OnTimer()
{
   RefreshRates();
   static double prevBid = 0; 
   
   if(Bid != prevBid)
   {
      prevBid = Bid;
      OnTick();
   }         
}
//+------------------------------------------------------------------+
Reviews 15
Ash
56
Ash 2023.01.31 13:43 
 

The product itself is great. Just be 100% aware that you have to get the version from the website itself if you want your the renko charts to work with EAs before purchasing!

PlFialho
39
PlFialho 2021.11.12 08:18 
 

Very Niceee

Vincent Paul Colombe
683
Vincent Paul Colombe 2021.10.08 17:04 
 

Very good! Works flawlessly, only Renko indicator working for me!!

Recommended products
Power Renko MT4
Pierce Vallieres
Power Renko is an indicator which plots Renko bricks underneath the chart using a histogram. You can select the brick size and the timeframe of the Renko bricks as well as whether or not to use the close price or the high/low price of the candles. Renko bricks are based on price alone, not time, therefor the Renko bricks will not be aligned with the chart's time. They are extremely useful for trend trading and many different strategies can be formed from them. Buffers are provided allowing you t
Tether Angle EA
Edgar Dos Reis Matias
Introducing the Tether Angle MT4 EA (T-Angle EA)  Unlock the full potential of the forex market with the cutting-edge T-Angle EA . Designed to capitalize on the dynamic movements of the EUR/USD currency pair, this expert advisor combines the power of Tether Line Angle Trend to deliver consistent and optimized trading outcomes. Key Features: EUR/USD Focus: The T-Angle EA is effectively tailored for the EUR/USD currency pair, ensuring a highly specialized approach. By concentrating on this
Renko Bars 3in1
Yuriy Shatsckiy
5 (2)
The Renko_Bars_3in1 is designed for plotting 3 types of Offline Renko charts. Standard Renko Bar (the reversal bar is twice the size of the bar). Renko Range Bar (the size of all bars is the same). Renko Bars with the ability to adjust the size of the reversal bar. Attention : The demo version for review and testing can be downloaded here . Note . A chart with the M1 period is necessary to build an offline chart. When the indicator is attached to a chart, the offline chart is opened automaticall
Basic Renko MT4
Mehran Sepah Mansoor
The Basic Renko indicator shows the Renko boxes on the main chart. MT5 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. Inputs Box Size : The size of t
FREE
Rira Renko
Vitor Palmeira Abbehusen
RENKO on Time Chart This indicator is an enhanced Renko, so you can watch the Renko bricks on the chart to understand price movement more clearly the other improvement is automated box size according to ATR (Average True Range) period you can set the ATR number as you want and the box size of Renko changes automatically based on price movement Inputs Mode: Box size is the input to specify the size of the Renko box you want to print on the chart. This input lets you choose the fixed b
极大的提升了交易感官,一目了然的走势展示,简洁高效。 极大的突出展示了行情的趋势脉络,跟随时间周期适应变化,替用户交易者研判了行情走势,简洁高效 同时我们还提供了主窗口和副窗口的展现,有需要可以联系我作者本人,感谢支持。 像传统的renko,又不是传统的renko,技术在发展,同样的砖图可以有不一样的绘制和计算展现。 希望可以帮到大家的交易,再次感谢。 极大的提升了交易感官,一目了然的走势展示,简洁高效。 极大的突出展示了行情的趋势脉络,跟随时间周期适应变化,替用户交易者研判了行情走势,简洁高效 同时我们还提供了主窗口和副窗口的展现,有需要可以联系我作者本人,感谢支持。 像传统的renko,又不是传统的renko,技术在发展,同样的砖图可以有不一样的绘制和计算展现。 希望可以帮到大家的交易,再次感谢。
Velas RENKO
Ramon Sobrevals Arce
Immediately plots renko bars in an external/indicator window.  One of the distinctive advantages Renko charts offer is the fact that they are not time dependent. Therefore, the new Renko blocks are only traced when the price moves higher or lower by the specified number of points.  For example, a 10 pip (100 points) Renko chart would plot the blocks when price moves 10 pips higher in an uptrend or 10 pips lower in a downtrend. Renko charts removes "noises" from the Market and i t helps to ident
Median Renko Terminator works best with renko charts if you do not have a renko chart generator I will email it to you for free and give you the correct settings for scalping or to swing trade NON-REPAINT  COMES WITH ALERTS WHEN THERE IS A SIGNAL Conditions to sell: big purple arrow shows you the direction first then you take the small purple arrow to enter the same direction of the purple arrow. Conditions to buy: big white arrow shows you the up direction first then you take small white arrow
EMACrossRenko
Hong Ling Mu
1 (1)
<LOGIC> The EMA RENKO EA should run in Renko chart to show the best performance. The EA will entry based on 2 EMA line cross. (it is changeable in parameter.) As a result of FT , the best box size for XAUUSD (GOLD) is BOX 60 to 100.  Renko box size should be larger than spread value. Normally 3 times of spread. Please decide your box size with yourself. The EA will place addtional order as Grid if the trend move  to xxx pips from the last order. You can turn on/off in the parameter. T
Instantaneous cycle identifier
Mahmoud Helmy Sedik Mohamed Mansour
This is first public release of detector code entitled "Enhanced Instantaneous Cycle Period" for PSv4.0 I built many months ago. Be forewarned, this is not an indicator, this is a detector to be used by ADVANCED developers to build futuristic indicators in Pine. The origins of this script come from a document by   Dr   . John   Ehlers   entitled "SIGNAL ANALYSIS CONCEPTS". You may find this using the NSA's reverse search engine "goggles", as I call it. John Ehlers' MESA used this measurement to
Bigger chart labels would allow the user to be entirely aware of which chart he/she is on.  Each chart window is unique, containing different patterns and economic motives so acknowledging the chart window would be absolutely essential!  There are well known Economic Time Zones included in clear view, by choice!    Simple does it! Use your computing mouse scroller, clicking with the right finger on the label, in order to customize the label properties. From there, choose your preferred color, f
FREE
Candle GAP
Thushara Dissanayake
The Candle GAP indicator is an essential tool for traders utilizing Gap Trading Strategies as it automatically identifies candle gaps for each day of the week. A gap refers to a price level difference between the close and open of two consecutive days. This indicator recognizes four types of gap patterns: Common, Breakaway, Continuation, and Exhaustion. By incorporating this indicator into any chart, traders can validate their signals and enhance their trading decisions. One of the key features
Renko Trade Alarm
Miroslaw Stachowiak
5 (1)
Renko Trade Alarm   is designed to work on chart with Renko and Mean Renko candles. It generate B uy and S ell signals on the chart and send notifications. Visualization of signals: Swing  - Formations 123. Pattern  - Double Bottom, Double Top, Triple Bottom, Triple Top, Formations 123 Reverse. Scalp  - Periodic change in the price direction, plus additional filters in the form of oscillators Stochastic  and  MACD. Ichi  - Signals filtered by the Ichimoku indicator. For correct operation an offl
VR Cub
Vladimir Pastushak
VR Cub is an indicator for getting high-quality entry points. The indicator was developed to facilitate mathematical calculations and simplify the search for entry points into a position. The trading strategy for which the indicator was written has been proving its effectiveness for many years. The simplicity of the trading strategy is its great advantage, which allows even novice traders to successfully trade with it. VR Cub calculates position opening points and Take Profit and Stop Loss targe
The indicator displays Renko bars on the chart, uses their data to calculate and display the moving average, PriceChannel and generates buy/sell signals. Renko is a non-trivial price display method. Instead of displaying each bar within a time interval, only the bars where the price moved a certain number of points are shown. Renko bars do not depend on a time interval, therefore the indicator works on any timeframe without losing its efficiency. The PriceChannel indicator displays the upper, lo
Candle Average
Mahmoud Helmy Sedik Mohamed Mansour
Candlestick patterns have little value without the right   price action   context. If you’ve been studying candlestick formations, you must have heard this principle many times over. You cannot trade patterns in a vacuum. But what do we mean by   context ? It is an overall technical assessment that encompasses: The market’s trend Support and resistance structure Recent price formations Volatility It seems intimidating at first, but a simple trading indicator can help us out here - the   moving a
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5 version  |  FAQ The Owl Smart Levels Indicator  is a complete trading system within the one indicator that includes such popular market analysis tools as  Bill Williams' advanced fractals , Valable ZigZag which builds  the correct wave structure  of the market, and  Fibonacci levels  which mark the exact levels of entry into the market and places to take profits. Detailed description of the strategy Instructions for working with the indicator Advisor-assistant in trading Owl Helper Private
Renko Moving Average
Vitor Palmeira Abbehusen
This indicator gives you the Moving Average based on Renko chart. A   Renko chart   is a type of chart that is built using price movement rather than both price and standardized time intervals like most charts are. A Moving Average based on Renko chart is considered less noisy since it is not based on the time and only based on price change. You can see my free enhanced Renko indicator here . Inputs: Box Size: Renko box size based on market Points. Period: Moving Average Period Method: Mov
The Secret Code trading advisor is an advanced trading system developed based on many years of experience of famous traders. This advisor is focused on trading the EUR/USD currency pair and is distinguished by the fact that it avoids the use of high-risk trading methods. In particular, it does not use approaches such as grid trading, martingale and doubling down methods. Attention Trader. The number of copies will be limited to 100-150 copies. Every 25 copies will increase the cost of the adv
Heiken Ashi EA MT4
Juvenille Emperor Limited
5 (14)
Heiken Ashi EA ΜΤ4  is a fully automated Expert Advisor for trading the   Classic or Smoothed   Heiken Ashi candles at an entirely new approach.   Heiken Ashi EA MT4   opens a single trade after the first different color candle's close and an opposite trade on every Heiken Ashi color change. There is an option to use this EA by opening the first trade after the 1st Heiken Ashi candle of different color has been closed and then open a new same direction trade on every candle, as long as the color
Chaser
Thebo Junior Mahlangu
1 (1)
Introduction  This Indicator Is Based On Average Price/Maximum Price Moves, And Using Moving Bollinger Bands And Moving Averages. The Advantage Of Using It With YOUR own Analysis Will Confirm Potential Supports And Resistances While it Compliments With Your Analysis  The Indicator Is Non-Repainting AND Along With Our Special Trend METRE that Changes With The Conditions OF A Bullish Or Bearish Trend....  Recommend Time-Frames: H1  H4 M15 Usage: The Indicator Is Very Profitable I
FREE
This is an indicator for additional signal filtering. It can be used as an additional filter in a trading system. The indicator does not redraw its data and can be used both in forex trading and with binary options. It has 3 operation modes and flexible sensitivity settings. The indicator uses multiple buffers, therefore it can be easily used in various Expert Advisors.
Before
Nadiya Mirosh
The Before indicator predicts the most likely short-term price movement based on complex mathematical calculations. Most of the standard indicators commonly used in trading strategies are based on fairly simple calculations. This does not mean that there were no outstanding mathematicians in the world at the time of their creation. It is just that computers did not yet exist in those days, or their power was not enough for the sequential implementation of complex mathematical operations. Nowa
PZ Trend Trading
PZ TRADING SLU
4.75 (4)
Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whipsawed Recognize profitable pullbacks, breakouts and early reversals The ind
RSI TrendLine Divergency Message is an indicator for the MetaTrader 4 trading platform. Unlike the original indicator, this three in one version has a system of alerts that inform on market situation changes. It consists of the following signals: when the Main line crosses the levels of extreme zones and 50% level; when the Main line crosses the Trend line in the indicator window; divergence on the last bar. Parameters of levels of extremum, 50-level and divergence are adjustable. Parameters L
Master Scalping M1 is an innovative indicator that uses an algorithm to quickly and accurately determine the trend.The indicator calculates the time of opening and closing positions, the indicator's algorithms allow you to find the ideal moments to enter a deal (buy or sell an asset), which increase the success of transactions for most traders. Benefits of the indicator: Easy to assemble, does not overload the chart with unnecessary information. Can be used as a filter for any strategy. Works on
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
MASi Three Screens
Aleksey Terentev
5 (2)
MASi Three Screens is based on the trading strategy by Dr. Alexander Elder. This indicator is a collection of algorithms. Algorithms are based on the analysis of charts of several timeframes. You can apply any of the provided algorithms. List of versions of algorithms:     ThreeScreens v1.0 - A simple implementation, with analysis of the MACD line;     ThreeScreens v1.1 - A simple implementation, with analysis of the MACD histogram;     ThreeScreens v1.2 - Combines the first two algorithms
FREE
Trade Direction
Gevorg Hakobyan
5 (1)
The oscillator shows trend direction using its own algorithm, which is based on calculating price values ​​by analyzing prices of separate currencies (original valuation of currencies). The histogram shows the average value of physical price change over the selected period. When the histogram has a positive value, the trend is rising, if negative - the trend id falling. The indicator uses standard RSI to determine the current market direction on a selected period as follows: the default value of
Attraverso l'indicatore Savius Zone potrai finalmente: Definire delle zone oggettive da attenzionare Ridurre la discrezionalità Filtrare i tuoi pattern operativi Avvalerti di un metodo comprovato Qui di seguito alcune funzioni dell'indicatore Savius Zone: Zone Buy & Sell L’indicatore fornisce delle zone buy e sell ogni giorno dopo l’apertura del mercato cash sui seguenti mercati: DAX, S&P500, Nasdaq, Russel2000, Dow Jones Occasioni giornaliere Savius Zone fornisce occasioni di trading tutti i
Buyers of this product also purchase
Gann Made Easy
Oleg Rodin
4.96 (45)
Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of mr. W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit Levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET MY TRADING TIPS PLUS A GREAT BONUS! Probably you heard already many times about Gann trading methods. Usually Gann's theory is very complex thing not only
Atomic Analyst
Issam Kassas
5 (1)
First of all Its worth emphasizing here that this Trading Indicator is   Non-Repainting ,   Non-Redrawing   and   Non-Lagging   Indicator, Which makes it ideal from both manual and robot trading.  The Atomic Analyst  is a PA Price Action Indicator that uses Strength and Momentum of the price to find a better edge in the market. Equipped with Advanced filters which help remove noises and false signals, and Increase Trading Potential. Using Multiple layers of complex Indicators, the Atomic Anal
Scalper Vault
Oleg Rodin
5 (27)
Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. Please contact me aft
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Trend Screener
STE S.S.COMPANY
4.83 (86)
Unlock the Power of  Trends trading with Trend Screener Indicator: Your Ultimate Trend Trading Solution powered by fuzzy logic and Multi-currencies System ! Elevate your trend trading with Trend Screener, the revolutionary trend indicator powered by   fuzzy logic.  It is a powerful trend-following indicator that combines over  13 premium tools and features and 3 trading strategies  , making it a versatile choice to   make your Metatrader a Trend Analyzer. LIMITED TIME OFFER : Trend Screener Indi
Introducing   Quantum Trend Sniper Indicator , the groundbreaking MQL5 Indicator that's transforming the way you identify and trade trend reversals! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Trend Sniper Indicator   is designed to propel your trading journey to new heights with its innovative way of identifying trend reversals with extremely high accuracy. ***Buy Quantum Trend Sniper Indicator and you could get Quantum Breakout Indicator fo
First of all Its worth emphasizing here that this Trading Tool is Non-Repainting Non-Redrawing and Non-Lagging Indicator Which makes it ideal for professional trading . The Smart Price Action Concepts Indicator is a very powerful tool for both new and experienced traders . It packs more than 20 useful indicators into one combining advanced trading ideas like Inner Circle Trader Analysis and Smart Money Concepts Trading Strategies . This indicator focuses on Smart Money Concepts providing in
CURRENTLY 26% OFF Best Solution for any Newbie or Expert Trader! This Indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With only ONE chart you can read Currency Strength for 28 Forex pairs! Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity? User manual: click here That's the first one, the original! Don't buy a worthle
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
Entry Points Pro
Yury Orlov
4.7 (224)
Top indicator for MT4 providing accurate signals to enter a trade without repainting! Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! It can be applied to any financial assets:  forex, cryptocurrencies, metals, stocks, indices.  MT5 version is here   It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of t
Scalper Inside PRO
Alexey Minkov
4.75 (55)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
This indicator I use with RENKO and RangeBar candle Discover the Secret to Successful Forex Trading with Our Custom MT4 Indicator! Have you ever wondered how to achieve success in the Forex market, consistently earning profits while minimizing risk? Here is the answer you've been searching for! Allow us to introduce our proprietary MT4 indicator that will revolutionize your approach to trading. Unique Versatility Our indicator is specially designed for users who prefer Renko and Rangebar candle
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
Currently 20% OFF ! Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch the e
Introducing the Miraculous Forex Indicator: Unleash the Power of Precision Trading Are you tired of searching for the perfect forex indicator that truly delivers exceptional results across all time frames? Look no further! The Miraculous Forex Indicator has arrived to revolutionize your trading experience and propel your profits to new heights. Built upon a foundation of cutting-edge technology and years of meticulous development, the Miraculous Forex Indicator stands as the pinnacle of str
Market Reversal Alerts
LEE SAMSON
4.21 (121)
Profit from market structure changes as price reverses and pulls back. The market structure reversal alert indicator identifies when a trend or price move is approaching exhaustion and ready to reverse. It alerts you to changes in market structure which typically occur when a reversal or major pullback are about to happen. The indicator identifies breakouts and price momentum initially, every time a new high or low is formed near a possible exhaustion point. The indicator draws in a rectangle on
FX Power MT4 NG
Daniel Stein
5 (8)
Trading GOLD, and currencies, with the dog walk strategy  - super smart Trading GOLD, and currencies, with the breakout strategy  - super easy Visit our all-new   Stein Investments Welcome Page   to get the latest information, updates and trading strategies. FX Power MT4 NG  is the next generation of our long-time very popular currency strength meter, FX Power.  And what does this next-generation strength meter offer? Everything you have loved about the original FX Power  PLUS GOLD/XAU stre
Multiccurrency and multitimeframe Buy and Sell alerts. Auto trailing stop and risk reward takeprofit. The indicator scans and analizing the market so You have nothing to do. trade all your currency pairs in 1 chart! When addig it to a chart change the timeframes and find the best timeframe for that curreency pair chart with the signals! Every pair is different! Strategy:  When the FIRST Buy or SEll arrow appears that is your entry.( The alert panel will alert you on each pair and timeframes you
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years, Quantum Breakout PRO is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout box.
PRO Renko System
Oleg Rodin
5 (24)
PRO Renko System is a highly accurate trading system specially designed for trading RENKO charts. The ARROWS and Trend Indicators DO NOT REPAINT! The system effectively neutralizes so called market noise giving you access to accurate reversal signals. The indicator is very easy to use and has only one parameter responsible for signal generation. You can easily adapt the tool to any trading instrument of your choice and the size of the renko bar. I am always ready to provide extra support to help
TrendDecoder Premium
Christophe, Pa Trouillas
5 (3)
Identify ranges  | Get earliest signals of Trends  | Get clear exits before reversal  | Spot the Fibo levels the price will test Non-repainting, non-delayed indicator - ideal for manual and automated trading - for all assets and all time units $69   for launch - then back to >>   $149 After purchase,   please contact me on this channel   for recommended and personalised settings MT5   version:  Click here Get our full method with  BladeSCALPER  and   PowerZONES What is it about? TrendDECOD
Currency Strength Wizard is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real str
Trend Forecasting
Mohamed Hassan
5 (15)
This indicator is unstoppable when combined with our other indicator called Katana. After purchase, send us a message and you could get Katana for FREE as a BONUS After purchase, send us a private message for your instructions.  MT5 version: click here There are limited copies available at $55. Next price is $105. Don't miss this great deal!  The Trend Forecasting indicator is a very unique & easy tool that is able to make prediction about future price movement based on the signal
Advanced Currency IMPULSE with ALERT
Bernhard Schweigert
4.91 (493)
CURRENTLY 31% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a secret formula. With only ONE chart it gives Alerts for all 28 currency pairs. Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity! Built on new underlying algorithms it makes it even easier to identify and confir
FX Volume
Daniel Stein
4.6 (35)
Visit our all-new   Stein Investments Welcome Page   to get the latest information, updates and trading strategies. FX Volume is the FIRST and ONLY volume indicator that provides a REAL insight into the market sentiment from a broker's point of view. It provides awesome insights into how institutional market participants, like brokers, are positioned in the Forex market, much faster than COT reports. Seeing this information directly on your chart is the real game-changer and breakthrough solut
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
This indicator will detect harmonic patterns that are drawn on the chart by manual and automatic methods. You can see user manual from this link: Notes Indicator has control panel and it will save every (chart & timeframe) settings. You can minimize it to have more space on chart and you can press close button to hide all indicator data on chart if you prefer to work with other analysis tools  When you use this indicator and change the settings, add indicators like Moving Average or Bollinger
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro  (MT4) is a powerful and effective tool that automatically detects the direction of the trend using the Donchian Channel and provides you with an entry and exit trading signals! This multi-function indicator includes a trend scanner, trading signals, statistical panel, screener, trading sessions, and alerts history dashboard. It is designed to provide you with trading signals and save you hours analyzing the charts! You can download the user manual and installation
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (15)
Market Structure Patterns   is an indicator based on   smart money concepts   that displays almost all of the   SMC/ICT   elements needed to take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the aut
More from author
X Tick Chart
Artur Zas
4.75 (8)
The indicator combines the features of both the Tick charts and Volume Bar charts. The mode can be selected in the indicator's settings. Tick charts measure the number of transactions per bar. To give you an example if you have a 233 tick chart, each bar measures 233 transactions per bar and a new bar is plotted after 233 transactions. You can choose any number of ticks per bar but most traders choose Fibonacci numbers (1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233...). Volume bar charts are desi
Robust median Renko style indicator for creating custom charts resembling Median Renko, Mean Renko, Turbo Renko and Better Renko candles as well as vanilla Renko with wicks plus Point-O charts. This all in one package provides all of the signals needed by day traders, scalpers, and even long-term traders. Main characteristics The indicator is an overlay on the main chart so it is possible to utilize one-click trading and order manipulation directly on the custom charts. Visual order placement
Range Bars
Artur Zas
4 (4)
The robust charting solution enables creating custom live range bar charts on the MetaTrader 4 trading platform. You can apply all of the standard and custom indicators and technical studies directly to the range bar charts and you can run EAs directly on these charts as well* (for details see text below the input summary). To create a range bar chart you need to attach the Range Bar indicator to a standard time frame (1 minute is recommended) and use the indicator's settings to generate a live
A utility used to create custom Tick or Volume bar charts and provide real-time updates. This is an MT4 "offline" chart equivalent which is very simple to use. You can attach any MT5 compatible indicator or template to the tick chart and perform your technical analysis. Tick charts measure the number of transactions per bar. You can choose any number of ticks per bar but most traders choose Fibonacci numbers (1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233...). The generator uses tick data to plot
Professional range bar charting on a custom symbol chart accurate pricing to the tick  accurate timeline (no future date projections) very responsive charts An Expert Advisor (EA) is used to create a RangeBar custom chart and provide real-time updates. It is an MT4 "offline" range bars chart equivalent. The simplicity of use - Attach the EA to any time-based chart that you wish to see Range Bars for, input your desired parameters and you are ready to go! You can attach any MT5 compatible indicat
Professional renko charting on a custom symbol chart accurate pricing to the tick  accurate timeline (no future date projections ) every renko variation in a single package very responsive charts optional display of live trade levels on the chart An Expert Advisor (EA) used to create custom Renko charts and provide real-time updates. This is an MT4 "offline" chart equivalent which is very simple to use. All historical renkos are constructed using real tick data from the broker's server.
A countdown timer for the  Volume bar chart generator  and  Tick chart generator  products, which are available for download from the MQL5 Market: Tick chart generator: https://www.mql5.com/en/market/product/29215 Volume bar chart generator: https://www.mql5.com/en/market/product/47197 The counter conveniently displays the number of ticks or transactions (depending on the chart) that need to pass for a new bar to start printing. The user can set the following indicator inputs. Volume type
FREE
The extreme volume indicator helps identify turning points in the market by pinpointing spots of higher than average volume. Such points usually indicate the start of a trend or a turning point in the market. The indicator averages out volume readings over an extended period of time and calculates a volume threshold level. When this level is breached, it identifies the most likely trend direction using the trend of the candle that breached the volume threshold. The direction indicator (red or gr
CMI - Profit from trending and ranging markets. The CMI indicator is a two-part system used to trigger both trend and counter-trend trades, that has been introduced by Daniel Fernandez in an article published in Currency Trading Magazine (August 2011 issue). It is a simple, yet effective indicator, which gauges whether the market has behaved in a choppy (non-directional) manner or trending (directional) manner. CMI calculates the difference between the most recent bar's close and the close n bar
The trend scalper candles are used to identify short-term trends based on the readings of the MACD, RSI and ATR indicators. All indicator calculations are visualized by candle colors which are overlapped on the chart. The indicator uses gray , green and red colors to paint individual candles, which gives you a lot of useful and easy to read information. Gray candles Gray candles indicate a range bound period and the information can be used to trade breakouts. Simply mark the high and low of th
The professional line break chart generator is used to create live line break charts (i.e. 3 line break ). The chart is plotted using MT4's offline charging facility thus making it possible to trade* directly from the chart as well as attach any of the standard or custom indicators to perform technical analysis. The line break chart can be displayed as the most widely used 3 line break chart or a custom variation such as 2 or 5 line break chart . Wicks can be displayed or hidden on the chart - t
Range Bars for MetaTrader 5 is a unique tool for conducting technical analysis directly on the charts, as the indicator is an overlay on the main chart and range bars are calculated using real tick data. The trader can place and modify orders directly on the range bar chart (even with the use of one-click trading). Apart from range candles, the indicator also includes the most commonly used technical studies which are 3 moving averages (Simple, Exponential, Smooth, Linear-weighted, Volume-weight
A professional line break chart which is displayed directly in the chart window thus making it possible to trade directly from the MetaTrader 5 charts. The line break chart can be displayed as the most widely used 3 line break chart or a custom variation such as 2 or 5 line break chart . Wicks can be displayed or hidden on the chart - they give a lot of additional information regarding the underlying price action. The indicator's settings include: Line break number - determines the number of lin
Robust trading panel for use on any symbol (including RangeBars or Renko custom symbols). The tool can be placed anywhere on the chart and offers the following array of features: One-click instant order entry. Pending order entry using horizontal lines on the chart Pending order entry using keys in Entry price (E/P) and optional Stop Loss (S/L) and/or Take Profit (T/P) A choice between fixed trading volume or risk-based volume calculation based on the available account equity, entry price, and t
Create and trade timeframes in seconds. The bar time duration is freely adjustable from 1 second and up. The chart is accurately constructed using real ticks from the broker's server. Main characteristics The indicator is an overlay on the main chart, making it possible to utilize one-click trading and on-chart order manipulation. History calculated using real tick data. Built-in technical studies: 4 moving averages (Simple, Exponential, Smooth, Linear-weighted, Volume-weighted using tick or rea
The Trade Tracker Library is used to automatically detect and display trade levels on custom charts. It is an especially useful add-on for EAs that trade on custom charts in MT5. With the use of this library, the EA users can see trades as they are placed via the EA (Entry, SL & TP levels) in real-time. The header file and two examples of EA skeleton files are attached in the comments section (first comment). The library will automatically detect the tradable symbol for the following custom
Filter:
Ash
56
Ash 2023.01.31 13:43 
 

The product itself is great. Just be 100% aware that you have to get the version from the website itself if you want your the renko charts to work with EAs before purchasing!

PlFialho
39
PlFialho 2021.11.12 08:18 
 

Very Niceee

Vincent Paul Colombe
683
Vincent Paul Colombe 2021.10.08 17:04 
 

Very good! Works flawlessly, only Renko indicator working for me!!

Henry
49
Henry 2021.02.01 15:20 
 

Thanks Artur for your work.

Boriwan
647
Boriwan 2020.09.25 12:32 
 

User didn't leave any comment to the rating

eliseexige
2057
eliseexige 2020.09.23 16:19 
 

after multiple attempts during live markets, this is just like the rest of Artur's products. It will freeze, it will refresh the data and screw up custom indicators, and it will cost you because of it. I'd give this a 0 or negative star rating if it were possible. AVOID if you are a serious trader and need stability in fast markets, because you won't get it here. EDIT 2: Artur is working with me on all products to solve issues and I have adjusted the feedback accordingly.

Janis
466
Janis 2020.01.14 09:19 
 

Support: Creator told me, that he will contact me,it has been 7 days and no response.

Ultimate Renko hangs MT4 platform, ATR settings work incorrectly. If you close MT4 with Renko on it, then next time you open MT4, you will have twice or even triple more Renko charts. I give only one star, because I hope, creator will fix these problems in the future editions.

Spartakus93
95
Spartakus93 2019.08.29 17:39 
 

It's perfect!

Frederico De Mello Amaral
243
Frederico De Mello Amaral 2019.05.05 23:45 
 

User didn't leave any comment to the rating

Alessio
292
Alessio 2019.03.31 10:41 
 

Nice adjustable indicator. worthy to give 5 stars. I did not waste my money.... This Indicator works with minus parameters too . Ha ha ha ha !!!! Amazing.

Harry Gunadi Permana
1828
Harry Gunadi Permana 2018.07.09 10:29 
 

Great indicator!

Martial Curti
43
Martial Curti 2018.05.31 08:59 
 

User didn't leave any comment to the rating

Zentrader2015
1470
Zentrader2015 2018.05.25 22:00 
 

Very nice product and great customer service

Saetajhv9
24
Saetajhv9 2017.11.16 07:05 
 

no he tenido soporte hasta ahora.

jagdish111
19
jagdish111 2017.10.03 07:06 
 

Excellent indicator and excellent support

Reply to review
Version 1.24 2021.07.19
Fixed problem with ATR% bars on charts not fully synchronized with the broker's server.
Version 1.23 2021.05.19
Added new dynamic renko body size algorithm (price % as used on Definedge TradePoint);
Optimized indicator inputs.
Version 1.22 2020.12.03
Update "Truncate trailing digits on the first renko" to include truncating digits before the decimal point
Version 1.21 2020.11.16
Fixed "Truncate trailing digits on the first renko" bug,
Added additional timeframes for ATR based brick size calculation.
Version 1.20 2020.09.25
Replaced optional first pip offset by more intuitive "Truncate trailing digits on the first renko" & "Number of digits to truncate" combination. The setting will also be applied on each new trading day if "Reset Open on each trading day" is enabled as well.
Version 1.19 2019.06.04
Added option for overwriting the start time of trading day
Version 1.18 2019.05.27
Added additional synchronization setting “Build history starting from date”. This setting overrides the value set in “Build history for number of days” and lets you precisely define the chart's anchor point in history via date and time of the first processed 1-minute bar.
Version 1.17 2019.04.15
Added more offline timeframes
Version 1.16 2019.01.14
Maintenance release
Fixed template problem where an EA from the template has not been attached.
Version 1.15 2018.12.03
Upgraded to full Ultimate Renko implementation.
Added optional template loading and optional auto open for the renko chart.
Version 1.13 2018.05.28
Maintenance release
Historical charts are now built using data from the chart where the indicator has been attached (for example: M1, M5, M15, etc.)
Version 1.11 2017.11.09
Bug fixes
Version 1.10 2017.09.27
Bug fix: fixed timescale & startup glitch
Version 1.1 2017.08.22
Bug fix: Corrected date/time info bug occurring on live renko bars