Again, I don't understand your english, I don't know why
I don't know what you mean by "measured leg"
Posts made by fxDreema
-
RE: Fibonacciposted in Questions & Answers
-
RE: Multiple time frame objectsposted in Questions & Answers
Well, objects are global, I don't think that the timeframe matters for them. Maybe objects can be filtered by timeframe as well, I never tried that. You want that, to access objects on certain timeframe?
-
RE: Can some one plz help with my EAposted in Questions & Answers
You can most probably use it, depends on what's inside its buffers
-
RE: Positions will not be openedposted in Questions & Answers
It looks that when I download .mq5 file and compile it with MetaEditor (build 1940), it works every time. Only when I download it from the server it fails sometimes. So I uploaded build 1940 on the server, but for some reason it still doesn't work. The compiled files should be the same, but who knows. On the server I am using the command-line version of the compiler, maybe there are some differences.
-
RE: Positions will not be openedposted in Questions & Answers
It also happened to me - sometimes there are trades, sometimes not. And after I started investigating why, I started to have trades every single time. This is one of those weird things that MT5 do
-
RE: candle sculpting open to close is it possible?posted in Questions & Answers
What does that mean?
-
RE: Reset trader counterposted in Questions & Answers
Pretty much the same way you set the trades count value to that variable "tradesCount", but choose Value -> Numeric instead of Trade statistics -> Trades count
-
RE: Stop losable positions at -1% of Equityposted in Questions & Answers
By the way, Equity and Balance are global, they are the result of the work of all trades, from all EAs (in case of multiple) + the manual trades. If you want to check the profit/loss made from the current EA, there is a block to check the current unrealized profit.
Also if you need to use Equity or Balance in some input field somewhere, the native MQL4 functions to get those values are AccountEquity() and AccountProfit().
-
RE: I Use FXdreema Mq5 And Create EA But found big problem?posted in Questions & Answers
Check the inputs of the indicator in case you missed some of them. Also the data types should be the same as those used in in indicator. This error can appear when something is wrong with the inputs.
-
RE: Fractal S/L T/P helpposted in Questions & Answers
I see something wrong here:

On the left side the kind of value is price level, for example 1.23456. On the right side you have pips value, for example 20. You don't want that on the right side, maybe you want Candle Close.
-
RE: How Create one order ( buy Or Sell Or Both ) in every Candle open Through Any Second?posted in Questions & Answers
I don't really understand the question

-
RE: Stop losable positions at -1% of Equityposted in Questions & Answers
Try something like this:

Or something like this with using Profit (Equity - Balance)
-
RE: Positions will not be openedposted in Questions & Answers
I got something in the first example. Do you have errors?

-
RE: MT5 Strategy Tester extract resultsposted in Questions & Answers
I don't use excel very much, I don't know
But what you are asking for sounds like somebody should have made some kind of EA or indicator for this, try Google. -
RE: Need help to create EA based on condition BUY-SELL-BUY-SELL in oppositeposted in Questions & Answers
Can you even detect signals from the indicator?
-
RE: Handling Buy and Sell errors?posted in Questions & Answers
it's somewhere in the code. I don't remember all the cases where the error outputs are called, but in fatal error - when it is not possible to try again. If it is possible to try again, I think that 10 attempts are made. Find that function CheckForTradingError() in the code, hopefully you will understand something from it.
-
RE: fibo constantsposted in Questions & Answers
This input is a string value. When you write bl1, it remains bl1 as a string (text). I don't believe that it will work. You can try this:
Try this: https://fxdreema.com/shared/WKlVMBvvc
What I'm doing here is that I'm constructing the string. Those "" + and + "" in the beginning and in the end are what enables the input field to accept MQL4 code, so everything in between them is MQL4 code. -
RE: horizontal or trendline help pleaseposted in Questions & Answers
Horizontal lines are made out of only 1 price level and they are visible from left to right, the whole chart. Trend lines are made out of 2 price levels and 2 times. You want a trend line where both points have the same price levels, but different times.