Michael
Michael
Michael
Added topic Testing an EA in strategy tester
What options does one have if their strategy is based on objects drawn on the chart? See this link: https://www.mql5.com/en/articles/1512 . Quote: "Draw objects are not really set. The objects are disabled in order to accelerate the
Michael
Added topic Attention Trigonometry people!
What is wrong with the following code? I'm not getting any values back. #property copyright "Copyright © 2010, Nondisclosure007" #property link       "http://no.link.yet" #property indicator_chart_window #property
Michael
Added topic mql5.dll
How about some documentation on what this is?  I've been told it's the 'replacement' for DDE.  I'd like to know how to use it.  :)
Michael
Registered at MQL5.community
Michael
Added topic loopy problem
I'm hoping someone can help here. I'll post the code. I can't seem to get the loop working in my code. It only ever wants to run through the loop during the last 2 or 3 candles. I've even taken out IndicatorCounted () and used Bars-1. I get the same
Michael
Added topic DDE commands
Are these the ONLY DDE commands available in Excel? =MT4|LOW!USDCHF =MT4|HIGH!USDCHF =MT4|BID!USDCHF =MT4|ASK!USDCHF =MT4|TIME!USDCHF =MT4|QUOTE!USDCHF I know you can change the symbols, but I was hoping for a little bit more. If there is more, where
Michael
Added topic Is this a "feature"?
In running my EA through a backtest , I wind up w/ about 80% of my positions getting closed waaaay above or below the high/low on a candle. My EA is not set to close orders like this. As a matter of fact, doesn't the candle have to get to that point
Michael
Added topic Completed Bar
Hello. I'm trying to get my EA to run only when a bar is completed. I've been trying on the Day TimeFrame . I've tried this code: if ( Time [ 0 ] == prevtime ) return ( 0 ) ; I've also tried this: if ( TimeHour ( TimeCurrent ()) != 0 &&
Michael
Added topic Indicators getting values from Indicators
If this has been answered somewhere else, please post a link. I'm looking to create an Indicator that will pop up a messgage box when some conditions are met. The conditions are already plotted on the chart via some other indicators. Is it possible