• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 2:28pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:28pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Scalpers Tick Chart Creator 82 replies

RENKO Trading SYSTEM - RENKO Indicators 7 replies

Spread Chart Creator EA 10 replies

Renko Chart on Currencies different prices from RT Chart 11 replies

New Renko Bar and Reversal Renko Bar Indicator Alert Help Please 5 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 194
Attachments: Non-gap Renko Chart Creator EA
Exit Attachments
Tags: Non-gap Renko Chart Creator EA
Cancel

Non-gap Renko Chart Creator EA

  • Last Post
  •  
  • 1 2728Page 293031 42
  • 1 28Page 2930 42
  •  
  • Post #561
  • Quote
  • Dec 4, 2019 3:20am Dec 4, 2019 3:20am
  •  Agima
  • | Joined Sep 2018 | Status: Member | 24 Posts
@MathTrader7
I have several questions for you about your wonderful work on MathTrader7_RenkoChartCreatorEA:

1°) Could you convert your EA into an indicator with the possibility to indicate the pair for the renko ?
This would allow the indicator to be put several times on the same graph to produce all the offline data of several pairs rather than having to open as many graphs as pairs as is currently the case with an EA.

2°) Have you planned a MT5 version that would use Custom Symbols instead of offline data?

Thanks again to you for all the work you have done.
 
1
  • Post #562
  • Quote
  • Dec 26, 2019 11:18am Dec 26, 2019 11:18am
  •  90patrick
  • | Joined Dec 2019 | Status: Member | 17 Posts
Quoting MathTrader7
Disliked
{quote} Hi, I will release a modified non-gap Renko Creator EA that will save the Renko chart as an HST file of M1 timeframe so that you can use it for backtesting Renko EAs...
Ignored

I can not wait?
When do you plan to upload this change?

Thank you
 
 
  • Post #563
  • Quote
  • Dec 26, 2019 2:35pm Dec 26, 2019 2:35pm
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting 90patrick
Disliked
{quote} I can not wait? When do you plan to upload this change? Thank you
Ignored
Visit this post:
https://www.forexfactory.com/showthr...1#post12628241
Trading is the hardest way to make easy money...
 
 
  • Post #564
  • Quote
  • Dec 26, 2019 2:40pm Dec 26, 2019 2:40pm
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting Agima
Disliked
1°) Could you convert your EA into an indicator with the possibility to indicate the pair for the renko ? This would allow the indicator to be put several times on the same graph to produce all the offline data of several pairs rather than having to open as many graphs as pairs as is currently the case with an EA.
Ignored
Due to MT4 limitations for indicators, it has to be in EA format to not miss any tick...

Quoting Agima
Disliked
2°) Have you planned a MT5 version that would use Custom Symbols instead of offline data? Thanks again to you for all the work you have done.
Ignored
No, not at the moment...
Trading is the hardest way to make easy money...
 
 
  • Post #565
  • Quote
  • Edited 3:30pm Dec 26, 2019 3:19pm | Edited 3:30pm
  •  emmzett
  • Joined Apr 2008 | Status: Member | 605 Posts
Quoting MathTrader7
Disliked
{quote} Due to MT4 limitations for indicators, it has to be in EA format to not miss any tick...
Ignored
There is a way around this issue for indicators but you would need an additional MQL library. During init cycles in deinit() you can cache collected ticks in the library, and in init() you can get them back from there. So no ticks are lost. The question being is it worth the additional work? I guess only very few people would use it. In my indicator I write 64 separate history files tick by tick, without losing a single tick on switching timeframes.

Thank you anyway.
 
 
  • Post #566
  • Quote
  • Dec 26, 2019 3:53pm Dec 26, 2019 3:53pm
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting emmzett
Disliked
{quote} There is a way around this issue for indicators but you would need an additional MQL library. During init cycles in deinit() you can cache collected ticks in the library, and in init() you can get them back from there. So no ticks are lost. The question being is it worth the additional work? I guess only very few people would use it. In my indicator I write 64 separate history files tick by tick, without losing a single tick on switching timeframes. Thank you anyway.
Ignored
Interesting! Is the library free to download somewhere?
Trading is the hardest way to make easy money...
 
 
  • Post #567
  • Quote
  • Edited 5:02pm Dec 26, 2019 4:27pm | Edited 5:02pm
  •  emmzett
  • Joined Apr 2008 | Status: Member | 605 Posts
Quoting MathTrader7
Disliked
{quote} Interesting! Is the library free to download somewhere?
Ignored
Yes, all my MQL work is open-source: https://github.com/rosasurfer

