Login / Register
Add a review
Log in
Sign UP
[bws_google_captcha]
Renko Advanced lite

0.00

This Renko Advanced indicator may be regarded as some trading platform.

that the indicator offers a different perspective to determine the money pair: it is a complete  classic indicator and it can be used for manual trading or for automatized trading with some expert adviser. when the price reaches a threshold a new block is made.

It takes advantage of a visualization  like Renko visualization kind, offering less sound than normal candles pub.

The indicator beside the Renko bars, reveals also 3 moving averages.

Push telling was introduced when a new bar is created or a cross between moving averages occurs.

PS2: if nothing is displayed turn off the Sync feature

Introduced: datetime for renko bars and wicks. If you find some bugs let me know

How to use

This is the lite version of the Renko Advanced indicator.

The only limitations of this version are some parameters can not set (read only). In this way the user can start to appreciate the Renko visualization and how this indicator can be very powerful and simple at the same time.

Time frame should be low( like 5M but it depends of brick height) to have a good representation of historical bars, otherwise the user should adapt the timeframe related to brick height set.

PS: please rate this indicator and leave a comment. Do not forget: your feedbacks are important!

How to set the brick height? It is a good questions, it depends of the duration we want to stay in the market, the volatilty of the market. A good choice could be using the ATR indicator to check the average value of candles in the TF we want to operate.
Renko is very good for giving the idea of the trend with very low noise. Just for an example you can try EURUSD with 2 RenkoAdv: one with brick at 130 points and another with brick at 500 points.

INPUT parameters

DisplayMode: RenkoAdv, True Renko, Median Renko

The difference is :

-With RenkoAdv, every brick has drawn after a number of points set in BoxSize parameters. 

-With TrueRenko on inversion of trend, the price must be distant the double of BoxSize before drawing the bricks. When the double has reached, 2 box are drawn. It is less noisy of RenkoAdv mode but it has more delay when changing trend occurs.

-With Median Renko we have a smoother price movement

Box size (in Points): the thickness of the renko bar in points

Calculation Type: how to calculate a new renko bar

FAST Average length: length for the fast moving average

FAST Average type: simple or exponential moving average

SLOW Average length: length for the slow moving average

SLOW Average type: simple or exponential moving average

LONG Average type: simple moving average

Alert on new bar: Computer or phone notification is available

Alert on Avg cross: Computer or phone notification is available

Optional comment: on push notification to EA, optional comment is sent

Sync graph with midnight: Renko is not dependent by the time, so if you close the metatrader and open it again in few hours, the graph could be a little different by today. With this feature the graph will start to be drawn by the first candle starting at midnight.

Give us a feedback and a comment please.

PS: for receiving phone notification you need to have installed MT5 on your phone and follow the procedure to enable push notification. If you have problems feel free to contact me.

Using with an EA

  enum Typek
  {
   Calc_OnClosePrice=1,//On Close Price(TF related)
   Calc_OnEveryTick=2//On Every Tick
  };

enum Average
  {
   Simple=1,
   Exponential=2
  };

enum NewAlert
  {
   Alert_No=0,//No Alert
   Alert_PcAlarm=1,//Computer
   Alert_PhoneAlarm=2,//Phone
   Alert_PcPhoneAlarm=3//Computer and Phone
  };

enum DisplayModex
  {
   Mode_TrueRenko=0,//True Renko
   Mode_RenkoAdv=1,//Renko Adv
   Mode_MedianRenko=2//Median Renko
  };

// ------------------------------------------------------------------ 
//|                                                                  |
// ------------------------------------------------------------------ 

//Example of Call 
//For the order of the input, follow the indicator inputs.The following row could be not updated.
int handle_adv=iCustom(NULL,Period(),"Downloads\RenkoAdv",BrickHeight,Avg1Fast_Length,Avg1Fast_Type,Avg2Slow_Length,Avg2Slow_Type,Avg3Length,Avg3Long_Type,UseSync_boolean,ShowNewBarAlert_boolean,ShowCrossAlert_boolean,CalculationType_typek,"Just a comment");

[spoiler title=”Read More…”]

that the indicator offers a different perspective to determine the money pair: it is a complete  classic indicator and it can be used for manual trading or for automatized trading with some expert adviser. when the price reaches a threshold a new block is made.

It takes advantage of a visualization  like Renko visualization kind, offering less sound than normal candles pub.

The indicator beside the Renko bars, reveals also 3 moving averages.

Push telling was introduced when a new bar is created or a cross between moving averages occurs.

PS2: if nothing is displayed turn off the Sync feature

Introduced: datetime for renko bars and wicks. If you find some bugs let me know

How to use

This is the lite version of the Renko Advanced indicator.

The only limitations of this version are some parameters can not set (read only). In this way the user can start to appreciate the Renko visualization and how this indicator can be very powerful and simple at the same time.

Time frame should be low( like 5M but it depends of brick height) to have a good representation of historical bars, otherwise the user should adapt the timeframe related to brick height set.

PS: please rate this indicator and leave a comment. Do not forget: your feedbacks are important!

