Disliked{quote} Either manually or attach a Renko Trading EA to the offline chart that has been generated by non-gap Renko Create EA.Ignored
regards
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
DislikedHi MathTrader, i have a trading system that i want to discuss with you can i dm?Ignored
DislikedIm use mathtrader7_renkochartcreatorea 1.67 with my own ea, didnt work well with this chartcreator. The problem is=>> İn bar open 200 trade as you can see on picture. This problem isnt exist with renkochartcreator ea 1.53. I wanna use latest versiyon but has this problem. Please Help me.ı cant DM to you. " Private Messages Restricted Per Member Status" {image} {file}Ignored
DislikedHi, do you have any ideas why some of the bars in the xls file are not loaded? For example in the picture between 2020.08.13 13:07 and the 2020.08.13 14:49 is there a bar with time 2020.08.13 14:47. I dont see any difference between the data lines. Thank you. {image}Ignored
DislikedGreat stuff, especially multi-symbol ea. Thanks very much for sharing. Don't know if anybody reported, when using live offline chart created by MathTrader7_RenkoChartCreatorEA 1.62 , the candle open time\Time[0] is written to hst as current time and constantly overwritten with current time as the candle progresses, which results in Open time=Close time for that candle. The multi-symbol ea writes a candle Time[0] on opening and doesn't overwrite it, i.e. correct. Please can you look into the issue when you have time. CheersIgnored
Disliked{quote} Your EA's algorithm to detect opening of a new Renko brick is faulty. There is no essential difference between v1.53 and v1.67 that may cause that problem. But if your EA works fine with v1.53, then why you want to use v1.67?Ignored
Disliked{quote} Because v1.53 hasnt price jump option, you saying "There is no essential difference between v1.53 and v1.67". ı thınk you can optimize for this problem. And than latest version can work like oldest v1.53Ignored
DislikedHello MT7, First of all I wish to thank you for this awesome EA developed by you and consistently fixing the issues. I have an EA which works fine in all timeframes and other renko builders ( The EA which basically trades the candle open. If the previous candle is green it will open a buy, If the previous candle is red, it opens a sell.) But, when I attach that EA to this non gap renko offline chart, it opens a lot of trades instantly(more than 40,50 trades). trailing stop EA and other EAs are working fine with this same offline chart. I dont know...Ignored
Disliked{quote} I see... Try version 1.69, I think your problem will be solved with this version. {quote} I guess after a bug fix in Version 1.69, your EA shall work fine. Please try running your trading EA on Renko charts created by Version 1.69.Ignored
DislikedJust updated the version to my MT4 and tried. Now it is not taking too much of trades but takes 2 trades per signal. attaching the picture.{image}Ignored
Disliked{file} Thanks again for your quick replies. I was trying to insert the mq4 file and not approved twice. Herewith attached the source code in text file. Kindly take a look. The very first order only it takes two orders (1 buy & 1 sell). After that it is taking only 1 trade in the direction of the trend correctly. It is working fine with candle chart, Tick chart & all other renko builders. I hope you definitely find the root cause of this issue and help me overcome the issue. Thanks again.Ignored
Disliked{quote} The code you have attached doesn't open any order! The code is for managing manually opened positions.Ignored
Disliked{quote} Dear Matt, It is opening orders. First, it opens a sell & buy both orders. After that, sometimes only 1 order sometimes 2 orders. Trying to attach the mq4 file. Pls try{file}Ignored
// Trade_Candle_Open.mq4 #property strict input double lot = 0.01; // lot input int slippage = 10; // max slippage datetime tlast; int OnInit() { tlast = 0; return INIT_SUCCEEDED; } void OnTick() { if(Time[0] > tlast) { if(Open[1] < Close[1]) bool res = OrderSend(_Symbol, OP_BUY, lot, Bid, slippage, 0, 0); else if(Open[1] > Close[1]) bool res = OrderSend(_Symbol, OP_SELL, lot, Ask, slippage, 0, 0); tlast = Time[0]; } }
Disliked{quote} The following modification shall make it work correctly. // Trade_Candle_Open.mq4 #property strict input double lot = 0.01; // lot input int slippage = 10; // max slippage datetime tlast; int OnInit() { tlast = 0; return INIT_SUCCEEDED; } void OnTick() { if(Time[0] > tlast) { if(Open[1] < Close[1]) bool res = OrderSend(_Symbol, OP_BUY, lot, Bid, slippage, 0, 0); else if(Open[1] > Close[1]) bool res = OrderSend(_Symbol, OP_SELL, lot, Ask, slippage, 0, 0); tlast = Time[0]; } }Ignored