The library header is here: rsfHistory.mqh, the implementation is here: rsfHistory.mq4
As you will see it does a lot more then you would need for the Renko creator. The history part is just a standard implementation of the well-known format. Essentially an indicator sends each tick immediately into the library and doesn't care about init cycles anymore, as the library handles everything. Years ago I implemented the above mentioned mechanism of "store in libary at deinit/fetch from library at init" which works but leaving everything to the library is even better. Under normal circumstances a library doesn't go through init cycles even if the parent module (the indicator) does. So a library can act as runtime storage container for volatile indicator runtime data. There are some specialties to pay attention to for strings and static variables, but the general statement is true for scalar types (an MQL string is not a scalar).

The indicator using the library (the one writing 64 HST files) is here and can be seen in action here: Is it possible to create a new custom symbol in MT4, 2nd screenshot, 2 instances - the gray boxes.

To @all: The limitation of 64 comes from the fact that a single MQL module can manage at most 64 open files at the same time. To overcome this limitation one has to use a DLL where no limits apply at all.
 
3
  • Post #568
  • Quote
  • Dec 27, 2019 3:25am Dec 27, 2019 3:25am
  •  rpasupathy
  • Joined May 2008 | Status: Member | 319 Posts
Hello MathTrader,

Thanks a lot for the awesome renko tool ...

Is it possible to set up an pop up alert on color change on the renko bricks ?

Thanks and Happy New Year
The One Who Makes The Thunder Roar Also Hears A Butterfly Sigh - Ruzbeh
 
1
  • Post #569
  • Quote
  • Dec 28, 2019 7:53am Dec 28, 2019 7:53am
  •  Hercs
  • Joined Jan 2006 | Status: Senior Member | 656 Posts
Hello Matt,
I trust that you are having a well-deserved break and that you had some quality time with your family and friends on Christmas day.
The reason for writing to you is that it seems as if the latest "MathTrader7_RenkoChartCreatorEA" which I downloaded on the 21st of October, has run into some sort of a problem. I have no idea what it could be, but all of a sudden my memory on that chart jumps from a normal ±147 MB to 340 MB and my CPU which normally runs @ 4%, to 35%. Is it possible that something could have gone wrong? Or could you please suggest what I can do to find out whether it is in fact the EA or something else?
Whenever you're around reading messages, please be so kind as to give mine a shout.
Thanking you most sincerely,
Hercs.
Hercs
 
1
  • View Post
  • Disliked by Thread Starter
  • MichaelMano
  • Post #571
  • Quote
  • Jan 1, 2020 4:50am Jan 1, 2020 4:50am
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting MichaelMano
Disliked
I am using MetaTrader platform and renkolivecharts_pimped_v4_13 thank you all
Ignored
Blocked according to the thread rules. See Post 1.
Trading is the hardest way to make easy money...
1
 
  • Post #572
  • Quote
  • Jan 25, 2020 12:12am Jan 25, 2020 12:12am
  •  arthus
  • | Joined Jan 2020 | Status: Junior Member | 3 Posts
hello mathtrader i make ea for renko chart and that ea work well on all renko chart but not work on your renko chart i dont know why but i want that ea work on your renko because your renko dont have bug and its work good so can you help me please .pm me thanks
 
 
  • Post #573
  • Quote
  • Jan 25, 2020 4:53am Jan 25, 2020 4:53am
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting arthus
Disliked
hello mathtrader i make ea for renko chart and that ea work well on all renko chart but not work on your renko chart i dont know why but i want that ea work on your renko because your renko dont have bug and its work good so can you help me please .pm me thanks
Ignored
If you send me the source code of one of your EAs that works on other Renko charts, I may be able to help you.
Trading is the hardest way to make easy money...
 
 
  • Post #574
  • Quote
  • Jan 25, 2020 9:40pm Jan 25, 2020 9:40pm
  •  FXgenial
  • | Joined Oct 2019 | Status: Member | 74 Posts
Quoting arthus
Disliked
hello mathtrader i make ea for renko chart and that ea work well on all renko chart but not work on your renko chart i dont know why but i want that ea work on your renko because your renko dont have bug and its work good so can you help me please .pm me thanks
Ignored
Hi Arthus, I am sorry to tell you that Renko gives this imperfection while processing the data from timeframed chronology. The reason it works on the regular renko chart and not in the non-gap renko chart is actually because of the fact that as an opening point, your strategy tester will consider the open of each candle which in the case of the regular renko chart is erroneous. There is no way you can actually tackle it except if you reprogram your indicators to not consider the gap on MT7 (or other) non gap renko EAs. When you use non-gap renko charts, on one hand, you will have a more realistic behaviour in backtest, on the other hand, the calculation of all your indicators will be different (except if you are based on close prices for each candlestick).

I also had a strategy, quite simple actually, which made me multiply by more than two per month my balance if on regular renko chart and made me lose money on live account and non-gap renko charts. It made scratch my head.

