Friends

Add friends via their profile or user search and you will be able to see if they are online

Matt
Registered at MQL5.community
Matt
Added topic invalid index buffer - help!
Getting an "invalid index buffer number in iCustom function" error in backest. The error appears in the journal (numerous times, apparantly every tick). The custom indicator is NewTrend . The only call in the EA looks like this: H1Silver =
Matt
Added topic Report on Championship accounts
How difficult would it be to provide a report on the championship accounts? The equity curve and related data is intersting to me (and possibly others) and usually available after backtests , or from live account report. I understand the load might
Matt
Added topic unexplained buying frenzie
This sounds like a server issue, but there's enough inconsistencies, I wonder if anyone else has seen something like this. InterBank FX server. Demo account . Running several EAs, but only two of them (but two, not just one) had this happen: at
Matt
Added topic iCustom() missing values
I'm using iCustom () to access values for ZigZag. It is not seeing values for low ZigZag points. Here's the function: void CheckOpen (){ double LastZZ , ZZarray [] ; int MaxIdx ; ArrayResize ( ZZarray , ExtZZBackstep ) ; for ( int i = 0 ; i <=
Matt
Added topic Likliehood of new tick interrupting EA
Is it possible for a new tick to interrupt an EA already in progress? If possible, is it probable? If an EA is running and a new tick comes in, is the original run cut off and a new run started, or does it complete the execution of the first run
Matt
Added topic Trade function arrows
What else can be done (besides color) with the arrows made by the order function ? I like the arrow, with lines for SL and TP. But, I have a client who wants a line for buy, another for sell and another for profit. Can this be done with the order
Matt
Added topic iMACD() variation from MACD construction
Has anyone already brought up that iMA CD is different from a constructed MACD? Not just how it's displayed, but the values are wrong. There are some other constructions out there (MACD_c2 is one, but it has an SMA instead of EMA for the signal line
Matt
Added topic What is used on [0]?
In functions that reference the bar, just what is used on [0]? For example, what is Close[0]? I would expect it is the current price (bid?). However, my EA isn't behaving that way, so maybe it's something else? Another example, the MA