u can make a ea with renko indicator?
i believe i can make profit with this ea;-)
when renko is up buy
when renko down close position +sell
u can make a ea with renko indicator?
i believe i can make profit with this ea;-)
when renko is up buy
when renko down close position +sell
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
thank u is great![]()
How to put this file MT?? I need also fail with extension .ex4
Help me please..
Hi funyoo,
I backtested the last month and have been forward testing the EA and the results seems to be promising when appropriate settings are found. But, one problem about that is it continues to buy/sell after tp/sl, and this causes losses most of the time. Maybe adding a waiting (delaying) code (maybe 30 or 60 seconds) before the next order in the same direction would make it more profitable during price retracements. Can you make it? Thanks in advance...
Hi isengoz,
Code that should be added :
Long conditions :Code:int previoussignal=0; for(i=shift+1;i<=50;i++){ if(previoussignal!=0)continue; if(iCustom(NULL,0,"Renko_v1",periodatr,katr,0,i)>iCustom(NULL,0,"Renko_v1",periodatr,katr,0,i+1))previoussignal=1; if(iCustom(NULL,0,"Renko_v1",periodatr,katr,0,i)<iCustom(NULL,0,"Renko_v1",periodatr,katr,0,i+1))previoussignal=2; }
Short conditions :Code:&& previoussignal==2
Code:&& previoussignal==1
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
Hi Funyoo, just one more request please. Is it possible to setup the ea to only place one trade per bar?
I wasn't sure if using the code from the previous post would address this request or not.
Thank you
Neil
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
Thank you very much, Funyoo.
Neil