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: Help with trailing stop[FIXED], another question

      "n" means number of passes, number of times you run this block. Better try "Once per minutes" or "Once per bar", something like this

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to create pop-up alert/message when something happens

      Write something here: http://prntscr.com/6ypiia

      Also, check this example: https://fxdreema.com/demo/mt4-wrong-closing-rule

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How do I concatinate a string to a string variable for comme

      It's with double-double quotes "" + and + "". Why? Because 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: More comlex manual and support stuff for newcomers

      Descriptions like this actually existed, but I disabled them because of some bugs... and because the information was not full. So I'm trying to give better names for the parameters.

      I also abandoned the current version of fxDreema, because I decided to fully rewrite it. This was 1 year ago 🙂 Why am I so slow... because meanwhile I also discover and learn different technologies and there is always something that can be done better. Also because the source code of fxDreema is pretty complex. I just wanted to put everything in order, so then I can easily put new updates.

      I don't know why, for some reason I have difficulties to write official descriptions and explanations 🙂 Maybe I need someone else to help me with this project, but I don't have friends that understand programming.

      With 1380 active members my head will explode, so I'm not sure that I really want this 🙂

      There are already shortcuts for MetaTrader itself, I don't think that these can be overwritten. But for single keys it should work.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: How do I concatinate a string to a string variable for comme

      This is ugly, but... https://fxdreema.com/shared/1RTr8YOwe The trick here is to use "" + in the beginning and + "" at the end.
      This also can happen with "Custom MQL4 code"

      The problem with strings is that in the code they must be inside " ", but in the generator I decided to add " and " later, when the project is generated. Otherwise people will always ask me why do they have errors when they write something like Hello, World without " ".

      Maybe I can just extend the Print block with few strings. I also want to glue some strings together in this block.

      If you only want to check some values while the EA is tested, I can suggest this approach (I'm using this very often now and I like it) - to pause the backtest when you want to see values: https://fxdreema.com/shared/ebrPtDWtd

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: empty_value in custom indicator

      "Condition" will not work this way anymore. I decided to make it in a way to not pass at all if the value of one of it's two sides equals to EMPTY_VALUE. But you can try this block called "Indicator is invisible"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: More comlex manual and support stuff for newcomers

      So.... what question do you have that is not located here: https://fxdreema.com/examples or here: https://fxdreema.com/documentation/ 🙂

      Active subscribers at the moment: 138. No marketing activities 🙂 I have plans to make some videos and I even updated the documentation a little bit recently 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Help with trailing stop[FIXED], another question

      Where can you see Trailing take profit? There is an option to trail Take-Profit in the "Trailing stop (each trade)" block, but there is no block like "Trailing take profit". So, this option is the reverse of trailing Stop-Loss. Yes, the block's name contain the word "stop", but you can imagine that it means either SL or TP.

      To set or not initial stops... Depends on "Start" option in "Trailing stop (each trade)". By default it does not matter if the trade has initial stops or not.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local ver. export issue with directories

      Don't use the /MQL4 part in paths

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: please help me with this ea

      https://fxdreema.com/shared/MGsrDDuN

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: indicator current value

      Market properties

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: indicator current value

      Candles are built over the Bid price. Look in this block called "Condition", you can find Ask, Bid, Candle Close,Open,High,Low... many things

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: indicator current value

      Candlestick buy and sell values? 😮

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: indicator current value

      What, you can't pick buffers? Where?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Compilation erros

      Ooops, my fault, sorry

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: iCustom indicator help, no open order..

      dscoles, only if you have those constants defined in fxDreema, otherwise you will see error messages saying that they does not exists. Yes, you can do it like this: HULL_PERIOD,HULL_METHOD,HULL_PRICE. Whatever you put in this input field, it goes in the output code directly. By the way, every input field accepts 100% MQL4 code.

      switch3880, I don't really understand your questions 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Questions on Drawing on Chart

      😕 😕 😕 😆

      https://fxdreema.com/demo/mt4-objects-4 ... ate-update

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Understanding Chart (work) Flow

      __
      I must admit I originally thought that once entering a 'chain', the EA would stop if it failed a Condition, then jump to the next 'chain' according the Number. This felt logical, but I soon realised it did not work this way.
      [/quote:78ewjnqs]
      But it works that way. Numbers normally does not matter. Only when you have parallel connections, when you have 2 or more paths ahead, only then the first path to be taken it the one with lower number.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Compilation errors?

      Ooops...

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Questions on Drawing on Chart

      Here I created an example of the 4 ways to create/update objects. To delete them there is a block Delete objects and there you can filter them by name. The alternative to this is For each Object -> delete

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 224
    • 225
    • 226
    • 227
    • 228
    • 374
    • 375
    • 226 / 375