I guess you should try to improve your strategy, base it on long term trends, filter a bit more, add other indicators. Have a look at the very funny Simple moving average, on open prices and a period between 2 and 4, on regular renko charts... When the prices bounce and you have patterns of rising and falling candlestick, you will have a flat moving average on these points, so a derivative (difference between one point and the previous one) = 0.
 
1
  • Post #575
  • Quote
  • Jan 26, 2020 12:24am Jan 26, 2020 12:24am
  •  arthus
  • | Joined Jan 2020 | Status: Junior Member | 3 Posts
Quoting FXgenial
Disliked
{quote} Hi Arthus, I am sorry to tell you that Renko gives this imperfection while processing the data from timeframed chronology. The reason it works on the regular renko chart and not in the non-gap renko chart is actually because of the fact that as an opening point, your strategy tester will consider the open of each candle which in the case of the regular renko chart is erroneous. There is no way you can actually tackle it except if you reprogram your indicators to not consider the gap on MT7 (or other) non gap renko EAs. When you use non-gap...
Ignored
hi friend thanks for suggestions i will try more and fix it finaly if i have source code mathtrader renko chart i can fix it
 
 
  • Post #576
  • Quote
  • Edited 6:26am Jan 26, 2020 5:57am | Edited 6:26am
  •  lordorly
  • | Joined Apr 2008 | Status: Member | 60 Posts
Quoting MathTrader7
Disliked
{quote} I will modify my non-gap Renko builder EA such that if you run it in the strategy tester (only in the strategy tester!) you can set M1 timeframe, so that you will get the corresponding Renko HST files in M1 (if you know what I am talking about). I will release a new version with such capability as soon as I have some free time to work on it.... Best, Matt
Ignored

Good morning, first of all thank the participants for sharing knowledge and solutions in this complicated world of forex.
The truth is that I've been looking for a solution to the issue of Renko Backtests for a long time and it seems that MathTrader7 is about to incorporate this tool into its non-gap generation EA. I can ask the expected date of publication of the new version that incorporates said solution, I hope that this intervention is not taken as a disregard since for my part I have been looking for this tool for a long time or an easy solution that allows me to Backtests of the graphics Renko Eternally grateful and reiterating my apologies in case my question bothers someone
Lordorly
 
 
  • Post #577
  • Quote
  • Jan 26, 2020 11:35am Jan 26, 2020 11:35am
  •  MathTrader7
  • Joined Aug 2014 | Status: Trading | 2,159 Posts
Quoting lordorly
Disliked
{quote} Good morning, first of all thank the participants for sharing knowledge and solutions in this complicated world of forex. The truth is that I've been looking for a solution to the issue of Renko Backtests for a long time and it seems that MathTrader7 is about to incorporate this tool into its non-gap generation EA. I can ask the expected date of publication of the new version that incorporates said solution, I hope that this intervention is not taken as a disregard since for my part I have been looking for this tool for a long time or an...
Ignored
Hi, you can use this script until I release a new version of non-gap Renko Chart creator.
Trading is the hardest way to make easy money...
 
 
  • Post #578
  • Quote
  • Jan 26, 2020 12:33pm Jan 26, 2020 12:33pm
  •  lordorly
  • | Joined Apr 2008 | Status: Member | 60 Posts
Thanks


lordorly
 
 
  • Post #579
  • Quote
  • Feb 5, 2020 4:12am Feb 5, 2020 4:12am
  •  Ajk
  • | Joined Feb 2018 | Status: Member | 2 Posts
Mathtrader7 , you are really great by giving this EA for free to Traders. Small request, if possible please make an indicator that shows the Price required to close the Renko bar (The attached indicator shows only Arrows but not displaying the prices automatically on the chart, they shows only by moving cursor on arrows) please modify it or make new indicator.
Attached File(s)
File Type: mq4 range_predictor.mq4   6 KB | 157 downloads
 
1
  • Post #580
  • Quote
  • Edited 5:21am Feb 8, 2020 4:52am | Edited 5:21am
  •  yasin123
  • | Joined Apr 2015 | Status: Junior Member | 2 Posts
DEAR SIR
MathTrade7
u made excellent rail to rail renko. i m trading in it from last 1 year. i want to update new type of renko that u can do and help me for better trading see attacment

extern input double buy renko=120 point.
extern input double sellrenko=100point.

thanks regards
yasin memon
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: reguler point 0 renko.png
Size: 121 KB
Click to Enlarge

Name: sell point 0 renko.png
Size: 112 KB
Click to Enlarge

Name: buypoint 0 renko.png
Size: 109 KB
 
1
  • Platform Tech
  • /
  • Non-gap Renko Chart Creator EA
  • Reply to Thread
    • 1 2728Page 293031 42
    • 1 28Page 2930 42
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023