Jump to content

[Req] Forex Income Engine - EA


Recommended Posts

hi all,

I decided to share with you a system worth 2000$,

forex income engine

it is by far the best system I came across so far.

this is not the latest version but is great nonetheless.

and I was looking for a long time to find somebody who will be able to make an EA out of this great system but I was not lucky so far.

so I hope some of our great coders here will take up the challenge...

it is going to be worth it

 

here it comes,

Forex income engine:

 

http://www.mediafire.com/file/ljuymjkg2q4/FIE.zip

http://rapidshare.com/files/247523257/FIEb.zip

 

2 files,together they make the whole system

let me know what you fine guys think

D.

p.s.if you feel like it, kudo me:)

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Well, if I can reach the files, and it's easy to turn into an EA, I will definitely put it on my pile of strategies to work through. I currently am building an EA template so I can shuffle around lots of manual indicator strategies.

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

@Damodhar,

I downloaded the first file from here

www.mediafire.com/file/ljuymjkg2q4/FIE.zip

, but

the unzip gave error-messages.

Now I am downloading from drbaz2008 here

http://depositfiles.com/files/wkswmu3nv

and hope it will work. It is a big download.

Will give you kudos if it works.

 

@Rio,

thanks for making an EA of it.

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Well, if I can reach the files, and it's easy to turn into an EA, I will definitely put it on my pile of strategies to work through. I currently am building an EA template so I can shuffle around lots of manual indicator strategies.

 

hi Rio,

thanks for trying:)

this system is worth it I promise.

here are the files again:

 

file1:

http://www.mediafire.com/file/ljuymjkg2q4/FIE.zip

 

file2:

http://www.filesend.net/download.php?f=74549ee79df3dfea9ea03fbcbdc78067

 

if while unziping you are getting an error message try with winrar or if you use winrar than winzip

one or the other should work

cheers

D.

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Damodhar , this is very irritating.

I downloaded the files again.

File 1 did not work with 7zip, winzip and another zip-program, but it worked with RAR.

File 2 does not work with RAR either. Only an error-message that the archive is damaged.

Sorry, this is not good.

 

But I think I have the second file already from here

http://depositfiles.com/files/wkswmu3nv

It opened with one the unzippers (can´t remember what it was).

 

Best regards

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Wow, these are heavy files.

 

If the system is very simple to follow (for an EA that doesn't have to "think" much with fuzzy logic), then it should be fairly simple to throw an EA together.

 

I'm not going to be able to do it immediately. Once people find out that you can program EAs out of manual systems, you suddenly find that there are hundreds of systems out there that could be turned into EAs, and you're innundated with requests, a bit like another EA coder from another forum.... BUT... it's all good. I'm sure there are a few diamonds in the rough, and this is a hobby after all. I can't promise I will be able to produce anything immediately as I already have a few tasks on my plate.... so don't hold your breath. Once I finish work on my manual-system-to-EA framework, the job of spitting out results from manual systems should be a bit quicker.

 

Also, if there are indicators for use in the system, it would help if they are pre-decompiled. Without source code to the indicators, I cannot figure out how to read them into an EA. I can do the decompile myself, but if they are already in source code it sure helps a lot.

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Please someone tell us the (Set up condition & Buy entry & Sell entry & TP & SL & Exit) roles of this system.

I want test this system and make an EA from this system.I do not have a lot of time to watch these videos.

Thanks

sorry ..I pressed kudo instead of quote:)

 

there is no need to watch the whole thing.

a lot of introduction and examples.

 

just watch module 2.everything is in there.it is not too long to watch.

setup conditions...entry rules...exits...stops, all in module 2.

 

sorry to all for the problems with files,I dont get why, everything works fine here.

 

and about the indicators that Rio asked, the system uses 2 simple indicators.one is ATR from mt4 and the other is ADX

hope somebody will succed it making the EA ^:)^

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

I going through the rules now. They're actually fairly complicated, but the good news is that they are very definable rules and with enough effort you could make an EA. Will be a fair bit of work though. Some good subroutines for finding high highs and low lows would certain come in handy.

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

I going through the rules now. They're actually fairly complicated, but the good news is that they are very definable rules and with enough effort you could make an EA. Will be a fair bit of work though. Some good subroutines for finding high highs and low lows would certain come in handy.

yes, it looks very complicated in the beginning because he's explaining something actually very simple in a very complicated way.

but as he explained the rules this way is good to implement in an EA.

but in my view the additional conditions are not that important.the EA will work just fine even without them.just with the main ones.

 

the whole thing seems complicated in the beginning but once you understand what this rules are pointing to(just 2 shapes of price movement)you will be able to spot entries in a second,just by looking at the chart once,no need to measure high and lows of so so bar and stuff :)

