micky52
micky52
Friends

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

micky52
Registered at MQL5.community
micky52
Added topic Getting the Close value of a specific Bar
I'm trying to locate the value in a specific Bar and I dont really understand how to work with Arrays. When I try to read a "Bars[bar_number]" value, it returns that it needs an integer value as index. My "bar_number" in this
micky52
Added topic Problem with " *Point "
HI, I got this problem suddently, never before and not in my other EA's, and I cant seem to locate the reason.... x=5; x*Point=0.0001 I have done a MarketInfo for Point followed by a RefreshRates() and still, everything I *Point, comes out bad. Same
micky52
Added topic assigning fixed minimum and maximum in ea (imacd)
Anyone know if it is possible to assign "fixed minimum and fixed maximum" in the EA for indicators that use those? ex: iMACD... The reason, is I would like to compare certain indicators and there scale is of different values. Or is there
micky52
Added topic WEIRD WEIRD Results ???
I wrote a very simple EA using one Indicator, i compare like this.... if (indicator_1>indicator_2) result="buy"; if (indicator_1<indicator_2) result="sell"; return(result); then I get this straight linear down slope with
micky52
Added topic EA vs Indicator question....
EA vs Indicator question.... I have this indicator, (.ex4) and I would like to attache it to my EA, but I dont know if it has External parameters available. All I can detect is Alerts comming out of it from time to time. Is there a way I could find
micky52
Added topic Weird !! can you see whats wrong ?
Hi, Could you tell me why this function only returns "WAIT" and "SELL" but NEVER any "BUY"? //+------------------------------------------------------------------+ string Trending_for(string Trending) { if
micky52
Added topic What am I doing wrong ...........
Hi, im trying to do some optimization, by using a variable to input (close,open,low,high) for testing, but I get the unexpected token message, is this allowed? ======================================================== switch (valuefour) { case 0
micky52
Added topic Why some EA's can be Optimized on lots and SL/TP and some dont work?
Hi, Im writing an EA, and I cant optimize on SL or TP like I can on some others. Anyone know the reason for this? Thanks for your help. Micky
micky52
Added topic WHAT IS WRONG WITH THIS CODE ????????
I'm doing some testing and I cant figure out why I get "unbalanced parentheses" on this. Could someone be kind enough to tell me why I get this error from the compiler? ____________________________________________________________________
micky52
Added topic Please HELP, I need some advice.............
Hi, This is my first try at coding an EA, i'm not a programmer, and I have a lot of problems with compile errors. I'm fiddling around trying to figure out how "functions" work, so I'm trying to write a very basic one and figure out by my
micky52
Added topic EA Tool.....? (Single-Step)
I was wondering if there is such a tool that would permit me to visualize my code while backtesting , and permit me to single-step at the same time through the code. This would be a wonderfull tool to debug, optimize and understand what is going on