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 do I keep this condition in a variable?

      the inspiration which recently celebrated its third birthday 😄
      https://fxdreema.com/forum/topic/4222/example-price-pullback-ea

      posted in Questions & Answers
      M
      miro1360
    • RE: Combine multiple profit values within the same bar to form an added numerical value in the chart.

      0_1575744883198_fec6933e-b287-4be2-8f84-2bf288351c6b-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Looping "n" number of Conditions

      the problem is in block 4, buffer is wrong selected (it has to be 4 or 5,6)
      each custom indicator has to be tested before use:

      otherwise you spend weeks looking for mistakes which could be covered in a few minutes, just with a little effort to visually test everything in the smallest possible parts:
      https://fxdreema.com/shared/hH5c31qMb

      ... some indicators repaint the values, you can identify this issue with the same visual test (or using the Trace block)

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      the possibilities are endless if the effort is endless 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      In my first reply is the shared link. Generage mql4 from that and then import the generated mql4 file into your projects.

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      @tom-5
      you are exactly right, I totally forgot about this option in the Martket properties, you can use it this way .... anyway if you come to a stage where you need more detailed logic then you already know how

      @seb-0
      it can execute 1000 of simple blocks in one tick as well as one very complicated custom block may need a few ticks to execute 😄 ... the above are very simple blocks (light blocks, easy to calculate)

      a complicated block is something where EA has to use many array calculations (e.g. complicated work with zigzag) .... or a bad or overlooped logic 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      here the execution is as:
      8-100-10
      1
      21-22 or 21-23
      11
      2
      12-13-14

      0_1574965948862_2194298f-c3cd-4a59-82c4-997c621f3c3e-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      all blocks are executed at the tick X, but the order of path execution depends on the ID (lowest first) ... did you get it?

      the example above goes as:
      8-9-10
      11
      12-13-14
      16
      20
      21-22 or 21-23
      ... everything in one tick (if an execution time is less as the time between 2 ticks)

      posted in Questions & Answers
      M
      miro1360
    • RE: Can someone help me with SL calculated form wick?

      https://fxdreema.com/shared/MSVGgE0Gc

      0_1574959218890_9dfc3646-f7b2-4228-8d9b-61ec0ebe2fce-image.png

      0_1574959720702_30eecfc2-8c40-4394-a9fd-8e6a59be3723-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: How can I round a number?

      You can use the trick with "int" conversion, but then put the variable in the Text(code input) option.
      Text (code input) option must be selected.
      0_1574909436625_28c9524b-9a48-475c-8f68-1482363552f8-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Loop misfunction

      0_1574908213270_7bd954d5-5f42-46a4-a78c-08220f1cbfbd-image.png

      The function is very very simple. It converts double value to Text (string) format with defined decimals (avgWick is the value, nr 1 is thought to be one tenth). Question is why I used it here in the Draw block? Because it is one of ways how to get rid of weird decimals printed on the chart. Text (code input) selection must be selected, otherwise it doesn't work.

      You can use another functions too (it didn't work here because of the wrong selection, Text (code input) instead of Numeric)
      https://fxdreema.com/forum/topic/8067/trading-tool-with-weird-info-box/5

      posted in Questions & Answers
      M
      miro1360
    • RE: Loop misfunction

      note, the Average Wick (the Red value) is printed as soon as the value is triggered (the closing values may still change, but the Red will be printed and not changed accordingly)
      you may rewrite the logic to do the change ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Loop misfunction

      Since you work with Candle ID 0 (the actual one), you won't be able to do a visual test just that easily, because the triger will be different from the closed value. Anyway, here is one (of many possible) testing purposes which can help you visualize what's going on.
      https://fxdreema.com/shared/Ajn5MAV5c
      I used a different way to loop than you (you still be able to achieve the goal with your loop).
      Have a fun with the Candle ID 0 😄 😄

      0_1574875637695_94988af5-d6a7-4ef1-b29b-a3e31652f4ab-image.png

      0_1574875658166_2b37d304-0d0d-4fad-b1a5-67da354d2f6f-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: How to create pullback EA?

      take an inspiration from this 3 years old thread 😄
      https://fxdreema.com/forum/topic/4222/example-price-pullback-ea

      posted in Questions & Answers
      M
      miro1360
    • RE: Help me please....🙏🏻

      0_1570538881464_6b520955-27f4-46e8-b4f9-b6fb9c91a630-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Help me please....🙏🏻

      %D parameter is a period of MA, use the Signal line mode to obtain a moving average value

      posted in Questions & Answers
      M
      miro1360
    • RE: Tutorial Loop [advanced?] - find and save specific value from indicator history

      0_1570281639906_c642b192-7c44-4892-b201-6e675e29589b-image.png

      posted in Tutorials by Users
      M
      miro1360
    • RE: Tutorial Loop [advanced?] - find and save specific value from indicator history

      of course it is, just replace the atr with a candle size

      posted in Tutorials by Users
      M
      miro1360
    • RE: How to include library?

      There is a percentage that expresses how much it works and how much it does not. I am afraid I really can not help you. My recommendation is to use both MT4+MT5 for specific situations. The frustration can be relieved.

      posted in Questions & Answers
      M
      miro1360
    • RE: How to include library?

      I see, it needs a nice amount of manual work. You are waiting a long time for it. I am not going to give my energy to this indicator for my opinion on MT5 tester and I see it as a waste of time (for both of us).
      If your interest is really high and MT4 is not enough, try a freelancer request. Maybe you find an enthusiast who can cheaply redo the indicator for MT5.

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 80
    • 81
    • 8 / 81