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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Japanese Candlestick Charting Techniques - Steve Nison 15 replies

Scalping techniques on 1 Min chart 26 replies

Support & Resistance trailing stop ea and exits techniques 0 replies

Statistics for charting/TA techniques ? 0 replies

Trading Techniques 0 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 215
Attachments: MT4 navigational tips and techniques
Exit Attachments

MT4 navigational tips and techniques

  • Last Post
  •  
  • 1 3536Page 373839 56
  • 1 36Page 3738 56
  •  
  • Post #721
  • Quote
  • Oct 24, 2012 4:41am Oct 24, 2012 4:41am
  •  Shabs19
  • Joined Aug 2006 | Status: Member | 2,461 Posts
I put .ex4 in indicator folder in meta trader but in MT4 platform under custom indicator it shows hidden and not display on the chart .
how to solve this problem?



If you loaded the ex4 file into the correct folder, experts\indicators, then it will show up. Use the Navigator (folder with star icon on the toolbar).

Mq4 file will make no difference as to being hidden, this file is required only to view \ make changes to the code.
To Earn you must Learn
  • Post #722
  • Quote
  • Edited at 7:43am Oct 24, 2012 5:26am | Edited at 7:43am
  •  umpats
  • | Joined Apr 2011 | Status: Member | 272 Posts
Quoting Shabs19
Disliked
I put .ex4 in indicator folder in meta trader but in MT4 platform under custom indicator it shows hidden and not display on the chart .
how to solve this problem?



If you loaded the ex4 file into the correct folder, expertsindicators, then it will show up. Use the Navigator (folder with star icon on the toolbar).

Mq4 file will make no difference as to being hidden, this file is required only to view make changes to the code.
Ignored
thank you very much Shabs19.
  • Post #723
  • Quote
  • Nov 6, 2012 10:10pm Nov 6, 2012 10:10pm
  •  alex_lion
  • | Joined Nov 2012 | Status: Junior Member | 1 Post
Hi Guys ,

I am not sure if here is the right place to ask this question or not . Sorry if I am in wrong topic .

I am completely beginner in MQL4 programming . Just have to 2 quick questions.

1- If I have a script or expert ... and if I need to run this 24 hours , can I quit meta trader and shutdown my machine or I have to keep open my MT4 24 hours ?

2- I need a simple script which opens a buy position with current price and 4 buy pending orders below the open position(current price). The pending orders should be created with 100 pip difference from the open trade AND if one of each pending orders OR the current open position hit the "Take Profit" it automatically close all other pending orders AND open a new buy position and new set of 4 pending orders again with the same condition .

I am sure it's very simple script but as I am beginner I'm very confused how to run it ? As a script or Expert Advisor

Could somebody please help me about this ? It's really a great help that caused bad problem for me .

Thanks so much for your help in advance.
  • Post #724
  • Quote
  • Nov 7, 2012 2:16am Nov 7, 2012 2:16am
  •  hanover
  • Joined Sep 2006 | Status: ... | 8,081 Posts
Alex, welcome to the forum.

Quoting alex_lion
Disliked
1- If I have a script or expert ... and if I need to run this 24 hours , can I quit meta trader and shutdown my machine or I have to keep open my MT4 24 hours ?
Ignored
MT4 must be running continuously, and (if it is an EA) with the 'Enable Expert Advisors' facility checked ON.

Quoting alex_lion
Disliked
2- I need a simple script which opens a buy position with current price and 4 buy pending orders below the open position(current price). The pending orders should be created with 100 pip difference from the open trade AND if one of each pending orders OR the current open position hit the "Take Profit" it automatically close all other pending orders AND open a new buy position and new set of 4 pending orders again with the same condition .

I am sure it's very simple script but as I am beginner I'm very confused how to run it ? As a script...
Ignored
A script runs once, executing the program instructions from the top to the bottom.

An EA has three modules:

 

  1. init() — program instructions in this module execute once, when the EA is attached onto a price chart, or when it is reset.
  2. deinit() — program instructions in this module execute once, when the EA is removed from the chart. (Useful for performing final 'housekeeping' operations).
  3. start() — program instructions in this module execute once, every time a new price 'tick' occurs on for the pair/instrument on whose chart the EA is attached. For example, if the EA is attached to a EURUSD chart, then immediately a new EURUSD price quote occurs, the program instructions in the start() module are executed.

