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: Pip value

      I programmed it in such a way, so that the EAs doesn't care about the settings of the broker. Instead, it can use its own settings for how much is 1 pip for a given symbol. Look at the settings here:
      0_1525119628912_57fda709-8a2e-4162-952b-48fc37af0422-image.png

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to open next order after 5 bars if there is already open order and conditions are met, so there won't be a lot of open trades???

      Well, if the reason is to not open lot of trades, the easiest way is to have "Once per bar" somewhere above the Buy/Sell block. You can set different timeframe in this block.

      Another way is to have "For each Trade" (or Closed Trade, it depends) with "not more than..." set to 1, so only the last trade is loaded, and then "check age" and then the Buy/Sell block.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: cross over in stochastic

      In the last picture are you sure you want blocks 5, 6 and 7 to be below the Buy now block? I hope you know that Buy now doesn't run on every tick, so 5 also does't.

      Anyway, to check whether some block passes or not, simply connect say Draw Arrow after that block and look at the chart for arrows.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Downloading EA

      And what was the reason?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Flag

      I think that the EA you made is working. I might also want to try this block "Indicator moves within limits". Or maybe this concept: https://fxdreema.com/demo/mt4-wait-crossovers

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Ontrade" Price order modified block?

      I guess that I should make a block like "Order price modified", but I think that the existing "Order stops modified" also detects that event... because when you are moving the price, you are normally moving the whole order.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Compilation error ..

      The code in question (where the extra , appears) is from 0_1525114137436_cf527b4b-5793-4722-b0d6-40fe1618072d-image.png
      I will check it, but I think it's better to add the indicator in the system and work with it via "Indicators (My Indicators)"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Help me with this custom indicator

      I can get the values of this histogram, but the trend lines and the arrows are printed as objects. You can see this in the source code, there are some ObjectCreate functions in there. So you can't work with the buffers for these objects.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trades don't opened precisely (Indicator crosses and Indicator moves within limits)

      There is no "after", even the "Indicator moves within limits" block looks at the past and uses the history candles to check these values. So all blocks are normally working in the present moment with history data. And it looks that you wrote that you want that.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "..Problem collecting data.."

      I found where the problem originates and I think I fixed it, but I'm a little bit afraid to upload the new changes that I have (there are other changes as well, not only this), because the last time I broke few people's projects. So after that I decided to first work on the website locally (my local working copy of the website that I use often) and when everything works fine for few days, to upload.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: User Interface - Working Status Title

      I will fix this. The lower option is for that Status thing, yes 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Custom Indicator - Value Inputs Shifted

      I downloaded the .mq4 file from the first link, I added it to "My Indicators" and I got 4 input parameters, not only 3

      0_1524678986915_b5c9a4ce-e762-443f-add5-9ba94e7ee10c-image.png

      Then I checked the indicator with Trace and I think it works well. It's not the fastest indicator, but the pink line from Trace matches the indicator line exactly:

      0_1524679058784_50dbf741-948f-4ff5-8e10-190a00bd02eb-image.png

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Problem with saving the robot

      Error messages? Another browser works? What exactly means "does not save"?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: news EA

      I don't know how the indicators works, but I don't care, because I know how indicators are used by the EA in general. The normal way is to read the data from their output buffers. If there is no data there and the indicator only draws objects on the chart, then we can only work with these objects. So it depends on how the indicator works 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Is this ok?

      @drayzen said in Is this ok?:

      I get a lot of errors in the Journal which I have no idea what they're meaning, and for some reason it's got a Variable in MT4 inp10_VolumePercent that I have no idea where it's come from...?

      I only have an idea what these errors mean. They are not because of the EA, but because of the ticks data. You probably know that MT4 has data for each timeframe - M1, M5, M15 and so on... When you are testing on H1 let's say, data from lower timeframes is used. But sometimes we have periods of missing data and I think the problem is because of this. It could be something else, I don't know how exactly the backtest works, but the problem is for sure because of the quality of the ticks data.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: on and off

      When the signal is no longer true? But what kind of signal is this?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Add comment on partially close order (MT5)

      If you are talking about the comment, the attribute that every order has, I'm afraid that you can't change it. Only in OrderSend() we can set that "comment" parameter (https://docs.mql4.com/trading/ordersend). For partial close OrderClose() is used, but as you can see, there is no "comment" parameter there - https://docs.mql4.com/trading/orderclose

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: trades counter by time

      I don't know. I never used copiers and I don't know how they work 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "..Problem collecting data.."

      @eklonsousa, you had only 1 custom indicator in "My Indicators". It looks that this created the problem somehow. I added another custom indicator in your list and the problem is no more. I will check why this happens tomorrow. Everyone else - keep at least 2 custom indicators in the list for now 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Thank you fxDreema

      Thank you 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 57
    • 58
    • 59
    • 60
    • 61
    • 374
    • 375
    • 59 / 375