- Search Energy EXCH
-
CodeMeister replied Nov 26, 2011Try This — There are several EA builders available and your request seems simple. I met this guy on another forum and he is looking for beta testers for his new program. Give it a try. url
I need a Trade Management EA by % value
-
CodeMeister replied Nov 26, 2011Bad — The default setting for Risk/Reward is 10:1. That should be huge red warning flag. So this thing will win 90%, but even one loss requires 10 straight winners to break even. Avoid this dog.
Is this a good EA?
-
CodeMeister replied Nov 25, 2011That is not entirely true. I have an EA that has been profitable for 18 months that is based on one that was posted in these forums. Accordingly to the people who gave me the idea (such kindness exists on these forums) for it, it had been profitable ...
forex robot system
-
CodeMeister replied Nov 25, 2011Suggestion — It would help a lot if you posted the link, so that others could find it. I would definitely run it in Strategy Tester to take a look at its profile for a year. It isn't reliable as a predictor of success, but it is good for ...
Is this a good EA?
-
CodeMeister replied Nov 25, 2011Try This — There are several EA builders available and your request seems simple. I met this guy on another forum and he is looking for beta testers for his new program. Give it a try. url
Looking for this EA
-
CodeMeister replied Nov 24, 2011Try This — I have never coded this way, but of course it is possible to do. It will take some effort. The first thing I noticed about your code is that it doesn't handle the horizonalLine being equal to the Ask. That won't happen often, but ...
best way to detect a price crossing a line
-
CodeMeister replied Nov 24, 2011Try This — This code will do what you want for MA crossing, but can be adapted to your needs by changing the variable names. Please note that this works on the 2 previous bars and is intended to be used at the opening of a new bar. Again this ...
best way to detect a price crossing a line
-
CodeMeister replied Nov 23, 2011Get A New Broker — Most brokers have sensible server times and don't have this problem.
MT4 delete historical data?
-
CodeMeister replied Nov 22, 2011HA EA — There are Heiken Ashi EAs around that are built similar to this. They usually look for multiple bullish / bearish candles. I don't think any of them are profitable, but you might want to try them out.
EA trading based on Candle Color
-
CodeMeister replied Nov 22, 2011Try This — I think this thread will answer your question. url
Help me backtest this indicator please!
-
CodeMeister replied Nov 21, 2011Doesn't Work Like That — It doesn't change the stop. It waits until the price hits the MA and then closes the trade. So it works as if there was a trailing stop in place.
EA - That uses MA for SL
-
CodeMeister replied Nov 20, 2011Try This — It appears as though the MA might be calculated in the wrong sequence. You have build the array from right to left; the iMAOnArray works from left to right. Use ArraySetAsSeries() to do it the reverse way.
Script to read MA Previous indicator data
-
CodeMeister replied Nov 20, 2011Try This — Arrays are useful for writing MQL4 (and other languages). There are tutorials on the MT4 web site. I don't know what ROC; I suppose you can get its values from iCustom();
Script to read MA Previous indicator data
-
CodeMeister replied Nov 19, 2011Try This — You didn't explain what the indicator in the second window was. Lets assume it is the RSI (or CCI, ATR and other common ones). There is a function iRSI() which will give you the RSI values for each bar. If you store these values in ...
Script to read MA Previous indicator data
-
CodeMeister replied Nov 17, 2011Documentation — To find out from what list the order has been selected, its close time must be analyzed. If the order close time equals to 0, the order is open or pending and taken from the terminal open positions list.
Check if ticket(Order) is still open
-
CodeMeister replied Nov 16, 2011Doesn't Exist — No indicator works any better than another. But some people can be more successful with some indicators than they can with others. That is because they "fit" the indicator to their trading style or maybe the other way. So what ...
What is the best saturation indicator with true signals?
-
CodeMeister replied Nov 16, 2011Waste of Time — Everybody is wasting time worrying about unimportant things. Stay focused on the important ones and your trading will improve.
Can MT4 Brokers see your EA/Indi
-
CodeMeister replied Nov 16, 2011Documentation — This is from the OrderSend() documentation. Returns number of the ticket assigned to the order by the trade server or -1 if it fails.
OrderSend - how to get Ticket#
-
CodeMeister replied Nov 16, 2011Cannot Be — Either you have coded this expression wrong (in the logical sense) or the problem is somewhere else in your program and you are getting an unexpected result. So you need to determine where the problem is occurring because it is not ...
Anyone can check this code pls?
-
CodeMeister replied Nov 16, 2011Know — I know the difference when I see it; but that is usually well after the fact.
How do you distinguish a retracement from a trend reversal?