Hence, to answer your question, a script could easily place a number of pending orders at with entries, TPs and/or SLs at pre-determined price levels. But if you wanted to check conditions repeatedly, prior to (or after) placing the orders, then you'd need an EA.

For more info, please see here.

David

  • Post #725
  • Quote
  • Nov 10, 2012 11:11am Nov 10, 2012 11:11am
  •  iferdous
  • | Joined Dec 2010 | Status: Member | 41 Posts
Hi all,
Is there any way to stop closed charts to show back up when you restart MT4. I only want to keep certain charts open but every time I restart my MT4 some charts that I closed before keeps automatically showing back up and I have to close them again. Thank you for your help.
  • Post #726
  • Quote
  • Nov 10, 2012 11:19am Nov 10, 2012 11:19am
  •  metroman
  • | Commercial Member | Joined Sep 2012 | 57 Posts
Quoting iferdous
Disliked
Hi all,
Is there any way to stop closed charts to show back up when you restart MT4. I only want to keep certain charts open but every time I restart my MT4 some charts that I closed before keeps automatically showing back up and I have to close them again. Thank you for your help.
Ignored
Please try to save a new profile (File -> Profiles -> Save as) after closing charts, does this help?
  • Post #727
  • Quote
  • Nov 10, 2012 11:35am Nov 10, 2012 11:35am
  •  iferdous
  • | Joined Dec 2010 | Status: Member | 41 Posts
Hi Metroman,

Thank you for your quick reply. That is exactly what I needed. Many green pips to you Sir.
  • Post #728
  • Quote
  • Nov 10, 2012 4:38pm Nov 10, 2012 4:38pm
  •  navk
  • Joined Oct 2010 | Status: Trader | 11,635 Posts
Hi guys,

I have an EA. ALong with this EA, i have been given some set files.

I have put the EA in experts folder.
What to do with set files ? Infact there are three set files. How to read the set files? where to save it in mt4 platform and what is the use of it ?

Thanks in advance.
Intra day only.
  • Post #729
  • Quote
  • Nov 10, 2012 5:54pm Nov 10, 2012 5:54pm
  •  Erebus
  • Joined Jul 2011 | Status: Member | 5,710 Posts
Quoting navk
Disliked
Hi guys,

I have an EA. ALong with this EA, i have been given some set files.

I have put the EA in experts folder.
What to do with set files ? Infact there are three set files. How to read the set files? where to save it in mt4 platform and what is the use of it ?

Thanks in advance.
Ignored
Navigate to the MT4 / Experts / Presets folder, see the files already there end in .set ?

Place them there, when on the chart with the EA attached, right click, select EA, Properties, Input tab, Load button - this opens the Presets folder, choose the file you want.

You can save your own file there when you make changes to the set file, play with it, you can't break it

The two most powerful warriors are patience and time. Leo Tolstoy
  • Post #730
  • Quote
  • Nov 10, 2012 6:42pm Nov 10, 2012 6:42pm
  •  navk
  • Joined Oct 2010 | Status: Trader | 11,635 Posts
Quoting Erebus
Disliked
Navigate to the MT4 / Experts / Presets folder, see the files already there end in .set ?

Place them there, when on the chart with the EA attached, right click, select EA, Properties, Input tab, Load button - this opens the Presets folder, choose the file you want.

You can save your own file there when you make changes to the set file, play with it, you can't break it

Ignored
Oh, thanks a lot Erebus.

I have done that, and noticed the settings for three set files.

Thanks once again.

Also I want to ask you can you help me creating an EA ? I have set of Indicators for my system.
Intra day only.
  • Post #731
  • Quote
  • Nov 10, 2012 7:30pm Nov 10, 2012 7:30pm
  •  Erebus
  • Joined Jul 2011 | Status: Member | 5,710 Posts
Quoting navk
Disliked
Oh, thanks a lot Erebus.

I have done that, and noticed the settings for three set files.

Thanks once again.

Also I want to ask you can you help me creating an EA ? I have set of Indicators for my system.
Ignored
NO, but have a look over here

---------> Will code profitable EA's for free

The two most powerful warriors are patience and time. Leo Tolstoy
  • Post #732
  • Quote
  • Nov 10, 2012 8:12pm Nov 10, 2012 8:12pm
  •  navk
  • Joined Oct 2010 | Status: Trader | 11,635 Posts
Quoting Erebus
Disliked
NO, but have a look over here

---------> Will code profitable EA's for free

Ignored
No probs.

I have another question.

