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

Options

Search
Search
Search

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

EAs and indicators relating to moutaki... 22 replies

Can MT4/MT5 Brokers steal Indi/EAs? 30 replies

Create MT5 indicators from MT4 indicators 3 replies

Need help to code EAs for MT4 and MT5 2 replies

Where to find the Basic Script EA's and Indicators for MT5 3 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 645
Attachments: MT5 Indicators and EAs
Exit Attachments

MT5 Indicators and EAs

  • Last Post
  •  
  • 1 Page 23456 38
  • 1 Page 234 38
  •  
  • Post #21
  • Quote
  • Mar 6, 2019 1:43am Mar 6, 2019 1:43am
  •  atomicarthur
  • | Joined May 2016 | Status: Member | 19 Posts
Hi Joeef is it possible if you could make alert when JFDS crosses +80 / -20 like the MT4 version thanks
  • Post #22
  • Quote
  • Mar 6, 2019 5:27am Mar 6, 2019 5:27am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting atomicarthur
Disliked
Hi Joeef is it possible if you could make alert when JFDS crosses +80 / -20 like the MT4 version thanks
Ignored
Yes maybe in spare time. But this is related to MT5 indicators for Alien’s trading systems thread.
Nostalgia for the future
  • Post #23
  • Quote
  • Mar 6, 2019 5:38am Mar 6, 2019 5:38am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting JoeeF
Disliked
{quote} This is the first draft. Check it and let me know. It's too late here so I didn't test it a lot. {file} {image} {image}
Ignored
I've made some tweaks to Engulf indicator. It was necessary for cooperation with EngulfingBarsDash. I've added two new inputs. For regular use as standalone indicator please do not change them.
Attached File
File Type: rar MT5_JFEngulf_v2.00.rar   29 KB | 393 downloads
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 29 KB Click to Enlarge

Name: Image2.png
Size: 10 KB
Nostalgia for the future
  • Post #24
  • Quote
  • Mar 6, 2019 6:50am Mar 6, 2019 6:50am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting Jackie5
Disliked
Thank you both. Now the bigger project I'm looking for: I'm looking for a dashboard across the main 30 or so currency pairs across time frames H4, H6, H8, H12, D1, W1 and MNTH1 that will show a light on this dashboard under the respective timeframe (that will remain on until the next candle has closed on that timeframe) when one of those engulfing bars trigger. I imagine this like a grid and with the ability to send an alert via pop up and email as optional which I can configure to turn on and off for different pairs and different timeframes. That...
Ignored
Quoting JoeeF
Disliked
{quote} This is the first draft. It's only user interface (UI). The values are random. {image} {image} {image}
Ignored
Quoting JoeeF
Disliked
{quote} In a few hours I'll post a new version.
Ignored
New version is here ...

So I'll start from scratch. To start using EngulfingBarsDash is better use only a few currency pairs and time frames.

So for example I'll start with: USDCAD and EURGBP. I can see H2 and H3 engulfing bars there just now so this is the reason to use these two pairs in this example.

I have to create/update configuration XML file (JFEngulfingBarsDashSymbols.xml). So here you are:

Inserted Code
<?xml version="1.0" encoding="windows-1252"?>
<JFEngulfingBarsDashSymbols>
    <currencyPair>
        <!-- Currency pair name -->
        <name>USDCAD</name>
        <!-- Timeframe 0=None, 1=Show, 2=Show+PopUp, 3=Show+Email, 4=Show+PopUp+Email -->
        <PERIOD_M1>1</PERIOD_M1>
        <PERIOD_M2>1</PERIOD_M2>
        <PERIOD_M3>1</PERIOD_M3>
        <PERIOD_M4>1</PERIOD_M4>
        <PERIOD_M5>1</PERIOD_M5>
        <PERIOD_M6>1</PERIOD_M6>
        <PERIOD_M10>1</PERIOD_M10>
        <PERIOD_M12>1</PERIOD_M12>
        <PERIOD_M15>1</PERIOD_M15>
        <PERIOD_M20>1</PERIOD_M20>
        <PERIOD_M30>1</PERIOD_M30>
        <PERIOD_H1>1</PERIOD_H1>
        <PERIOD_H2>1</PERIOD_H2>
        <PERIOD_H3>1</PERIOD_H3>
        <PERIOD_H4>1</PERIOD_H4>
        <PERIOD_H6>1</PERIOD_H6>
        <PERIOD_H8>1</PERIOD_H8>
        <PERIOD_H12>0</PERIOD_H12>
        <PERIOD_D1>0</PERIOD_D1>
        <PERIOD_W1>0</PERIOD_W1>
        <PERIOD_MN1>0</PERIOD_MN1>
    </currencyPair>
    <currencyPair>
        <!-- Currency pair name -->
        <name>EURGBP</name>
        <!-- Timeframe 0=None, 1=Show, 2=Show+PopUp, 3=Show+Email, 4=Show+PopUp+Email -->
        <PERIOD_M1>1</PERIOD_M1>
        <PERIOD_M2>1</PERIOD_M2>
        <PERIOD_M3>1</PERIOD_M3>
        <PERIOD_M4>1</PERIOD_M4>
        <PERIOD_M5>1</PERIOD_M5>
        <PERIOD_M6>1</PERIOD_M6>
        <PERIOD_M10>1</PERIOD_M10>
        <PERIOD_M12>1</PERIOD_M12>
        <PERIOD_M15>1</PERIOD_M15>
        <PERIOD_M20>1</PERIOD_M20>
        <PERIOD_M30>1</PERIOD_M30>
        <PERIOD_H1>1</PERIOD_H1>
        <PERIOD_H2>1</PERIOD_H2>
        <PERIOD_H3>1</PERIOD_H3>
        <PERIOD_H4>1</PERIOD_H4>
        <PERIOD_H6>1</PERIOD_H6>
        <PERIOD_H8>1</PERIOD_H8>
        <PERIOD_H12>0</PERIOD_H12>
        <PERIOD_D1>0</PERIOD_D1>
        <PERIOD_W1>0</PERIOD_W1>
        <PERIOD_MN1>0</PERIOD_MN1>
    </currencyPair>
</JFEngulfingBarsDashSymbols>

On dashboard I can see USDCAD H2 bullish engulfing bar and EURGBP H3 bearish engulfing bar.
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 12 KB

I can check it of course.
Attached Images (click to enlarge)
Click to Enlarge

Name: Image2.png
Size: 10 KB Click to Enlarge

Name: Image3.png
Size: 12 KB
Nostalgia for the future
  • Post #25
  • Quote
  • Mar 6, 2019 6:58am Mar 6, 2019 6:58am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Right now I can see USDCAD M3 and M4 bullish engulfing bars.
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 13 KB Click to Enlarge

Name: Image2.png
Size: 10 KB Click to Enlarge

Name: Image3.png
Size: 9 KB
Nostalgia for the future
  • Post #26
  • Quote
  • Mar 6, 2019 7:15am Mar 6, 2019 7:15am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
If I'm not interesting to some periods I can switch them off. It's easy:

Green cell = Bullish Engulfing Bar
Red cell = Bearish Engulfing Bar
Gray cell = This cell is processed but no Bullish/Bearish bar is here now
White cell = This cell is not processed (is off)
Attached Image (click to enlarge)
Click to Enlarge

Name: Image2.png
Size: 17 KB
Attached Image
Nostalgia for the future
  • Post #27
  • Quote
  • Mar 6, 2019 7:23am Mar 6, 2019 7:23am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
I can switch off some period or periods for this session on Settings TAB too. Double click to open combo box a choose None.
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 19 KB Click to Enlarge

Name: Image2.png
Size: 18 KB Click to Enlarge

Name: Image3.png
Size: 17 KB
Nostalgia for the future
  • Post #28
  • Quote
  • Mar 6, 2019 7:32am Mar 6, 2019 7:32am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Logs I can see in Logs TAB.

Inserted Code
2019.03.06 13:26:59 EURGBP M1 - bearish engulfing bar - 14:27:00

