Posts made by fxDreema
-
RE: need helpposted in Questions & Answers
Yes, there is a bug in the code, variable TimeStartMonth is used instead of TimeEndMonth. I just fixed that... for the web version.
-
RE: Problem with Group Mode during Back testposted in Bug Reports
I just sent you an email, but let's say it here as well - Group # must be numeric, values like "GGA" does not work
-
RE: input parameters don't show up -RENKO eaposted in Questions & Answers
MagicStart exists in all EAs. To use another inputs, use "Constants (Inputs)"http://prntscr.com/81ooy1
I don't understand the problem with Renko, but there are many Renko-creating-EAs-and-indicators out there, so I can't tell exactly what is wrong. But I feel that you can have less connections and work without this "AND"
-
RE: I want to know how to protect my .exe file than open the codposted in Questions & Answers
I don't know really, I'm not a specialist in this field
-
RE: Count Positive and Negative Barsposted in Questions & Answers
I can't give you beautiful solution for this. "positive" and "negative" can be global Variables and then their "int" will not be needed, but you need to remember that this block also needs those global variables to be defined with their correct names. Again, the best is really to have some indicator, you can search for something or ask someone to make one. This is very easy calculation and I can even say that you can do it on your own. Plus, the indicator does not recalulate things every time and can show something meaningful.
-
RE: Lotsize Calculation keeps returning 0posted in Questions & Answers
Again, the option that you have on the screeshot above does the calculations like this:
You have 10,000, then with the setting of 10(%) the lot size will be exactly 0.01, not 0.03, not 2. 10% of 10,000 is 1000, which turned into lots equals to 0.01, at least on EURUSD and similar There is no margin stuff here. Yes, if the calculated value is too low, the lowest possible is taken, and if it's too high, the highest possible is taken.
-
RE: time filter have problem?posted in Bug Reports
Is there something special about the times 12:01 and 12:00 or I can try it with any time... like the time that is in the next 3 minutes for example?
-
RE: Count Positive and Negative Barsposted in Questions & Answers
Always the best method to do calculations over tha past candles is by using custom indicators, this is what they are supposed to do - claculations. Also, normally indicators does not recalculate things that were already calculated and this is natural to them, but not natural for expert advisors and scripts.
In the EA this can be done with a regular loop - you start from the first candle, iterate through the old candles and increase some variables within the loop. The easiest will be to code it actually, something like that:
int positive = 0; int negative = 0; for (int i=1; i<=25; i++) { if (Close* > Open*) {positive++;} else {negative++;} } -
RE: Lotsize Calculation keeps returning 0posted in Questions & Answers
This option means that if you have balance of 1000, then 100% of the lot size will be 0.01 lots when 1 lot = 100000 (0.01 lot = 1000). This was my idea of money management back then in the early days when I wanted to grow the lot size as the profit grows.
If you have some MM model that I am missing, give me link where someone is talking about it, where this MM is defined and maybe has name. Because everyone can create some formula by himself, but look what happens when there is no name to describe it - options that people don't understand or misunderstand.
-
RE: Wishlist Item for new versionposted in Questions & Answers
Added, you can try it, "Phone notification"
-
RE: Wishlist Item for new versionposted in Questions & Answers
I tested messages on this LG phone and it appeared the same as in the Alert. Of course, after the message is opened. So I'm gonna make it the same way as in "Alert" without the alert itself.
Yes, it is "double" value
-
RE: Wishlist Item for new versionposted in Questions & Answers
There is a block "Delete objects" and it can delete objects based on their name. All special objects created by fxDreema have names starting with fxd_ and this can be used as a prefix to find them and delete them at any time. In your case - under "on Deinit"
It looks that I will bother my sister for her Android

This sqare has fixed width and this is what I don't like. Comments can be short or long, on x and on y... this sqare appears "disconnected" from the comment itself. With "Draw shape" we can draw rectangles with fixed position, but they are transparent. At least they are not sqare. I think It's better to add color settings for fonts, because now they are yellow and white, which does not look very well with white background.
-
RE: Pending Order Bugposted in Bug Reports
Problem fixed. I was using ORDER_TIME_* instead of SYMBOL_EXPIRATION_* in two functions
-
RE: Pending Order Bugposted in Bug Reports
Logged in successfully
What a giant list of symbols and what a boring looking DOLU15 
-
RE: Pending Order Bugposted in Bug Reports
No, when I try to create a demo account nothing happens, it does not give me login and password. I'm not sure that if you give me login details it will help. I remember once I tried to help to another guy from Brazil, I think with the same broker and at the end he gave me access to some VPS where he is running MetaTrader. But if you can create demo account, give me the login details and at least I can try.
-
RE: Why Fractal don't work with candle ID 1 ?posted in Questions & Answers
Also, most (if not all) indicators that put arrows work on candle ID at least 1
-
RE: Pending Order Bugposted in Bug Reports
I can't fnd such symbol names. Also when I search for xpi in MT5, nothing is found.But if you have address that I can use, I will try it.
-
RE: Pending Order Bugposted in Bug Reports
And what broker is this? I created a new demo in ActivTrades and I could not find this symbol or a symbol with "Today"
