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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

MT4 build 1220 EA running OK, build 1260 not OK 1 reply

Why your broker is your friend and your enemy 4 replies

MT4 Compiler Build prior to Build 6xxx 7 replies

Making your Indicators work with MT4 Build 600+; Simple! 1 reply

Build 201 has new function names that can mess up your EA 0 replies

  • Commercial Content
  • /
  • Reply to Thread
  • Subscribe
  • 27
Attachments: How to Build your EA
Exit Attachments
Tags: How to Build your EA
Cancel

How to Build your EA

  • Last Post
  •  
  • 1 56Page 789 10
  • 1 6Page 78 10
  •  
  • Post #121
  • Quote
  • Oct 2, 2018 12:16am Oct 2, 2018 12:16am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting alt11
Disliked
Hi D.S. Noob question, sorry: I'm not looking for an EA that will open trades for me, but I want an alert system to filter out signals and receive email alerts (based on the TDI and price action). Would having a coder develop such an alert system be cheaper than a full-on EA? I'm trying to get an idea of how much it would cost to have a developer make this alert system for me. How do you think I should go about it? Thanks in advance for your advice
Ignored
It seems the variables and function names are not defined

most probably you are generating for MT4 and testing on MT5 or vice versa.
 
 
  • Post #122
  • Quote
  • Oct 2, 2018 8:47pm Oct 2, 2018 8:47pm
  •  cellenite
  • | Joined Sep 2018 | Status: Junior Member | 2 Posts
D.s that's exactly what happened, I only figured it out a day or two before you posted this. Thank you for getting back to me! It seems the MT4 website sneakily gets you to download MT5 even when you specifically click on the MT4 download...
 
 
  • Post #123
  • Quote
  • Oct 5, 2018 3:52am Oct 5, 2018 3:52am
  •  sihlecjj
  • | Joined Mar 2018 | Status: Member | 21 Posts
good day DS

I have a indicator and the rules , one indicator and one sma ,,,, I was wondering if you can make the EA for me , im tired of trading with this strategy manually
 
 
  • Post #124
  • Quote
  • Oct 5, 2018 7:51am Oct 5, 2018 7:51am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting sihlecjj
Disliked
good day DS I have a indicator and the rules , one indicator and one sma ,,,, I was wondering if you can make the EA for me , i am tired of trading with this strategy manually
Ignored
I am sorry. I cant. I have stopped coding a long time ago. Now i don't feel like touching any more coding platform. Please continue trading manually and make use of other websites who provide coders or freelancing is also good in our scenario. Just hire someone outside your country.
 
 
  • Post #125
  • Quote
  • Oct 24, 2018 10:02pm Oct 24, 2018 10:02pm
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
There are many combination which can me made with indicators that generally people never think about, like applying a MA inside a stochastic. This combination looks odd but is very effective.
Here in this video you will find few of those combinations which can be easily converted into your desired automation tools

Inserted Video
 
 
  • Post #126
  • Quote
  • Oct 25, 2018 10:18pm Oct 25, 2018 10:18pm
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
EA building tip 1

While building any EA which will take trades for you, always use magic number. And make sure that you can set the magic number in your EA initial settings.
This helps the Ea to identify only those trades which it should work with, without affecting the trades which you took manually.

Details study material about building and incorporating is mentioned at the first page.
 
 
  • Post #127
  • Quote
  • Oct 26, 2018 9:54am Oct 26, 2018 9:54am
  •  Prisha
  • | Membership Revoked | Joined Mar 2016 | 431 Posts
Thanks for sharing this, I learnt how to build EA from the FreshForex webinars. I believe EAs are the best for traders especially if you're an emotion trader.
 
 
  • Post #128
  • Quote
  • Oct 27, 2018 2:56am Oct 27, 2018 2:56am
  •  doyz89
  • | Joined Oct 2018 | Status: Junior Member | 2 Posts
Dear Thread Starter,

I've been a trader for 10 years. And your post have greatly inspired me!

I have also purchased the EAbuilder.

Unfortunately they do not have a contact email.

I'm facing some issues with the stop loss. I've set it to

Stop Loss - Order Open Price
- ATR
*(Variable)

But when i look back at the back test. Most of the trades are opened without a SL.

Will need your advice on this ! Thanks!
 
 
  • Post #129
  • Quote
  • Oct 27, 2018 3:54am Oct 27, 2018 3:54am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting Prisha
Disliked
Thanks for sharing this, I learnt how to build EA from the FreshForex webinars. I believe EAs are the best for traders especially if you're an emotion trader.
Ignored
You are absolutely right. If emotions comes in your way, having an EA helps a lot.
I am also thinking about making step by step EA creating video series. I will update them soon.
 
 
  • Post #130
  • Quote
  • Oct 28, 2018 11:41pm Oct 28, 2018 11:41pm
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting doyz89
Disliked
Dear Thread Starter, I've been a trader for 10 years. And your post have greatly inspired me! I have also purchased the EAbuilder. Unfortunately they do not have a contact email. I'm facing some issues with the stop loss. I've set it to Stop Loss - Order Open Price - ATR *(Variable) But when i look back at the back test. Most of the trades are opened without a SL. Will need your advice on this ! Thanks!
Ignored
After you generate the code, just go through the code manually and search for the word "OrderSend". This function is responsible for taking the trade. Inside orderSend(), the sixth parameter is the stoploss value. Each parameter is comma separated. So just see if the sixth place is left blank or any variable is set to it.
If it is left blank then you are not giving the stop loss condition before opening the trade.
But if you are changing stoploss multiple times during the trade, then you have to check the word "OrderModify" and check the 3rd parameter there which control the stoploss value.