In the EA settings, ECN true or false ? What should I set ? The default is "false "
Intra day only.
  • Post #733
  • Quote
  • Nov 14, 2012 7:11am Nov 14, 2012 7:11am
  •  metroman
  • | Commercial Member | Joined Sep 2012 | 57 Posts
Quoting navk
Disliked
No probs.

I have another question.

In the EA settings, ECN true or false ? What should I set ? The default is "false "
Ignored
I suppose if your broker is ECN then you should set "true"
Probably this setting is responsible for placing initial SL/TP levels for market orders (ECN brokers do not allow having initial SL/TP levels so you have to open new order with SL=0, TP=0 and then modify SL/TP for this order)
  • Post #734
  • Quote
  • Nov 14, 2012 9:36am Nov 14, 2012 9:36am
  •  osama3d
  • | Joined Oct 2012 | Status: Member | 5 Posts
Hello,
I am new to this platform, so bear me with my question. Last 2 days I used a signal provider for my trades, there was a "signals" tab in my terminal box on mt4 as well as a signlas tab in the options menu. Today I restarted my application, there was no signals tab nor in the options menu and the actions were not being copied. Is it disabled by my broker? or is there any other issue?
Any help would be appreciated.
Thank you.
  • Post #735
  • Quote
  • Nov 22, 2012 12:58am Nov 22, 2012 12:58am
  •  Nerrsoft
  • | Joined Sep 2012 | Status: Member | 5 Posts
hi,

I want to know that how to hashmap all sybmols list of a broker use mql in metatrader?
Dose anyone know that? please tell me, thank you very mach.
  • Post #736
  • Quote
  • Nov 26, 2012 1:39pm Nov 26, 2012 1:39pm
  •  Shaggy_rock
  • | Joined May 2010 | Status: No you don't. | 281 Posts
Hi, I would like to ask if it's possible to put the object description on the right side of the object ?
Old Habits Die Hard.
  • Post #737
  • Quote
  • Nov 26, 2012 2:18pm Nov 26, 2012 2:18pm
  •  hanover
  • Joined Sep 2006 | Status: ... | 8,081 Posts
Quoting Shaggy_rock
Disliked
Hi, I would like to ask if it's possible to put the object description on the right side of the object ?
Ignored
Shaggy,

I don't think this is possible.

With some objects (e.g. trendline, rectangle), you can effectively rotate the object 180 degrees by making the first time parameter a later date/time than the second one. But then the text appears under the line and upside down.

Programmatically, you could make two objects (line & text), and have them follow each other around on the chart --- but that would require some programming expertise.

David
  • Post #738
  • Quote
  • Nov 26, 2012 2:53pm Nov 26, 2012 2:53pm
  •  Shaggy_rock
  • | Joined May 2010 | Status: No you don't. | 281 Posts
Quoting hanover
Disliked
Shaggy,

I don't think this is possible.

With some objects (e.g. trendline, rectangle), you can effectively rotate the object 180 degrees by making the first time parameter a later date/time than the second one. But then the text appears under the line and upside down.

Programmatically, you could make two objects (line & text), and have them follow each other around on the chart --- but that would require some programming expertise.

David
Ignored
Bummer, ok, thank you for your reply.
S.
Old Habits Die Hard.
  • Post #739
  • Quote
  • Nov 28, 2012 4:33am Nov 28, 2012 4:33am
  •  nikedib
  • | Joined May 2011 | Status: Member | 5 Posts
Hallow Guys,

Here I have done something. Hope you will like it and please reply for modification.
Attached Image
Attached File
File Type: ex4 AskBid_Time _Pair_Trend_Spread_(all-in-one.ex4   15 KB | 235 downloads
  • Post #740
  • Quote
  • Dec 1, 2012 3:21am Dec 1, 2012 3:21am
  •  anthm
  • | Joined Jul 2012 | Status: Member | 348 Posts
MT4 download

Hello all,

I am currently using MT 4 but it is affiliated with a broker.

Is it possible to download and use MT4 without signing up with a broker? ie) just using MT4 for analysis only.

I have downloaded MT4 free download but it is asking me to register with a broker which i dont want to do.

Could someone please shed some light for me please?

Kind Regards
anthm
When you're in the land of HOPE, you're done, get out of there, WALK AWAY
  • Platform Tech
  • /
  • MT4 navigational tips and techniques
  • Reply to Thread
    • 1 3536Page 373839 56
    • 1 36Page 3738 56
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 / ©2021