Forex
Google
New signals service!

Go Back   Forex Trading > Discussion Areas > General Discussion


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #21 (permalink)  
Old 07-16-2008, 05:57 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,679
Blog Entries: 137
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
It was explain in this post http://www.forex-tsd.com/148466-post759.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #22 (permalink)  
Old 07-22-2008, 01:44 PM
Junior Member
 
Join Date: Jun 2008
Posts: 8
forexhog is on a distinguished road
What is an mq4 file?

I am a newbie and don't know anything about programming. So here it goes -what is a .mq4 file, what does it do and where do I put it. Also, what's the difference between an mq4 file and a .ex4. By playing around with it I have noticed that some .mq4 will also place trades. Any info is much appreciated.
You guys are so knowledgeable and helpful, giving so generously of your time.
Thanks in advance.
forexhog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #23 (permalink)  
Old 07-22-2008, 01:53 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,679
Blog Entries: 137
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
I moved your post to this thread.
For all the answers please read this thread How to start with MetaTrader and forex
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #24 (permalink)  
Old 07-22-2008, 04:33 PM
Senior Member
 
Join Date: Feb 2007
Posts: 943
FerruFx is on a distinguished road
Quote:
Originally Posted by forexhog View Post
I am a newbie and don't know anything about programming. So here it goes -what is a .mq4 file, what does it do and where do I put it. Also, what's the difference between an mq4 file and a .ex4. By playing around with it I have noticed that some .mq4 will also place trades. Any info is much appreciated.
You guys are so knowledgeable and helpful, giving so generously of your time.
Thanks in advance.
forexhog
The mq4 file is the one can be modified by coders.

The ex4 file is the compiled one used in your platform.

Both are in the same folder (experts or indicators or script)

FerruFx
__________________
THE HEART of FOREX & THE PROBABILITY METER - Trade with 100% confidence and ... Stress Less!!!
Coding services: Experts Advisors, indicators, alerts, etc ... more info by PM
NEW: video presentation of the Probability Meter ... 24hrs action on the website
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #25 (permalink)  
Old 07-27-2008, 09:59 AM
Member
 
Join Date: Jun 2008
Posts: 72
MoreYummy is on a distinguished road
MT4's time related issue on signal

Im looking at the documentation on how to code in MT4.

Are all the conditions being checked tick by tick or compare to previous bar etc? So far it seems like the condition is being checked tick by tick.
If yes, this is what I want.

Also what do I code if I also want to check the condition of previous 5 bars's close?

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #26 (permalink)  
Old 07-27-2008, 11:06 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,679
Blog Entries: 137
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Look at this thread How to start with MetaTrader and forex

To say shortly, the coders are coding the systems on close bar. Almost always. There are some few exceptions related to open bar scalpers and so on.

What is coding on close bar?
It is the same with real manual trading: the signal is valid if you see it on previous(or close) bar.
Numeration is started with bar number 0 (current open bar). In this case previous bar is bar #1 and so on.

It is no any programming problem to check the condition of previous 5 bars's close.

Check this thread (first post) for more information How to start with MetaTrader and forex
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #27 (permalink)  
Old 07-27-2008, 11:20 AM
Member
 
Join Date: Feb 2008
Location: geepy,EndAsia
Posts: 31
zurin is on a distinguished road
change currency with same setup

hi nd,
thx for all the so much valuable info in this thread,
i`m glad that mt4 is the best platform for forex trading compare to others,
my question is can we change the currency pair with the same mt4 setup directly without looking back for template?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #28 (permalink)  
Old 07-27-2008, 11:59 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,679
Blog Entries: 137
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Just the templates and profiles default only.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #29 (permalink)  
Old 07-27-2008, 06:08 PM
Member
 
Join Date: Jun 2008
Posts: 72
MoreYummy is on a distinguished road
Quote:
Originally Posted by newdigital View Post
Look at this thread How to start with MetaTrader and forex

To say shortly, the coders are coding the systems on close bar. Almost always. There are some few exceptions related to open bar scalpers and so on.

What is coding on close bar?
It is the same with real manual trading: the signal is valid if you see it on previous(or close) bar.
Numeration is started with bar number 0 (current open bar). In this case previous bar is bar #1 and so on.

It is no any programming problem to check the condition of previous 5 bars's close.

Check this thread (first post) for more information How to start with MetaTrader and forex
Thanks for the info.

I have an issue. In terms of closing price, for previous bars, it is very obvious. What about the closing price of a current bar, the normal calculation is the last price will be the closing price to be calculated, am I right on this? Lets say I am using 30 min chart, time is 14:12:35, the normal coding is calculating the tick at 14:12:35, then the previous close would be any tick just before this time or the completed_closed_price at 14:00:00? This is where Im confused when Im coding.

In another secenio, I actually want to compare the close price at different closing level. Using the above same time, I want to compare the close price at 14:12:35 and the closing price at 14:00:00, 13:30:00, 13:00:00 etc.

I think there are 2 ways to code to accomplish these 2 different secenio.

Please point out the coding differences between these 2, just a few code no need the whole code so I can get the idea. I dont really get it by reading the documentation.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #30 (permalink)  
Old 07-27-2008, 06:30 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,679
Blog Entries: 137
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
When we are talking about closing price so we are talking aqbout indicators' condition. It means that one indicator's line is crossing the other indicator's line ... and it should be on closed bar (or previous bar).
Or just arrow which you see on the bar ... so this arrow is programmed on closed bar (previous bar).

Of course there are many exceptions but those exceptions are some special cases.

As to exit so if take profit or stop loss so it is market price.

Sorry if it is not helping so much ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
charts, data feed, forex, problem, Win 32/Heur


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
New to Forex: Where do I start? MikeLim General Discussion 23 11-13-2008 02:47 AM
start capital for my forex project Alex.Piech.FinGeR Non Related Discussions 61 11-09-2008 01:03 PM
How to start with MetaTrader and forex newdigital General Discussion 9 07-31-2008 08:34 AM


All times are GMT. The time now is 04:02 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.