How to set the brick height? It is a good questions, it depends of the duration we want to stay in the market, the volatilty of the market. A good choice could be using the ATR indicator to check the average value of candles in the TF we want to operate.
Renko is very good for giving the idea of the trend with very low noise. Just for an example you can try EURUSD with 2 RenkoAdv: one with brick at 130 points and another with brick at 500 points.

INPUT parameters

DisplayMode: RenkoAdv, True Renko, Median Renko

The difference is :

-With RenkoAdv, every brick has drawn after a number of points set in BoxSize parameters. 

-With TrueRenko on inversion of trend, the price must be distant the double of BoxSize before drawing the bricks. When the double has reached, 2 box are drawn. It is less noisy of RenkoAdv mode but it has more delay when changing trend occurs.

-With Median Renko we have a smoother price movement

Box size (in Points): the thickness of the renko bar in points

Calculation Type: how to calculate a new renko bar

FAST Average length: length for the fast moving average

FAST Average type: simple or exponential moving average

SLOW Average length: length for the slow moving average

SLOW Average type: simple or exponential moving average

LONG Average type: simple moving average

Alert on new bar: Computer or phone notification is available

Alert on Avg cross: Computer or phone notification is available

Optional comment: on push notification to EA, optional comment is sent

Sync graph with midnight: Renko is not dependent by the time, so if you close the metatrader and open it again in few hours, the graph could be a little different by today. With this feature the graph will start to be drawn by the first candle starting at midnight.

Give us a feedback and a comment please.

PS: for receiving phone notification you need to have installed MT5 on your phone and follow the procedure to enable push notification. If you have problems feel free to contact me.

Using with an EA

  enum Typek
  {
   Calc_OnClosePrice=1,//On Close Price(TF related)
   Calc_OnEveryTick=2//On Every Tick
  };

enum Average
  {
   Simple=1,
   Exponential=2
  };

enum NewAlert
  {
   Alert_No=0,//No Alert
   Alert_PcAlarm=1,//Computer
   Alert_PhoneAlarm=2,//Phone
   Alert_PcPhoneAlarm=3//Computer and Phone
  };

enum DisplayModex
  {
   Mode_TrueRenko=0,//True Renko
   Mode_RenkoAdv=1,//Renko Adv
   Mode_MedianRenko=2//Median Renko
  };

// ------------------------------------------------------------------ 
//|                                                                  |
// ------------------------------------------------------------------ 

//Example of Call 
//For the order of the input, follow the indicator inputs.The following row could be not updated.
int handle_adv=iCustom(NULL,Period(),"Downloads\RenkoAdv",BrickHeight,Avg1Fast_Length,Avg1Fast_Type,Avg2Slow_Length,Avg2Slow_Type,Avg3Length,Avg3Long_Type,UseSync_boolean,ShowNewBarAlert_boolean,ShowCrossAlert_boolean,CalculationType_typek,"Just a comment");

that the indicator offers a different perspective to determine the money pair: it is a complete  classic indicator and it can be used for manual trading or for automatized trading with some expert adviser. when the price reaches a threshold a new block is made.

It takes advantage of a visualization  like Renko visualization kind, offering less sound than normal candles pub.

The indicator beside the Renko bars, reveals also 3 moving averages.

Push telling was introduced when a new bar is created or a cross between moving averages occurs.

PS2: if nothing is displayed turn off the Sync feature

Introduced: datetime for renko bars and wicks. If you find some bugs let me know

How to use

This is the lite version of the Renko Advanced indicator.

The only limitations of this version are some parameters can not set (read only). In this way the user can start to appreciate the Renko visualization and how this indicator can be very powerful and simple at the same time.

Time frame should be low( like 5M but it depends of brick height) to have a good representation of historical bars, otherwise the user should adapt the timeframe related to brick height set.

PS: please rate this indicator and leave a comment. Do not forget: your feedbacks are important!

How to set the brick height? It is a good questions, it depends of the duration we want to stay in the market, the volatilty of the market. A good choice could be using the ATR indicator to check the average value of candles in the TF we want to operate.
Renko is very good for giving the idea of the trend with very low noise. Just for an example you can try EURUSD with 2 RenkoAdv: one with brick at 130 points and another with brick at 500 points.

INPUT parameters

This is the lite version of the Renko Advanced indicator.

The only limitations of this version are some parameters can not set (read only). In this way the user can start to appreciate the Renko visualization and how this indicator can be very powerful and simple at the same time.

Time frame should be low( like 5M but it depends of brick height) to have a good representation of historical bars, otherwise the user should adapt the timeframe related to brick height set.

PS: please rate this indicator and leave a comment. Do not forget: your feedbacks are important!

How to set the brick height? It is a good questions, it depends of the duration we want to stay in the market, the volatilty of the market. A good choice could be using the ATR indicator to check the average value of candles in the TF we want to operate.
Renko is very good for giving the idea of the trend with very low noise. Just for an example you can try EURUSD with 2 RenkoAdv: one with brick at 130 points and another with brick at 500 points.

