fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: Hi friends .... I need help with Trend line pls help.

      https://fxdreema.com/shared/fE9afc42d
      http://prntscr.com/82gk2w

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: need help

      Yes, there is a bug in the code, variable TimeStartMonth is used instead of TimeEndMonth. I just fixed that... for the web version.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with Group Mode during Back test

      I just sent you an email, but let's say it here as well - Group # must be numeric, values like "GGA" does not work

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: input parameters don't show up -RENKO ea

      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"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I want to know how to protect my .exe file than open the cod

      I don't know really, I'm not a specialist in this field

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Count Positive and Negative Bars

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Lotsize Calculation keeps returning 0

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: time filter have problem?

      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?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Count Positive and Negative Bars

      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++;}
      }
      
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Lotsize Calculation keeps returning 0

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Wishlist Item for new version

      Added, you can try it, "Phone notification"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Wishlist Item for new version

      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

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Wishlist Item for new version

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      Problem fixed. I was using ORDER_TIME_* instead of SYMBOL_EXPIRATION_* in two functions

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      Logged in successfully 🙂 What a giant list of symbols and what a boring looking DOLU15 😮

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      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.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Why Fractal don't work with candle ID 1 ?

      Also, most (if not all) indicators that put arrows work on candle ID at least 1

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      Or maybe this is the broker? http://prntscr.com/802wli

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      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.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Pending Order Bug

      And what broker is this? I created a new demo in ActivTrades and I could not find this symbol or a symbol with "Today" 😕

      posted in Bug Reports
      fxDreema
      fxDreema
    • 1
    • 2
    • 208
    • 209
    • 210
    • 211
    • 212
    • 374
    • 375
    • 210 / 375