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: Server Error message compilating on Desktop version

      So, when .mq4 file is compiled and there are error, a log file is created. Fxdreema tries to compile it, then looks for such file and if it exists it tries to extract information from it. This particular error appears when no information can be extracted, it's just a general message that says that there is a problem. But the log file is deleted immediately, so it will not be easy to see what's inside. But if you export .mq4 file and try to compile it in MetaEditor, it will probably show the problem.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Server Error message compilating on Desktop version

      Files are stored in the Data folder, next to fxdreema.exe. It's strange that you both have the same error in one day. I will try to find from where this error comes from

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Multiple warnings when compiling

      This is almost impossible in my opinion. I actually can translate some parts of the website, but even if I can technically translate everything, Chinese is too far away from me and I don't have communication with any Chinese person 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Switching between EAs and timeframes

      I decided to test this block and I think it works. Here is my test EA: https://fxdreema.com/shared/AN7K8OQhd
      I selected 3 different timeframes - M1, M15 and H4, and for each of them I print some information. This Delay block is to pause the EA for a while so I can see what is printer. But it looks that I need to move the chart left-right to refresh the Comment data. I see different numbers for each timeframe.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Buy or sell according to bullish or bearish bar

      In many blocks you have this option, set it to 1:

      0_1551377466731_4ee2a064-618a-4fe8-a385-20b0a8b30518-image.png

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How I do That in MACD With FXDreema ??

      I think this works. But you got many trades because of the blocks to close them. Make sure that it's not possible to close any trade immediately after it is created. The conditions above Buy/Sell blocks should be different that those above Close blocks. And by conditions I mean everything - Condition blocks, other blocks with certain settings.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I'm having a compilation errors

      I will see if I can make fix to this problem now

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Multiple warnings when compiling

      This is from "Trade closed" block. I recently fixed something in this block for MQL5. I think that everything works anyway, but just in case I will fix these warnings.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: How put Profit amount in Variable?

      Oo, I think the link doesn't work correctly, it should contain those ... at the end. But it shows Bucket blocks The idea is that one "Bucket..." block finds multiple trades and loads them, creates a list of their tickets. Later, in Condition you can collect some data using these trades - their count, total (min, max, average) profit and other values... and use these values for something. Otherwise in other blocks you can check the profit, but you can't get the value of the actual profit out of the block.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Member Still Not Upgraded ( Payment By BTC )

      Thank you 🙂 Meanwhile I changed the address, so I can see incoming payments on the phone. Let's see if this works better.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Reverse order with martingale

      Pending orders are Stop or Limit, at which side of the price?

      When you say "if you take SL, open opposite order", do you still mean pending order? And again, what type of pending order?

      "if this also takes SL I wait for another order." - are you sure about that? After the first SL you open opposite... something, and after the second SL you do nothing? Or open opposite again.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how i do that by fxdreema ?

      I don't know really. You know that you can check relatively simple values, but I feel that what you want to do here requires a little bit more analysis of the values around the lows.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Backtesting

      Sometimes it's normal for the backtest (visual mode) to stop for few seconds, this happened to me many times for no apparent reason. But if it stops forever, there is some problem. Which one of your projects does that?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How put Profit amount in Variable?

      Take a look at these blocks https://fxdreema.com/examples#Bucket-of...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to buy/sell/tp/sl at a main price level like 1.13, 1.14 ... etc?

      Is it needed. Because with the detector block you detect those numbers and then a trade is created. But this trade could be opened at a little bit different price, not at exactly the round number. If the trade is off with let's say 2 pips and you set SL and TP at round numbers, one of them will be 2 pips bigger than the other.

      Otherwise it can be calculated. As you can see, what we do with that formula is to remove the last parts of a number. if we have 1.2345 we can remove the last 5, last 45, last 345... But it also depends, because what if we have 1.2678 - should we use MathFloor or MathCeil? Should the rounded number be 1.26 or 1.27?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Switching between EAs and timeframes

      You want to actually cause the chart to switch to another timeframe, or just use different timeframes in the EA while the chart stays the same?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how to build a layer on ea martingale

      Here is some example: https://fxdreema.com/shared/pofyIS1Md

      I use "add to volume" so each trade is like a child of the first one. The lot size is calculated as 180% from the previous, but note that in "pips away..." I'm waiting for negative move (which is upwards for sells) before making a new trade, so what happens here is that I'm adding more and more lots on loss. This is not exactly Martingale, it is even more dangerous, because the trades on loss are never closed. And I don't know when those trades should be closed, but in the Sell block I used TP of 50 pips. The same TP is used from the child trades, so they would close all at the same time.

      I could use less blocks if I use one variable, but I think this way can be understood better. Also, if you change the Sell block with Buy block, it will work the same.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Ichimoku Cross strategy not working!

      Try with 1 cross only, and for the other conditions use anything else but not x> or x< (and not == of course)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How i Can Edit This Option On This Indicator ?

      I'm not a custom indicators guru, but it seems that this option appears automatically because of the set of arguments used in OnCalculate()

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 21
    • 22
    • 23
    • 24
    • 25
    • 374
    • 375
    • 23 / 375