- Search Energy EXCH
-
CodeMeister replied Apr 24, 2011Search — There have been several posted (and modified) here in the last month. I don't use any myself. Just search the threads on this forum.
How to modify Stop Loss and Take Profit from chart ?
-
CodeMeister replied Apr 22, 2011Now I Understand — You are right, but now I understand. I see that you made the relevant lines a different colour. I haven't seen this before. I am wondering if the indicator is being Uninit or Reinit? I have seen this happen and never been ...
IndicatorCounted() Twice all Bars?
-
CodeMeister replied Apr 21, 2011Explanation — The situation is explained in this link: url Note: The latest bar is not considered to be calculated and, in the most cases, it is necessary to recalculate only this bar. However, there occur some boundary cases where custom ...
IndicatorCounted() Twice all Bars?
-
CodeMeister replied Apr 8, 2011Confusing — There is nothing to show - the indicator doesn't make any changes to the chart. It will alert once the conditions are met, but again it doesn't change the chart appearance. I think you are expecting something that isn't there.
Alert to sound X pips AWAY from an MA
-
CodeMeister replied Apr 8, 2011Don't Know — This indicator is the same as most others in MT4. There is nothing special that you have to do to get it to work. This is the first time anybody has mentioned a problem, so I am at a loss to know what is wrong. As a first try, I ...
Alert to sound X pips AWAY from an MA
-
CodeMeister replied Apr 5, 2011A Story Behind Each — Each pattern has its own story. I am sure that I have heard most of the stories and I have probably forgotten most of them. Double (sometimes triple) tops and bottoms are easy to understand. A market has a good run up and ...
Why do chart patterns happen?
-
CodeMeister replied Apr 5, 2011Try This — Write it yourself. Anybody with experience knows that the previous poster was right about arbitrage in demo and production. If you want proof, there were 3 students in early 2010 who spent months developing a system that made killer ...
Using one EA to execute with two mt4 brokers
-
CodeMeister replied Apr 5, 2011Try This — I don't know how you are determining that number, but it appears to have been rounded. In fact every number in MT4 has a machine precision of 16 decimal digits; its just that we humans only want 3 or 5. If you look at the Data ...
MT4 horizontal line base on price value indicator
-
CodeMeister replied Mar 30, 2011Have Seen This — I have seen situations with EAs/indicators where they seem to stop working as expected. Usually it is related to an alert or drawing an object on the chart. I have attributed it to buggy MT4 platform software and possibly an ...
EA Keeps stopping
-
CodeMeister replied Mar 29, 2011Cannot Do — MQL4 code will not work in MT5 until it is rewritten into MQL5. It may sound easy, but it is not.
Overlay in MetaTrader
-
CodeMeister replied Mar 29, 2011Errors? — I don't understand the term "stop running". If I were to take this literally, it would mean the EA disappears from the chart, but I think you meant something else. You need to check the experts and journals tab for errors. Based on ...
EA Keeps stopping
-
CodeMeister replied Mar 23, 2011Try This — The simplest way to do this is with global variables. You set the variable in one or more EA and it can be read by all others. I have read other postings stating that globals involve a lot of overhead; the way I have used them ...
How to communicate between two EAs?
-
CodeMeister replied Mar 23, 2011Try This — Saving a chart as a template and then applying the template to another chart will do what you want.
New to MT4 - Question(s)
-
CodeMeister replied Mar 22, 2011Try This — Look for the grip or small box on the object and drag it near a price bar. It will be aligned with the High, Low or Close depending on which is nearest. Works on trend lines and I think other objects as well.
New to MT4 - Question(s)
-
CodeMeister replied Mar 20, 2011Try This — Hour() >= MarketOpen && Hour() < MarketClose
A simpler way? (limiting trading times)
-
CodeMeister replied Mar 20, 2011Try This — I look at the buffer values in the Data Window. That should tell you the expected values from iCustom(). If the values in the Data Window don't make sense (poorly coded indicator), there is no point in trying to use iCustom().
How to read a buffer given by an arrow signal with iCustom?
-
CodeMeister replied Mar 19, 2011I think you are mixing up fundamental and technical analysis. Previous posters were analyzing the technical strength of a currency's move. They didn't indicate the TF they were checking, but assuming it was less than daily, the fundamentals don't ...
both sides of pair for confirmation of trend
-
CodeMeister replied Mar 19, 2011This is the Proper Forum — The last genius with a 100% system was certain he could win 1 pip per trade with a 20 pip SL
This kind of posting seems to appear every few months and always stays in the Rookie Discussion forum. That should ...Help me get 100% Win Ratio & 10 pips a day
-
CodeMeister replied Mar 18, 2011Confusing — I can see how I misunderstood. But the question is still very confusing. You don't state what EA you are talking about. Even if we knew the name, somebody would have to look at the code to determine how time is being used. ...
Is Market Watch time the definitive broker time as used by EAs?
-
CodeMeister replied Mar 17, 2011Partial Close — I gave it some thought and decided to provide the easy, unreliable method of doing things. If somebody wants to provide the difficult, reliable method be my guest, but it takes more programming skills. The order close is easy. ...
(MT4) Partial Close in an EA