• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:07pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:07pm
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 56789 Page 10
  • 1 789 Page 10
  •  
  • Post #181
  • Quote
  • Mar 6, 2021 11:02am Mar 6, 2021 11:02am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting Thomas91
Disliked
Is it possible to build my own EA that can be profitable, or is it risky?
Ignored
Well you are asking the wrong question....

The correct question would be... Is your trading strategy profitable.. ??

If your strategy is profitable, then obviously the EA which will work on that strategy will also make money.

So yes it is possible to build your own profitable EA.

There are many tools which can help you to create your EA even if you have no coding knowledge. Everything depends on how complex is your trading strategy. A complex strategy will require you to have some coding knowledge to create EA for it.
 
 
  • Post #182
  • Quote
  • Mar 24, 2021 2:20pm Mar 24, 2021 2:20pm
  •  thapipgod
  • | Joined Jan 2019 | Status: Member | 5 Posts
Hello Im looking to have two ea built based on two strategies

st project

Name ATP 1.0

1. Baseline PZ quadrant thesis *see image for settings
2. Weekly open y targets * see image for settings
3. Daily open needs same target settings added as seen in the *weekly open y targets image
4. Entry x 3 * see image break and retest of indecision level for both weekly and
5. SL 15 pips
6. Target 1 will be 50 pips or the indecision level of the next Whole or Mid quadrant level, 2nd and 3rd entries trigger trail stop of 15 pips after passing Target 1, 2nd and 3rd targets 100 pips....
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: wkly open ea example.jpg
Size: 84 KB
Click to Enlarge

Name: daily open ea example.jpg
Size: 68 KB
Click to Enlarge

Name: wkly open y targets.jpg
Size: 69 KB
Click to Enlarge

Name: quadrant thesis.jpg
Size: 80 KB
Attached File(s)
File Type: mq4 0_-_Weekly__Open_y_Targets.mq4   23 KB | 59 downloads
File Type: mq4 daily_open_line.mq4   2 KB | 56 downloads
File Type: ex4 PZ Quadrant Thesis.ex4   15 KB | 55 downloads
 
 
  • Post #183
  • Quote
  • Mar 24, 2021 2:21pm Mar 24, 2021 2:21pm
  •  thapipgod
  • | Joined Jan 2019 | Status: Member | 5 Posts
Create New HMA Price Break and Retest EA and indicator

1. Indicator

add HMA_HULL_MOVING_AVERAGE code to PRICE_MA_CROSS_ALERT adjust alert to also signal when price comes within a set numbers of pips that can be adjusted by the user.....i.e prices comes within 5 pips of HMA after inital cross, a secondary alert should trigger

2. EA should be based on indicator that takes trades based on break and retest, multiple entries can be set with SL 12-15 pips from HMA 1st TP 50pips(adjustable) or next indecision level near next QP(adjustable) with adjustable trailing stop that can be activated

3. Once in a trade ea should not take opposite trade until initial trade closes or hits SL *see image

4. Reentry on failure to break HMA *see image

Finally add the code from the new quadrant thesis that you build from project 1
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: HMA EA Reentry.jpg
Size: 94 KB
Click to Enlarge

Name: HMA EA example.jpg
Size: 68 KB
Attached File(s)
File Type: mq4 HMA_Hull_Moving_Average.mq4   5 KB | 59 downloads
File Type: mq4 price_ma_cross_alert.mq4   3 KB | 51 downloads
 
 
  • Post #184
  • Quote
  • Edited Mar 26, 2021 12:10pm Mar 25, 2021 7:08pm | Edited Mar 26, 2021 12:10pm
  •  danjuma
  • | Joined Feb 2010 | Status: Member | 560 Posts
deleted
 
 
  • Post #185
  • Quote
  • May 16, 2021 12:21am May 16, 2021 12:21am
  •  camo99
  • | Joined Jul 2016 | Status: Junior Member | 1 Post
Hello,

I recently started using EA Builder to do expert advisor coding which I have to do for a project that I am involved with. I find EA Builder to be a very user friendly application since I am not a programmer. The first major problem that I have come upon, though, is trying to modify the stop loss on a pending order. Is there some way to do this in EA Builder?
 
 
  • Post #186
  • Quote
  • May 20, 2021 9:02pm May 20, 2021 9:02pm
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting camo99
Disliked
Hello, I recently started using EA Builder to do expert advisor coding which I have to do for a project that I am involved with. I find EA Builder to be a very user friendly application since I am not a programmer. The first major problem that I have come upon, though, is trying to modify the stop loss on a pending order. Is there some way to do this in EA Builder?
Ignored
A trailing stop can be applied, but you are talking about modifying the pending order which is not possible by only using EA builder. After generating the code, you need to modify some part manually
 
 
  • Post #187
  • Quote
  • Jul 12, 2021 2:46pm Jul 12, 2021 2:46pm
  •  Kristinjack
  • | Joined May 2021 | Status: Member | 6 Posts
Hello Fellow Traders, I am new to EA coding.
I need to make entry at Broker Time Midnight 12 hours and 01 Minute.
I have tried many things, but not working. Any coders please help me.
My Code is

int Hours=TimeHour(TimeCurrent());
int Minutes=TimeMinute(TimeCurrent());

void OnTick()
{
if(Hours==00 && Minutes>=01 && OrdersTotal()==0)
{

BuyCondition()
{
BuyTrade()
}

SellCondition()
{
SellTrade()
}

}

}
 
 
  • Post #188
  • Quote
  • Jul 29, 2021 12:21am Jul 29, 2021 12:21am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
Quoting Kristinjack
Disliked
Hello Fellow Traders, I am new to EA coding. I need to make entry at Broker Time Midnight 12 hours and 01 Minute. I have tried many things, but not working. Any coders please help me. My Code is int Hours=TimeHour(TimeCurrent()); int Minutes=TimeMinute(TimeCurrent()); void OnTick() { if(Hours==00 && Minutes>=01 && OrdersTotal()==0) { BuyCondition() { BuyTrade() } SellCondition() { SellTrade() } } }
Ignored

use
hour = TimeHour(TimeCurrent());

The TimeHour() function returns current broker hour. like wise minutes and seconds can also ne calculate.
then just check if hour is zero, as midnight start with zero.
if(hour ==0)
{
// take trade here
}
 
 
  • Post #189
  • Quote
  • May 13, 2022 12:13pm May 13, 2022 12:13pm
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
For guys who trade structure price action, there is An EA, i have recently developed which can saves a lot of your time by analyzing 24 trading pairs at the same time and providing you with the structure data for each pair. This will save time which was consumed for manual market analysis. It pops up alert at the right tie to urge traders to have a deep look. As a result you do not need to stick to the computer screen to monitor every price movement.

It also check of correlations among the pairs and provide the probability percent of a chart moving in a certain direction.

Download here
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 7 KB
 
 
  • Post #190
  • Quote
  • Last Post: Jun 16, 2022 7:25am Jun 16, 2022 7:25am
  •  D.s
  • | Commercial Member | Joined Jul 2016 | 252 Posts
If you are unable to afford costly EAs. This EA will help you to use those costly EAs for FREE.

Inserted Video


EA download link in the youtube description
 
 
  • Commercial Content
  • /
  • How to Build your EA
  • Reply to Thread
    • 1 56789 Page 10
    • 1 789 Page 10
0 traders viewing now
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