fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. miro1360
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 257
    • Topics 27
    • Posts 1611
    • Best 192
    • Controversial 5
    • Groups 0

    Posts made by miro1360

    • RE: how to compare objects on two different chart that is i want to get object value on another chart

      I think it is possible using custom code block ... each chart have own ID ... and it is tricky ... not very certain, better use one chart 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: How do I get absolute value of a number?

      lets say you have variable varNumber and this must be converted to absolute value, than
      use custom code block with this code inside:

      varNumber=MathAbs(varNumber);

      posted in Questions & Answers
      M
      miro1360
    • RE: problem with send email

      type something in label fields ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Value of each pip on standard lot in base currency

      0_1501619746495_upload-aabc04dd-2a0f-4d63-bf63-e647292220b6

      posted in Questions & Answers
      M
      miro1360
    • RE: can i sell EA that make with fxdreama??

      I think yes you can 🙂

      posted in General Discussions
      M
      miro1360
    • RE: Fibonacci input value

      it is string type, so maybe as this:
      0_1501458339375_upload-3435925e-0384-4e22-9a33-cd31a9dbf095

      posted in Questions & Answers
      M
      miro1360
    • RE: CANDLES COMPARISON

      @roar
      ichimoku and others with "future forecast/plots" can have negative IDs :simple_smile:

      posted in Questions & Answers
      M
      miro1360
    • RE: HOW CAN DO IF CANDLE CLOSE CROSS LEVEL ....... ??

      https://fxdreema.com/shared/XTzK1QOcc

      posted in Questions & Answers
      M
      miro1360
    • RE: Re: Testing pass stopped due to a critical error in the EA

      maybe it is problem with metatrader itself, because they are doing updates which do a lot of indicators and EAs not working anymore and they dont care, people can request thousands tickets and even with next updates problem is not solved 😄

      posted in Bug Reports
      M
      miro1360
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      I think this can be also possible, now try this yourself, practice give you skills and post here what you found :simple_smile: ... the harder you try, the better skills you get ... when you fail, I look into that problem 😄

      posted in Tutorials by Users
      M
      miro1360
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      and here is version with reduced blocks and next loop, it is bit complicated but working as well 😄

      https://fxdreema.com/shared/WQsSTrfte

      0_1500934347509_upload-b4b90bfe-8966-48de-949b-c9ef1c26e4b8

      posted in Tutorials by Users
      M
      miro1360
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      hope this example helps you:
      https://fxdreema.com/shared/HeInsuWfe
      or import this into your projects to see all variables: 0_1500932938973_testMT5_01.mq5

      it have few custom code blocks but result can be satisfied for you 🙂

      0_1500933023356_upload-ca338a0d-e855-4933-8876-bb5861cb93b7

      if you are using a lot of timeframes, it can be even simplified (I mean blocks count reduced) with next loop in loop ...

      0_1500933179900_upload-13c4829e-8307-4a85-9d51-d024052da9ee

      0_1500933197234_upload-7f91db8d-263e-49c6-8af7-5fbf8a970463

      posted in Tutorials by Users
      M
      miro1360
    • RE: Re: Testing pass stopped due to a critical error in the EA

      at least I found, why it freezes while testing, set in blocks "pips away from open-price" parameters as this picture:
      0_1500930179834_upload-e7efc1e8-f70b-4187-bfd0-54714072db1e

      Reference price: Ask for Buy ...
      Open Price belongs to... ... the parent position

      ... than tester works (or at least for me on simplified model) ....

      this is simplified : : :
      because you know ... you need create simplified model where problem is replicated ... no one from here have motivation to resolve hude projects and looking for what is not ok 😄 😄

      0_1500930324061_upload-815d7cd8-c90d-4986-8b81-f76050d22d37

      posted in Bug Reports
      M
      miro1360
    • RE: Inputs popup. Is that possible?

      yes it is, use edit field block:

      https://fxdreema.com/shared/3lXkwB7Jc

      posted in Questions & Answers
      M
      miro1360
    • RE: highlow pedding order zigzag breakout ea (for gold)

      ok so try something other ... download attached indicator, this indicator plots horizontal lines on the chart, than let EA read these lines:
      0_1500827981744_ZigZag line v1c.mq4

      EA
      https://fxdreema.com/shared/QCGYFT3Dd

      you are able test EA only in visual mode and when you run this EA, dont forget place indicator into chart (because lines must be ploted on the chart - EA reads them) ... note, that you dont need import this indicator into My indicators in fxdreema, because buffers are not used

      you need edit EA based on your criteria 🙂 ...

      posted in Questions & Answers
      M
      miro1360
    • RE: highlow pedding order zigzag breakout ea (for gold)

      I think, when working with zigzag, better if you look for something what is done, like here:
      https://www.forexfactory.com/showthread.php?t=226645
      or google for it: https://www.google.sk/#q=zigzag+breakout+ea

      because working with zigzag is not easy ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Select Object By Name - Several Objects

      when it is few objects (like 10 or so) than I think it is better to check like your example ... but if it is 100 objects, than something in loop:
      https://fxdreema.com/shared/d58Pplmmc
      or maybe simplier solution exist, I dont know 😄 ... but object name in loop (prefix) must differ from "fx" because "fx" (as fxd) is used by default fxdreema objects ...

      posted in Questions & Answers
      M
      miro1360
    • RE: trendlines

      yes, with horizontal it is similiar, horizontal is only price (without time) - so basically it is simplier 🙂

      posted in Questions & Answers
      M
      miro1360
    • RE: Give my variables eternal life

      this is problem with metatrader, because variables are deleted when EA is closed ... so idea may be store these variables as "global" or terminal variables, this:
      https://docs.mql4.com/globals

      0_1500477907045_upload-7bb2717a-e336-4799-9bee-116660e46a56

      as you can read, they are stored for one month and than automatically deleted, and also they are shared with tester and all EAs in terminal ... so be careful 😄

      next option can be save variables into file, and than read this file (but it needs specific custom code) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Tutorial 06 - My Indicators in fxDreema

      this with next trade is complicated, because here can be many ways for answer "when" open this next trade
      ..... one from ways ... if first trade is opened, this signal still valid ... so you can wait until this signal disappear and than when is here new signal appear, open next trade .... for this search here in forum for "switch" or "flags" .. I replied this question few times ...

      posted in Tutorials by Users
      M
      miro1360
    • 1
    • 2
    • 40
    • 41
    • 42
    • 43
    • 44
    • 80
    • 81
    • 42 / 81