2019.03.06 13:26:59 - local time of a computer, where the client terminal is running
14:27:00 - the opening time of the bar on the corresponding chart
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 39 KB
Nostalgia for the future
  • Post #29
  • Quote
  • Mar 6, 2019 7:46am Mar 6, 2019 7:46am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
I can of course watch many currency pairs and periods. But I have to be aware of possibility of performance issues.
So it's better to start with a few and later add more.
Attached Image (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 20 KB
Nostalgia for the future
  • Post #30
  • Quote
  • Edited at 8:57am Mar 6, 2019 8:41am | Edited at 8:57am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting JoeeF
Disliked
{quote} {quote} {quote} New version is here ... So I'll start from scratch. To start using EngulfingBarsDash is better use only a few currency pairs and time frames. So for example I'll start with: USDCAD and EURGBP. I can see H2 and H3 engulfing bars there just now so this is the reason to use these two pairs in this example. I have to create/update configuration XML file (JFEngulfingBarsDashSymbols.xml). So here you are: <?xml version="1.0" encoding="windows-1252"?> <JFEngulfingBarsDashSymbols> <currencyPair> <!-- Currency pair name --> <name>USDCAD</name>...
Ignored
Quoting JoeeF
Disliked
Right now I can see USDCAD M3 and M4 bullish engulfing bars. {image} {image} {image}
Ignored
Quoting JoeeF
Disliked
If I'm not interesting to some periods I can switch them off. It's easy: Green cell = Bullish Engulfing Bar Red cell = Bearish Engulfing Bar Gray cell = This cell is processed but no Bullish/Bearish bar is here now White cell = This cell is not processed (is off) {image} {image}
Ignored
Quoting JoeeF
Disliked
I can switch off some period or periods for this session on Settings TAB too. Double click to open combo box a choose None. {image} {image} {image}
Ignored
Quoting JoeeF
Disliked
Logs I can see in Logs TAB. 2019.03.06 13:26:59 EURGBP M1 - bearish engulfing bar - 14:27:00 2019.03.06 13:26:59 - local time of a computer, where the client terminal is running 14:27:00 - the opening time of the bar on the corresponding chart {image}
Ignored
Quoting JoeeF
Disliked
I can of course watch many currency pairs and periods. But I have to be aware of possibility of performance issues. So it's better to start with a few and later add more. {image}
Ignored
Put files to appropriate folders:

\MQL5\Experts\joeef\JFEngulfingBarsDash\JFEngulfingBarsDash.ex5
\MQL5\Files\JFEngulfingBarsDashSymbols.xml
\MQL5\Indicators\joeef\MQ4toMQ5\JFEngulf.ex5

You can download installation package from the first post of this thread.
Nostalgia for the future
  • Post #31
  • Quote
  • Mar 6, 2019 10:29am Mar 6, 2019 10:29am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Current state.

Note:
Popup Alerts, Send Mail, Send Notification, Play Sound alerts are still not implemented in this version.
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 22 KB Click to Enlarge

Name: Image2.png
Size: 9 KB
Nostalgia for the future
  • Post #32
  • Quote
  • Mar 6, 2019 1:34pm Mar 6, 2019 1:34pm
  •  GoldenFibo
  • | Joined Sep 2017 | Status: Member | 25 Posts
Quoting JoeeF
Disliked
{quote} JFEngulfingBarsDash is fully configurable. You only have to add required symbol to configuration file. {image} {image}
Ignored
Oh, God, I don't know anything about that. I wouldn't even know where to put these things. I am not a coder
  • Post #33
  • Quote
  • Mar 6, 2019 1:54pm Mar 6, 2019 1:54pm
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting GoldenFibo
Disliked
{quote} Oh, God, I don't know anything about that. I wouldn't even know where to put these things. I am not a coder
Ignored
You have not to be a coder. Simply in pure text editor (Notepad++ for example) open JFEngulfingBarsDashSymbols.xml file and edit it.
Attached Image (click to enlarge)
Click to Enlarge

Name: Image4.png
Size: 29 KB
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 11 KB Click to Enlarge

Name: Image2.png
Size: 11 KB
Attached Image
Nostalgia for the future
  • Post #34
  • Quote
  • Mar 6, 2019 2:04pm Mar 6, 2019 2:04pm
  •  GoldenFibo
  • | Joined Sep 2017 | Status: Member | 25 Posts
Quoting JoeeF
Disliked
{quote} You have not to be a coder. Simply in pure text editor (Notepad++ for example) open JFEngulfingBarsDashSymbols.xml file and edit it. {image} {image} {image} {image}
Ignored
I'm afraid I have no idea and where to find it. But if it's too much trouble for you to post it, we'll just forget about it.
  • Post #35
  • Quote
  • Mar 6, 2019 2:08pm Mar 6, 2019 2:08pm
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting GoldenFibo
Disliked
{quote} I'm afraid I have no idea and where to find it. But if it's too much trouble for you to post it, we'll just forget about it.
Ignored
I've posted it. Only read above posts.

First install Engulfing Dashboard and post screenshot of it here. You can find instructions here.
Nostalgia for the future
  • Post #36
  • Quote
  • Mar 6, 2019 3:39pm Mar 6, 2019 3:39pm
  •  Jackie5
  • | Joined Feb 2019 | Status: Member | 19 Posts
Thanks Joe. So right now there is a EB signal on the AUDCAD on H8 and H12 for a bearish engulfing bar but I do not see that showing on my dashboard. Does it show on yours? It should show until the next candle after the signal candle closes. Thanks
  • Post #37
  • Quote
  • Edited Mar 7, 2019 1:51am Mar 6, 2019 3:59pm | Edited Mar 7, 2019 1:51am
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting Jackie5
Disliked
Thanks Joe. So right now there is a EB signal on the AUDCAD on H8 and H12 for a bearish engulfing bar but I do not see that showing on my dashboard. Does it show on yours? It should show until the next candle after the signal candle closes. Thanks
Ignored
AUDCAD
Right now I've got M30 bullish and H12 bearish engulfing bars. On H8 there was bearish bar two bars before current.
Attached Images (click to enlarge)
Click to Enlarge

Name: Image1.png
Size: 28 KB Click to Enlarge

Name: Image2.png
Size: 9 KB Click to Enlarge

Name: Image3.png
Size: 10 KB Click to Enlarge

Name: Image4.png
Size: 9 KB
Nostalgia for the future
  • Post #38
  • Quote
  • Edited at 4:54pm Mar 6, 2019 4:07pm | Edited at 4:54pm
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
Quoting Jackie5
Disliked
Thanks Joe. So right now there is a EB signal on the AUDCAD on H8 and H12 for a bearish engulfing bar but I do not see that showing on my dashboard. Does it show on yours? It should show until the next candle after the signal candle closes. Thanks
Ignored
One screenshot is more than thousands words. So please post screenshots.

Screenshot of the dashboard and screens of standalone charts with Engulf indicator.

Which broker? Different brokers have different time of open/close of bars.
Nostalgia for the future
  • Post #39
  • Quote
  • Mar 6, 2019 8:10pm Mar 6, 2019 8:10pm
  •  JoeeF
  • Joined Aug 2010 | Status: Member | 2,744 Posts
New version EngulfingBarsDash v2.02:

I've added notifications. You can use popup alerts, email notifications, push notification and sound alerts.

You can download installation package from the first post of this thread.
Attached Image
Attached Images (click to enlarge)
Click to Enlarge

Name: Image2.png
Size: 37 KB Click to Enlarge

Name: Image3.png
Size: 19 KB Click to Enlarge

Name: Image4.png
Size: 46 KB
Nostalgia for the future
  • Post #40
  • Quote
  • Mar 7, 2019 3:59pm Mar 7, 2019 3:59pm
  •  Jackie5
  • | Joined Feb 2019 | Status: Member | 19 Posts
Thanks very much Joe. This is great.
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email This Thread Email This Thread
Search this Thread:

Advanced Search

  • Platform Tech
  • /
  • MT5 Indicators and EAs
  • Reply to Thread
    • 1 Page 23456 38
    • 1 Page 234 38
1 trader 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 / ©2019