- Search Energy EXCH
-
CodeMeister replied Sep 20, 2012Righteous Cause — I have to agree 100% with your comments. You are on the side of angels, but out of step with the Internet generation and doomed to disappointment. By Internet generation I am not talking about an age group and I don't want to ...
Decompiled code... stop posting it
-
CodeMeister replied Sep 20, 2012Rookie Section — There is a Rookie thread for questions like this.
MT4 and Forex.com
-
CodeMeister replied Sep 18, 2012Waste of Time — Until you have a clear idea of what you want and can communicate it effectively, I have no interest in this project. Wishful thinking and vague wording don't cut with me and most coders.
How to check if market is closed/opened (mt4)
-
CodeMeister replied Sep 17, 2012Waste of Time — Well I guess I wasted my time. Perhaps you should be more detailed when making requests. I can't help you because what you want would take more effort than I am prepared to give.
How to check if market is closed/opened (mt4)
-
CodeMeister replied Sep 17, 2012Try This — To keep things as simple as possible, just compare Hour() to the closing time of your broker on Friday. Something like: If (DayOfWeek() == 5 && Hour() > CloseTime - WarnHours) // do something CloseTime and WarnHours are int ...
How to check if market is closed/opened (mt4)
-
CodeMeister replied Sep 16, 2012Tough One` — The problem with MQL (and other language) functions is that they only return a single value. I find myself in the same conundrum from time to time. Using globals is not a bad choice considering some of the alternatives. Some would ...
MQL4 custom Function
-
CodeMeister replied Sep 16, 2012Track Record — Has everybody on this thread taken leave of their senses? Remember the saying that if something sounds too good to be true? Take a look at this guy's track record. He made similar outlandish promises before in the Carmen's Eye ...
I'm releasing an EA for beta testing in one week
-
CodeMeister replied Sep 13, 2012Wrong Forum —
There have been a number of threads on this topic in the Rookie Discussion section. But seriously, it is just as hard to write an EA that constantly loses more than the spread as it is to write one that wins more.I Need a constantly losing EA
-
CodeMeister replied Sep 12, 2012Need Experience — I don't think you should be trying something as tricky as this with no programming experience. Try to do some simple things first and then try this. With a little more experience, you will understand my suggestion or come up ...
Need Coding Help - Once A Month Trading
-
CodeMeister replied Sep 11, 2012Try This — Assuming you know the date of the last trade (depending on open or close time), just add 30 days (60sec*60min*24hr*30day) to the last trade date and compare to the current time (TimeCurrent()) and control your trade that way. No ...
Need Coding Help - Once A Month Trading
-
CodeMeister replied Sep 10, 2012Try This — I use the dropdown from the Windows choice on the main menu. It only lists 9 active windows, but thats more than enough for me. Getting a list of objects is more difficult and I don't think I understand because a trend line on one ...
Method to see list of open charts and change the active chart
-
CodeMeister replied Sep 2, 2012Try This — I don't think anybody has ever had that concern before. There have been some who were concerned about lack of bars for back testing, but I don't remember any who needed a lot of bars for live trading. You didn't define reasonable ...
MQL4 - Preloading bars for a given timeframe
-
CodeMeister replied Aug 31, 2012Dashboard Version — This thread contains the dashboard version of this indicator. url
Pips2MA Indicator
-
Pips2MA Indicator
Started Aug 31, 2012|Platform Tech|35 replies
I have decided to start a new thread to handle this indicator. The old one was started by ...
-
PipsFromMA Indicator
Started Aug 31, 2012|Platform Tech|2 replies
I have decided to start a new thread to handle this indicator. The old one was started by ...
-
CodeMeister replied Aug 30, 2012A Mess — I would dare say that the person who wrote the code is the only one who can fix it. It looks like a mess to me, so I didn't spend much time looking and I'm sure not going to run it.
Please help with specific partial close EA
-
CodeMeister replied Aug 27, 2012Don't — Don't try to learn MQL4 if you are not a programmer. It is an easy language to learn with a programming background, but I can't see a non programmer mastering it due to the poor documentation and tutorials. There are other languages ...
Manually Drawn Zones, Automated Entry and MM
-
CodeMeister replied Aug 23, 2012No — You would not get any tick updates for an expired account.
MQL4: isTradeAllowed() always returns false
-
CodeMeister replied Aug 22, 2012Try This — The only reason TradeAllowed() returns false is you have not enabled trading for the EA on that chart. Check the EA properties and look for the smiley face on the upper right hand corner of the chart.
MQL4: isTradeAllowed() always returns false
-
CodeMeister replied Aug 22, 2012Try This — This should do what you want. Be sure to use the latest version which is in this post. url
Indicator for when price crosses a Moving Average