- Search Energy EXCH
-
CodeMeister replied Feb 9, 2012Options Barrier — I attended an online webinar with FXDD's Bob McKeon, Senior Vice President, Markets and Liquidity. He is the boss of the market makers and he talks like a trader (which is his background). He gave us some insights on how the ...
M&W-Trading
-
CodeMeister replied Feb 9, 2012Try This — extern int nAlert=2; for (int i=0; i<nAlert;i++) { if(UseAlert) Alert("Retrace Found :"+Symbol() + " @: "+Period()); }
help, alert sound for retracement finder
-
CodeMeister replied Feb 9, 2012Try This — 1. In the options menu on your platform, change the file name association for the alert to another file or your own custom file in the sounds folder. 2. Use a For loop.
help, alert sound for retracement finder
-
CodeMeister replied Feb 9, 2012EA Don't Work — I'm not sure if you have any EAs for trade management for example, but switching accounts on the same platform will disable every EA. I think indicators are fine. Something to consider.
multiple accounts - use one or multiple platforms?
-
CodeMeister replied Feb 4, 2012Yes — I answered to your email directly within a few hours. Have sent again a minute ago.
Alert to sound X pips AWAY from an MA
-
CodeMeister replied Feb 3, 2012Try This — The simplest way is to record the time of the trade (Time[0]) and then compare TimeCurrent() to the stored variable and take the appropriate action.
Need simple coding help, how to prevent re-entry on same bar?
-
CodeMeister replied Feb 3, 2012Try This — Snagit screen capture should be able to do this. I haven't found anything yet that it couldn't handle and its quite user friendly. The $40 is well worth it.
uploading mt4 statements?
-
CodeMeister replied Feb 2, 2012Not Enough Details — I need an error message to determine what the problem is. I cannot help otherwise.
Free Expert Advisor with positive backtest results
-
CodeMeister replied Feb 2, 2012Try This — This contains an alert indicator. Just set the AlertPips to 0 if you want the price to touch the MA. Be sure to use the latest version of the code, the earlier ones are missing features or buggy. url
Alert for price crossing MA?
-
CodeMeister replied Feb 1, 2012Explanation — Close price on the current bar is updated every tick, so in your example the first tick on the current bar that hits the MA will trigger the alert on the Daily chart. Think of it this way - the MT4 client does not know when the ...
Alert to sound X pips AWAY from an MA
-
CodeMeister replied Feb 1, 2012Try This — Are you sure that trading is enabled on the live account? The icon in the upper right should look like a smiley face; if not you have to enable trading in the properties dialogue. Assuming that trading is enabled, it is possible ...
Free Expert Advisor with positive backtest results
-
CodeMeister replied Jan 31, 2012This Is How — Welcome to FF Pips4Fun. You picked a tough question for me to answer and I wish somebody had asked it several years ago when I wrote the indicator and everything was fresh in my mind.
The price used in the calculation is ...Alert to sound X pips AWAY from an MA
-
CodeMeister replied Jan 31, 2012Depends — If you did not know Java or MQL4 you would say that MT4 is much easier. If you knew Java, you still might say MT4 is easier because there is more code samples to use and more coders to discuss issues with.
Coding for Dukscopy's JPlatform
-
CodeMeister replied Jan 30, 2012Try This — You didn't tell us what the error code was from the Experts tab so it is difficult to determine exactly what is going on. Here are a few things I spotted, but they may not be the source of the problem. 1. Never use a double instead ...
I am looking for a script to open multiple positions
-
CodeMeister replied Jan 30, 2012Understand — Now I understand. Your variable declaration is OK. Why don't you put the Upsum, Dnsum calculation in the loop? Initialize Upsum to 0 and then Upsum = Upsum + Up[i].
coding and variable help needed
-
CodeMeister replied Jan 30, 2012Confused — I think what you mean is the displayed price for an indicator is not a label or text object so it can't be modified. It seems to me that the displayed info is a comment and that can't be changed unless you change the code.
Change Color Of Price Action Line In MT4?
-
CodeMeister replied Jan 30, 2012Try This — You didn't show us the declarations for your array variables. I assume you using something like double up[4], dn[4] and you want to use Candle values like 5 or 15. The simplest way is to declare up and dn as arrays with lots of ...
coding and variable help needed
-
CodeMeister replied Jan 30, 2012Forgot Something — I forgot to mention in my previous post that if you use bar opening logic, you should probably do a comparison between bar 1 and 2 not 0 and 1. Bars 0 and 1 might have the same or very close values depending on how the ...
Need advice on EA icustom
-
CodeMeister replied Jan 29, 2012Depends — Your code as shown either will or will not work depending on your EA logic. If you test the condition every tick, it won't work because the current bar's value will be flipping back and forth and will generate lots of false signals. ...
Need advice on EA icustom
-
CodeMeister replied Jan 27, 2012Reboot — Reboot your machine and as someone else suggested, delete the indicator.
MT4 advice please