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: Break even for a group of trades

      But before all, there is a TP at 100 pips.

      I think there might be a problem with saving block's properties. I think I noticed that sometimes if I update a block, it doesn't really update, or something like this. This will explain why Group numbers are different everywhere. Can you confirm this?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Break even for a group of trades

      I noticed this:
      http://prntscr.com/b3d05f
      http://img.prntscr.com/img?url=http://i.imgur.com/AaVvqVw.png

      And the same thing in other blocks. You have set Group to 1 and 2 in some blocks, but in other it's the default 0 (empty value means 0). If you decide to work with groups, it is very important to put that number in all trading blocks - from No trade to Buy/Sell now. Otherwise weird things happen. In my case, I tried this EA and it started to open trade after trade. What BE and what TS can we do in this case... But why using Group, you can separate Buys from Sells by their type only.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: The strategy from scratch questions and problems

      Am I wrong, or the Bucket blocks are not connected at all? For a block to even get into the final file (.mq4 ot .ex4), it needs to be connected to at least one other block. Let's say that now blocks 5 and 6 does not exists

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Break even for a group of trades

      What I don't like in the screenshot is the size of Step. I said this before, but Step is normally lower than Stop. It can be bigger of course, but the you don't have normal Trailing anymore.

      I also said that Trailing Stop block can be used to make it work as Break Even. I think the configuration was something like this - Step is some giant value that never will be reached, Start is the profit that must be reached, Stop is equal to Start (or lower). Like this - https://fxdreema.com/shared/gaJnbwWY
      It looks a little bit like this in the screenshot and because of that I giess that you have some SL movements that look like break even, but not real trailing stop frequent movements. Again, this is because of the Step size.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Heiken Ashi offline

      https://fxdreema.com/examples/#Loop-(For-each...)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Break even for a group of trades

      Aaa, you are working with groups. Or not? You know... I will suggest to try one block at a time and play with it. Even I don't know what to expect from these 3 blocks when they work together

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Heiken Ashi offline

      Right now I am rewriting everything from PHP to NodeJS. I have no idea if this will work well, but we will see. I think it's easier to get some NodeJS page and pack it into one .exe file with embedded Chrome browser. But in the same time I just don't like the offline version. I know that some people like it, but it only creates friction in me 🙂 I'm only one and even the web version alone is already big enough for me.

      By the way I can see that you have pink "modify stops" blocks in your project. I will suggest to use "For each..." with them.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Break even for a group of trades

      I think you are missing something important here - each of these blocks will run on every tick. You probably think that block 21 must finish it's work before going to block 22, but this is not the case. Blocks 21, 22 and 23 always pass, even if there is no trade at all.

      Trailing Stop is the distance of the SL relative to the current price.
      Trailing Step is how often to move SL. This value is normally much lower than Trailing Stop.
      Trailing Start is the profit that the trade must make before doing something with it's SL. This is distance relative to the Open Price of the trade. If the price is above this level, then SL can move, otherwise not.

      Again, no block waits for other block to do it's job. Especially these blocks, they pass every time even if they did nothing at all. Inside each of them there is a loop that iterates through all trades and moves (or not) their SL. There blocks does not communicate. Each of them is doing it's job and does not care what is connected after

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: My robot take a Lot of Positions Why ???

      There is no limit in Buy/Sell blocks. When you run such block, it will try to create a new order. I will eventually add something like this in them, but now you can just do something like this:

      https://fxdreema.com/demo/mt4-buy-now-i ... ade-exists
      https://fxdreema.com/demo/mt4-sell-each-bar

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: SUGGESTION FEATURE FOR FXDREEMA UPGRADE

      I think you are talking about something like speech bubble or just free notes that can be placed anywhere. I was thinking about this for some time as well. By the way you can always use Areas to vosually put multiple block into one area. Areas also have title and description.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Store Current Date & Time into a variable

      This works for me
      https://fxdreema.com/shared/GouiFU3P
      https://fxdreema.com/shared/h7uTDsMlc

      My variable has "datetime" type, which is some form of integer. On the comment it appears as integer value because I put it into Numeric - Value, but you can see that there is a value. For me it works

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: if close last trade buy next trade sell

      There is a block "Check type (last closed)". In the desktop version I think it was named "Check last closed type".But if you have 0 closed trades, which is the case in the backtester, you probably need to create one initial trade

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Price cross indicator

      Check what I posted in my previous post.

      Also, there is a block "Indicator moves within limits" and this block is something like Condition that iterates through multiple candles

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: EA => Stochastic of RSI

      Indicator over indicator is not possible in fxDreema, sorry. I know that there are function like iRSIOnArray() and I tried once to find out how they can be used, but without success. I don't remember the exact reason, but something was missing for me and I decided that this is not possible

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Optional condition filter

      Set a Constand with "bool" datatype. Set it's value to true or false. Then put that Constant in Condition block (Value -> Numeric will work) and compare it with Value -> Numeric (values 1 or 0) or Value -> Boolean.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Break even for a group of trades

      "If trade" will probably speed up the backtest when there are no trades at all, nothining more. Each of the following blocks internally iterates through all available trades at the moment, which means that if there are no trades, nothing will happen (and because of that "If trade" is not necesarry).

      When many of these blocks are used, who knows what is going to happen. I don't understand these values - 2500 and 5000 - this is probably not for something like EURUSD.

      Otherwise here is how the trailing stop works - viewtopic.php?f=2&t=3330&p=10795#p10785

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Teach me How to Make Posision with this Indicators

      Long story...
      https://fxdreema.com/help/-/you%20shoul ... indicators
      https://fxdreema.com/help/-/working%20w ... indicators

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Indicator Visible - (Otherwise)

      I think I found problem in "Indicator is Invisible" and I fixed it. Now it should work like the yellow output of "Indicator is visible". But what can I say for this indicator... what you see is Not what you get. It repaints so much. Honestly, I don't understand why and how people are working with Zig-Zag.

      You can use "Trace" to see what kind of values are returned. When I do this with Zig-Zag type of indicators, I always end up confused and I don't know what is going on and why

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Check Type (Last Loser)

      Well, note that when you backtest, you start with 0 trades in the history. This is sometimes the reason to not be able to open the first trade. I'm not sure that this is the case here, but probably

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Price cross indicator

      Maybe by using some Variable like this - https://fxdreema.com/shared/hz8U6c5Ac
      This is also something that can be used - https://fxdreema.com/demo/mt4-wait-crossovers

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 148
    • 149
    • 150
    • 151
    • 152
    • 374
    • 375
    • 150 / 375