I hope you could identify the issue with it.
If not then,I am currently in the process of creating some videos where i will discuss these types of issue. So just wait for few days.
 
 
  • Post #131
  • Quote
  • Nov 2, 2018 12:00am Nov 2, 2018 12:00am
  •  doyz89
  • | Joined Oct 2018 | Status: Junior Member | 2 Posts
Quoting D.s
Disliked
{quote} After you generate the code, just go through the code manually and search for the word "OrderSend". This function is responsible for taking the trade. Inside orderSend(), the sixth parameter is the stoploss value. Each parameter is comma separated. So just see if the sixth place is left blank or any variable is set to it. If it is left blank then you are not giving the stop loss condition before opening the trade. But if you are changing stoploss multiple times during the trade, then you have to check the word "OrderModify" and check the...
Ignored
Thanks A lot D.s

Managed to solved the stop loss issue. Apparently i just need to put a figure thats definitely larger than the min. requirement by the broker.

Hope to see your videos Soon.!

Backtesting vs Live.

Will you be able to shed some light on the differences & pit falls that we might face.

Thanks!
 
 
  • Post #132
  • Quote
  • Nov 2, 2018 8:29am Nov 2, 2018 8:29am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting doyz89
Disliked
{quote} Thanks A lot D.s Managed to solved the stop loss issue. Apparently i just need to put a figure thats definitely larger than the min. requirement by the broker. Hope to see your videos Soon.! Backtesting vs Live. Will you be able to shed some light on the differences & pit falls that we might face. Thanks!
Ignored
Thats Great. You figured out the issue and fixed it.

I have just completed the first video. I might upload it in next 24 hours. And will remember your problem. In the next videos I will definitely cover about the difference between back testing and live testing.
 
 
  • Post #133
  • Quote
  • Nov 2, 2018 9:58am Nov 2, 2018 9:58am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
First Intro and overall video on EA creation
Inserted Video
 
1
  • Post #134
  • Quote
  • Nov 15, 2018 7:04am Nov 15, 2018 7:04am
  •  vinubinto
  • | Joined Jun 2010 | Status: Member | 9 Posts
Are you still active on this thread, I'm looking to create a simple EA to generate profits when i'm not online.. Can we get to discuss about it? +97430281546(whatsapp)
 
 
  • Post #135
  • Quote
  • Nov 15, 2018 9:43am Nov 15, 2018 9:43am
  •  Alexandrovfx
  • | Membership Revoked | Joined Mar 2017 | 41 Posts
Hello guys,
hard to go over all of the content in this thread, but D.s, you said it by yourself - Forex Strategy Builder Pro.

I have placed it on our website of the Academy after 1 year of testing the software. It generates strategies, and exports them as EAs for MT4 and MT5. Not need to make it more complicated.

Cheers
 
 
  • Post #136
  • Quote
  • Edited 6:07am Nov 16, 2018 12:15am | Edited 6:07am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting vinubinto
Disliked
Are you still active on this thread, I'm looking to create a simple EA to generate profits when i'm not online.. Can we get to discuss about it? +97430281546(whatsapp)
Ignored
I am not completely active. whenever I have some spare time, i give it to this thread.
And if you want me to write complete code for you, then I will decline.
 
 
  • Post #137
  • Quote
  • Nov 16, 2018 12:17am Nov 16, 2018 12:17am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
next video in the series. sorry for the long pause. I will try to make the next video more faster.

Inserted Video
 
 
  • Post #138
  • Quote
  • Nov 16, 2018 1:01am Nov 16, 2018 1:01am
  •  Petetrader
  • | Additional Username | Joined Aug 2018 | 21 Posts
Nice videos here! I am new to building EAs but started using also FSB Pro and I am happy with it.
 
 
  • Post #139
  • Quote
  • Nov 22, 2018 6:17am Nov 22, 2018 6:17am
  •  rover99x
  • | Joined Sep 2009 | Status: Member | 489 Posts
Thank you for creating this thread D.s

I was just about to start building my own EA using EA Builder and stumbled upon this thread, hopefully if I have any questions on EA Builder or EA code I can ask you, as I'm a complete newbie at coding.

Many thanks
 
 
  • Post #140
  • Quote
  • Mar 18, 2019 9:01am Mar 18, 2019 9:01am
  •  Arturke
  • Joined Dec 2011 | Status: Member | 554 Posts
Hi D.s,

was thinking create own system. It actually should be very useful, because don't want to sit in front of computer all day staring to monitor and trading anymore but the system can't go around release fresh news. Thinking that it could don't trade before few hours and after few hours release news but if already in the market some trade it should dynamically recognise don't trade and even after news or something like that, like finger print or what so ever without SL. Maybe, it is already some engine that special create for news trading or not? have something similar?
 
 
  • Commercial Content
  • /
  • How to Build your EA
  • Reply to Thread
    • 1 56Page 789 10
    • 1 6Page 78 10
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