+ Reply to Thread
Page 1 of 2
1 2 LastLast
Results 1 to 10 of 14

Thread: Renko EA

  1. #1
    Member
    Join Date
    Dec 2008
    Posts
    40

    Default Renko EA

    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
    Attached Images
    Attached Files

  2. #2
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    4,894

    Default

    Quote Originally Posted by pillso View Post
    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
    Here is the Renko v1 Expert Advisor.
    Attached Files

  3. #3
    Member
    Join Date
    Dec 2008
    Posts
    40

    Default

    thank u is great

  4. #4
    Junior Member
    Join Date
    Jun 2009
    Posts
    1

    Default I need answear

    How to put this file MT?? I need also fail with extension .ex4

    Help me please..

  5. #5
    Junior Member
    Join Date
    Jan 2009
    Posts
    3

    Default

    Quote Originally Posted by amater23 View Post
    How to put this file MT?? I need also fail with extension .ex4

    Help me please..
    extension .ex4 = compiler from .mq4

  6. #6
    Junior Member
    Join Date
    Nov 2009
    Posts
    3

    Default delay code for the next order

    Quote Originally Posted by funyoo View Post
    Here is the Renko v1 Expert Advisor.
    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...

  7. #7
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    4,894

    Default

    Hi isengoz,

    Code that should be added :

    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;
       }
    Long conditions :

    Code:
     && previoussignal==2
    Short conditions :

    Code:
     && previoussignal==1

  8. #8
    Junior Member
    Join Date
    May 2009
    Posts
    15

    Default

    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

  9. #9
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    4,894

    Default

    Quote Originally Posted by candrick View Post
    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
    Hi candrick,

    Yes, you will find this script in the mql programming section (Max trade per bar).

  10. #10
    Junior Member
    Join Date
    May 2009
    Posts
    15

    Default

    Thank you very much, Funyoo.

    Neil

+ Reply to Thread
Page 1 of 2
1 2 LastLast

Similar Threads

  1. Renko Charts Trader
    By funyoo in forum Expert advisors backtesting
    Replies: 19
    Last Post: 02-09-2010, 19:36
  2. RENKO chart
    By patcox in forum Softwares
    Replies: 1
    Last Post: 01-24-2009, 21:24

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts