- Search Energy EXCH
-
kennyhubbard replied Apr 24, 2010Here you go, Markets are closed, so haven't tested it. Note the inputs that allows you to select your sound and the number of repeats. Search the Metatrader folder for wav files to see the sound options.
ALERT set to go off every 5 minutes
-
kennyhubbard replied Apr 23, 2010Here you go, Also included a buffer, so you can tell it to only trade if the close is X no of pips above or below the previous close. Let me know if there are any bugs.
Need a Simple EA for 5 min EU Chart
-
kennyhubbard replied Apr 23, 2010Ah, ok. No problem. I downloaded their platform and opened a demo account. From there you can download the data and if you really want you can export it to your own broker but they have lots of data and their spreads are ok, so I like to use them ...
Really good backtesting for Dummies
-
kennyhubbard replied Apr 23, 2010Same way you did with Metaquotes. I also used the MT4 period converter as a good measure, so drop it on the GBPUSD H4 & M15 charts.
Really good backtesting for Dummies
-
kennyhubbard replied Apr 23, 2010Wannaberich, I dunno about Metaquotes but I found FXOpen ECN pretty good for downloading data. I got something like 10 years data out of them at 90%.
Really good backtesting for Dummies
-
kennyhubbard replied Apr 22, 2010Hi Keiran, Sorry, I have no opinion on them. I have never looked at them as I am pretty happy with the brokers I currently use.
Help for Ordersend - 2 Step Process for ECN
-
kennyhubbard replied Apr 22, 2010This will do what you want. Its a blunt instrument, meaning no error handling. Enter your desired equity TakeProfit and make sure all your trades in the basket share the same MagicNumber. extern int MagicNumber = 100; extern double Equity_TP = 10; ...
Exit for Martingale EA ?
-
kennyhubbard replied Apr 22, 2010Hi Keiran, Dubai is great thanks. How is Singapore.......did you go to the autotraders meetup? I would have liked to have gone but I had to work. As a matter of interest, you can also send an ECN order like this :- OrderSend(Symbol(),OP_BUY, Lots, ...
Help for Ordersend - 2 Step Process for ECN
-
kennyhubbard replied Apr 21, 2010Hi, Actually error 136 is an Off-Quotes error which is a technical error error on the broker side. It has nothing to do with your code, or the prices. Not to be confused with a re-quote. As a test, just try doing a straight forward trade entry ...
Help for Ordersend - 2 Step Process for ECN
-
kennyhubbard replied Apr 21, 2010Hi there, All brokers let you do that, or have I missed something? You have simply opened a triangular hedge(assuming you got the correct lot sizing). Whats the problem?
Brokers who let you trade more than one pair on a position?
-
kennyhubbard replied Apr 20, 2010Ok, no prob,we all started somewhere. Save this in your /experts folder and restart your terminal.
EA to take out horizontal lines
-
kennyhubbard replied Apr 19, 2010Hi, Not sure what you mean by a particular line, but this EA will delete any horizontal line that the bid price crosses(within a band of 2 pips). int start() { int Obj_Index; double Line_Val; string Line_Name; for(int i=0;i <= ...
EA to take out horizontal lines
-
kennyhubbard replied Apr 19, 2010Hi Justin, Actually, you are correct........I have experienced 4 problems with 5 trades in the last 7 months.....that I know of. I found the reference to 365 days confusing as I am only talking about Metatrader.....not sure why you bringing the ...
MB Trading Futures - Introduction
-
kennyhubbard replied Apr 17, 2010Hi, sorry a semi-colon dissappeared during the cut and paste. //| This MQL is generated by Expert Advisor Builder | //| http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ | //| | //| In no event will author be liable for any damages whatsoever. | //| ...
Stop EA from reentering
-
kennyhubbard replied Apr 17, 2010//| http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ | //| | //| In no event will author be liable for any damages whatsoever. |//+------------------------------------------------------------------+ //| This MQL is generated by Expert Advisor ...
Stop EA from reentering
-
kennyhubbard replied Apr 17, 2010if (Volume[0] > Volume[1]){......make trade......} This is if the signal bar that you refer to is the current one. If it is the previous bar then : if (Volume[1] > Volume[2]){......make trade......}
How do I add a Filter?
-
kennyhubbard replied Apr 17, 2010I think they have dropped their minumu to something like $1000. I doubt you will find anyone with experience of their live MT4 platform as it is not available yet and they do not know when it will be available. I think MB Trading was in tesing mode ...
Dukascopy mt4
-
kennyhubbard replied Apr 17, 2010Justin, Thank you for your response. Please note that my objective here is not to flame MB Trading. I feel that there is tremendous potential but I am frustrated that I may end up not being able to profit from it because of the issues under ...
MB Trading Futures - Introduction
-
kennyhubbard replied Apr 16, 2010Justin, I believe in giving credit where it is due and by and large I have found MB Trading to be pretty good. Unfortunately, there has been an uptick in execution problems of late on your MT4 platform. I have a friend who lost something like 7% of ...
MB Trading Futures - Introduction
-
kennyhubbard replied Apr 4, 2010Not much to go on, but off the top of my head, it looks to me like you are writing strings to a datetime variable type. I'm not surprised that this is producing an error. You are using this stament :- to convert the Date to a datetime variable and ...
invalid integer number as parameter 1 for TimeToNumber function