Link to comment
Share on other sites

Re: [Req] Forex Income Engine - EA

 

Hi Damodhar and Rio

 

I also develop on this EA can you share your experience on this.

 

Below is my setup long condition.What's do you think?

 

// Long Setup condition
bool Buy_Condition_A()
{//HH3 < HH10
  double HH3,HH10;
  bool ret = false;   
  HH3 = HH(1,3);
  HH10 = HH(1,10);
  if(HH3 < HH10)
  {
     ret = true;
  }
  
  return (ret);
}
bool Buy_Condition_B()
{//LL5 < LL3
  bool ret = false;  
  double LL5,LL3;
  int bar_LL3; 
  LL5 = LL(1,5);
  bar_LL3 = LLBar(1,5) + 1;
  LL3 = LL(bar_LL3,3);
  if(LL5 < LL3)
  {
     ret = true;
  }   
  return (ret);
}
bool Buy_Condition_C()
{//LH5 > LL24 or LL5 > LL24
  bool ret = false;  
  double LH5,LL5,LL24;
  int bar_LL3; 
  LH5 = LH(1,5);
  LL5 = LL(1,5);
  LL24 = LL(1,24);
  if(LH5 > LL24 || LL5 > LL24)
  {
     ret = true;
  }   
  return (ret);
}
bool Buy_Condition_D()
{//Close > 0.5(HH3-LL3)
  bool ret = false;   
  double HH3,LL3;
  HH3 = HH(1,3);
  LL3 = LL(1,3);
  if(Close[1] > 0.5 *(HH3-LL3))
  {
     ret = true;
  }
  
  return (ret);
}
bool Buy_Condition_E()
{//ADX(5) > 25
  bool ret = false;   
  if(iADX(NULL,0,5,PRICE_CLOSE,MODE_MAIN,1)> 25)
  {
     ret = true;
  }
  
  return (ret);
}
bool Buy_Condition_F()
{//(HH6 - LL6) > 1 ATR20
  bool ret = false;  
  double HH6,LL6; 
  HH6 = HH(1,6);
  LL6 = LL(1,6);
  if((HH6 - LL6)> iATR(NULL,0,20,1))
  {
     ret = true;
  }
  
  return (ret);
}
bool Buy_Condition_G()
{//(HH5 - LL5) must be outside the widest 2 bar range of the past 20 bar.
  bool ret = false;  
  double HH5,LL5; 
  double Range; 
  double widest2BarRange;
  double HighValue = 0;
  double LowValue = 0;
  HH5 = HH(1,5);
  LL5 = LL(1,5);
  Range = (HH5 - LL5)/Point;
  for(int i = 1;i<=20;i+=2)
  {
     if(High[i] > HighValue)
     {
        HighValue = High[i];
     }
     if(High[i+1] > HighValue)
     {
        HighValue = High[i+1];
     }
     if(Low[i] < LowValue)
     {
        LowValue = Low[i];
     }
     if(Low[i+1] < LowValue)
     {
        LowValue = Low[i+1];
     }
     widest2BarRange = (HighValue - LowValue)/Point;
  }
  if(Range > widest2BarRange)
  {
     ret = true;
  }
  
  return (ret);
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++
double HH(int startBar ,int BarCnt)
{
  double HighValue = 0;
  int bar = HHBar(startBar,BarCnt);
  HighValue = High[bar];
  
  return(HighValue);   
}
double HL(int startBar ,int BarCnt)
{
  double LowValue = 0;
  int bar = HHBar(startBar,BarCnt);
  LowValue = Low[bar];
  return(LowValue);
}
int HHBar(int startBar ,int BarCnt)
{
  double ret = 0;
  double HighValue = 0;
  for(int i =startBar;i <= BarCnt;i++)
  {
     if(High[i] > HighValue)
     {
        HighValue = High[i];
        ret = i;
     }
  }
  return(ret);
}
double LL(int startBar ,int BarCnt)
{
  double LowValue = 0;
  int bar = LLBar(startBar,BarCnt);
  LowValue = Low[bar];
  return(LowValue);
}
double LH(int startBar ,int BarCnt)
{
  double HighValue = 0;
  int bar = LLBar(startBar,BarCnt);
  HighValue= High[bar];
  return(HighValue);
}
int LLBar(int startBar ,int BarCnt)
{
  double ret = 0;
  double LowValue = 1000000;
  for(int i =startBar;i <= BarCnt;i++)
  {
     if(Low[i] < LowValue)
     {
        LowValue = Low[i];
        ret = i;
     }
  }
  return(ret);
}
//+++++++++++++++++++++++++++++++++++++++++

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...