DisplayMode: RenkoAdv, True Renko, Median Renko

The difference is :

-With RenkoAdv, every brick has drawn after a number of points set in BoxSize parameters. 

-With TrueRenko on inversion of trend, the price must be distant the double of BoxSize before drawing the bricks. When the double has reached, 2 box are drawn. It is less noisy of RenkoAdv mode but it has more delay when changing trend occurs.

-With Median Renko we have a smoother price movement

Box size (in Points): the thickness of the renko bar in points

Calculation Type: how to calculate a new renko bar

FAST Average length: length for the fast moving average

FAST Average type: simple or exponential moving average

SLOW Average length: length for the slow moving average

SLOW Average type: simple or exponential moving average

LONG Average type: simple moving average

Alert on new bar: Computer or phone notification is available

Alert on Avg cross: Computer or phone notification is available

Optional comment: on push notification to EA, optional comment is sent

Sync graph with midnight: Renko is not dependent by the time, so if you close the metatrader and open it again in few hours, the graph could be a little different by today. With this feature the graph will start to be drawn by the first candle starting at midnight.

Give us a feedback and a comment please.

PS: for receiving phone notification you need to have installed MT5 on your phone and follow the procedure to enable push notification. If you have problems feel free to contact me.

Using with an EA

  enum Typek
  {
   Calc_OnClosePrice=1,//On Close Price(TF related)
   Calc_OnEveryTick=2//On Every Tick
  };

enum Average
  {
   Simple=1,
   Exponential=2
  };

enum NewAlert
  {
   Alert_No=0,//No Alert
   Alert_PcAlarm=1,//Computer
   Alert_PhoneAlarm=2,//Phone
   Alert_PcPhoneAlarm=3//Computer and Phone
  };

enum DisplayModex
  {
   Mode_TrueRenko=0,//True Renko
   Mode_RenkoAdv=1,//Renko Adv
   Mode_MedianRenko=2//Median Renko
  };

// ------------------------------------------------------------------ 
//|                                                                  |
// ------------------------------------------------------------------ 

//Example of Call 
//For the order of the input, follow the indicator inputs.The following row could be not updated.
int handle_adv=iCustom(NULL,Period(),"Downloads\RenkoAdv",BrickHeight,Avg1Fast_Length,Avg1Fast_Type,Avg2Slow_Length,Avg2Slow_Type,Avg3Length,Avg3Long_Type,UseSync_boolean,ShowNewBarAlert_boolean,ShowCrossAlert_boolean,CalculationType_typek,"Just a comment");

DisplayMode: RenkoAdv, True Renko, Median Renko

The difference is :

-With RenkoAdv, every brick has drawn after a number of points set in BoxSize parameters. 

-With TrueRenko on inversion of trend, the price must be distant the double of BoxSize before drawing the bricks. When the double has reached, 2 box are drawn. It is less noisy of RenkoAdv mode but it has more delay when changing trend occurs.

-With Median Renko we have a smoother price movement

Box size (in Points): the thickness of the renko bar in points

Calculation Type: how to calculate a new renko bar

FAST Average length: length for the fast moving average

FAST Average type: simple or exponential moving average

SLOW Average length: length for the slow moving average

SLOW Average type: simple or exponential moving average

LONG Average type: simple moving average

Alert on new bar: Computer or phone notification is available

Alert on Avg cross: Computer or phone notification is available

Optional comment: on push notification to EA, optional comment is sent

Sync graph with midnight: Renko is not dependent by the time, so if you close the metatrader and open it again in few hours, the graph could be a little different by today. With this feature the graph will start to be drawn by the first candle starting at midnight.

Give us a feedback and a comment please.

PS: for receiving phone notification you need to have installed MT5 on your phone and follow the procedure to enable push notification. If you have problems feel free to contact me.

  enum Typek
  {
   Calc_OnClosePrice=1,//On Close Price(TF related)
   Calc_OnEveryTick=2//On Every Tick
  };

enum Average
  {
   Simple=1,
   Exponential=2
  };

enum NewAlert
  {
   Alert_No=0,//No Alert
   Alert_PcAlarm=1,//Computer
   Alert_PhoneAlarm=2,//Phone
   Alert_PcPhoneAlarm=3//Computer and Phone
  };

enum DisplayModex
  {
   Mode_TrueRenko=0,//True Renko
   Mode_RenkoAdv=1,//Renko Adv
   Mode_MedianRenko=2//Median Renko
  };

// ------------------------------------------------------------------ 
//|                                                                  |
// ------------------------------------------------------------------ 

//Example of Call 
//For the order of the input, follow the indicator inputs.The following row could be not updated.
int handle_adv=iCustom(NULL,Period(),"Downloads\RenkoAdv",BrickHeight,Avg1Fast_Length,Avg1Fast_Type,Avg2Slow_Length,Avg2Slow_Type,Avg3Length,Avg3Long_Type,UseSync_boolean,ShowNewBarAlert_boolean,ShowCrossAlert_boolean,CalculationType_typek,"Just a comment");

[/spoiler]

Add review
Reviews ( 0 ):