try it few times (also look somewhere into help or tutorials how to import custom indicator and work with it) and when you fail in that, type here your experience 
Posts made by miro1360
-
RE: Regression channel valuesposted in Questions & Answers
-
RE: Regression channel valuesposted in Questions & Answers
my solution is simple, use indicator with buffers ... import it into "My Indicators" and buffers are representing values, you can cross them, everything you need ... sometimes in past I looked into these regression channels and I found this indicator as one of best ...
0_1506627218677_uLinRegrBuf.mq4
here is little modification for EA (bars to count make it faster in EA, maybe ...)
0_1506627190783_uLinRegrBuf_miro1360.mq4 -
RE: Draw something in a subwindow.posted in Questions & Answers
open subwindow with another indicator (like RSI) and change color of this indicator to invisible (no color) ..

in parameters settings of this indicator change Fixed minimum and maximum to "price" values which are close (as range) from normal window ...

and after this attach your EA into chart ...
-
RE: iCustom functionposted in Questions & Answers
yes because you are mixed logically incorrect things ... in your case dont use crossing but only > or < ... because "crossing" you did in conditions before (as splitted condition blocks) ...

and not sure if you need for sell Blue buffer or Red one
... (I dont have this indicator so I cant see it) ... -
RE: iCustom functionposted in Questions & Answers
this is when Candle Close crosses Envelopes channel:
https://fxdreema.com/shared/zD4AGaPQb
... candle Close can be represented by Moving average with period 1 based on price Close calculations -
RE: Dropdown to select inputs?posted in Questions & Answers
hi coverman, go through few my last replies, you find here exactly how to do this ... even with timeframes
-
RE: Problem with per bar blockposted in Bug Reports
this is probably caused by your broker execution issue ... if EA fails open trade at first time (broker denied it) than it try second time ... and broker decided open first trade and second too
not sure if this is your case, but it happened to me with bad brokers ...
you can avoid this problem with some control, where you check opened trades and if there are 2 (maybe in the same time +-10 seconds) than one trade will be closed ... -
RE: ***Important problem :strategy tester***posted in Questions & Answers
standard reply from MQL5
IndicatorRelease() is not working in tester (at least in case as I tested it) ... -
RE: Multiple Time Framesposted in Questions & Answers
yes you can do this, but most signals were based on highest TF because it holds longest time ...
-
RE: ***Important problem :strategy tester***posted in Questions & Answers
I thought it can working with these handle operations but it is not working - I tested it now (I tested it in correct way with CopyBuffer function and arrays), but without success ...
so you need wait or communicate with MQL company if they add HideTestIndicators in MT5but you can do this little trick in on Init:

it makes visual mode in MT5 tester functionless and user can test EA only without visual mode option ...
-
RE: ***Important problem :strategy tester***posted in Questions & Answers
to get IndicatorRelease working you need first create indicator state with handle ...
this before variables:
int MA_handle=INVALID_HANDLE;this in on Init:
MA_handle=iMA(Symbol(),0,MA_Period,MA_shift,MA_smooth,PRICE_CLOSE);and finally this in on Deinit:
IndicatorRelease(MA_handle);and all this you need create for each indicator

and maybe it is not working at all

-
RE: ***Important problem :strategy tester***posted in Questions & Answers
in MT5 it is very different working with indicators and they dont support simple function for this, only IndicatorRelease function but there must be done tons of changes in code manually
-
RE: Self terminating EA - Error "array out of range"posted in Questions & Answers
is some error in log? or can you post shared example where it happened?
-
RE: UPDATE time, write here if you have problems!posted in Questions & Answers
it is visible in set file:

-
RE: ***Important problem :strategy tester***posted in Questions & Answers
it have probably effect on whole metatrader (until restart? )
for EA where you need see indicators, give the same line but with "false" instead of "true":
HideTestIndicators(false);but I am not sure with this, I never used it so you need take experiments

-
RE: ***Important problem :strategy tester***posted in Questions & Answers
into on Init section place this:

-
RE: THE COLOR SIGN HAS FIXED?posted in Questions & Answers
when it repaints, it is not very good for EA because you dont know when signal is confirmed, it can be 1 candle, it can be 4 candle

