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: MQ4 Indicator to Custom Block

      Why bothering with complex indicators in studio? It will slow down your work. Any complex indicator is mostly a combination of math, logic, arrays and custom functions. As a developer you are comfortable with the code and debugger. Metaeditor is the right tool for creating complex indicators. You can run the indicator directly on the chart to view the history. When you have the indicator ready, then import it into fxdreema and test it for a trading strategy.

      posted in Questions & Answers
      M
      miro1360
    • RE: show a screen dashboard

      this thread could be helpful for you
      https://fxdreema.com/forum/topic/4501/video-tutorial-signals-dashboard-ea-advanced-looping-objects-arrays?page=1

      posted in Questions & Answers
      M
      miro1360
    • RE: How to put MQL4 code to condition block?

      that is how it is made, 0| |0 is added there by fxdreema (it causes the warning, not error)
      so far it has worked without problems

      posted in Questions & Answers
      M
      miro1360
    • RE: How to put MQL4 code to condition block?

      it should work

      posted in Questions & Answers
      M
      miro1360
    • RE: Drop-down menu & Ea, s within EA,s.

      the whole point is controlling it by a logic (if one button is enabled, run these blocks, if another button is enabled run next blocks)

      posted in Questions & Answers
      M
      miro1360
    • RE: Drop-down menu & Ea, s within EA,s.

      It is not possible to run EA or script from EA (this is how metatrader works) ...
      only what can you do, is created one mega EA with different functions (block areas), which can be enabled or disabled in the panel ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Constant Type for Dollar

      with Delay block? 😄

      not sure if this helps you to gain one connection
      0_1608602957999_85f387f7-a9c2-4414-82cc-784539f4dcd2-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Constant Type for Dollar

      perhaps opening 3 trades at once during one tick? try to slow down (delay) the opening process (between blocks 4-5 or 5-6)

      posted in Questions & Answers
      M
      miro1360
    • RE: Constant Type for Dollar

      @biztet said in Constant Type for Dollar:

      ERR_TRADE_EXPERT_DISABLED_BY_SERVER

      it is question for none of us, but rather for your broker 😄
      your broker has not allowed automated trading on the account, specific account type or for any other reason it is blocked ... try to read in the specifics of the account whether this trading is allowed and if so, ask the casino broker why it is not allowed for you 😄

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

      exactly, xxoffset is moving first group of objects (+), be_xxoffset is moving the second group (BE)
      the blue BE button "hides" all BreakEven control blocks, they are still active after the hide (shift) ... similiar as the blue "+" button
      yes, you can change it to "fixed values" ... maybe it doesn't work at all because I didn't test it (if so, it will be an easily fixable mistake) 😄
      xoffset shifts all objects (if you set it -1500, the objects will be moved to the left) ... I put it there because I don't use such a high resolution as you (if I didn't put it there, I would have to move all the objects to the left, you have them on the right for your high resolution) ... you can delete xoffset variable, it has no other use ...

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

      it can be done, buttons for controlling the visibility of objects (they are not removed, but shifted away from the chart)

      you can separate the BE for each chart or you can do it like this for a better view:
      https://fxdreema.com/shared/eigVnyG1c
      some loops are now slightly changed (so that the state of the button and the BE data must be preserved and cannot be redrawn if it already exists)
      ... I have not tested the BE functionality (if does it trigger at all), you can test it ... if that doesn't work, there may just be a little change

      0_1608321159797_558ec11f-6d2d-4b29-92b5-34d73a88ba80-image.png

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

      instead of worrying about what you don't know, work with what you have mastered in life 🙂

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

      Do you mean information how to do things from fxdreema blocks? Only in this forum 😄
      Or do you mean about mql4/5 languages? mql4.com, mql5.com and whole internet with tutorials 😄 ... it is similiar with C/C++ language.

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

      🙂 no worries, the more you practice the better you become
      this is important in the loop
      0_1608133708641_80897f39-21b3-4e61-9770-9b26463a304d-image.png

      I wish you Merry Christmas too 🙂

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

      here with profit/loss info ... you can add all additional info that way:
      https://fxdreema.com/shared/WkqqYegkb

      0_1608047153503_fced5ca1-b801-442a-bfd9-5003f47d16be-image.png

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

      I am not sure if this will be sufficient:
      ... perhaps you will need somehow filter the trades, because "Trade statistics" count with all opened trades (regardless of the pair) and therefore all blocks will be either green or red
      0_1608010128429_912cae45-0b8f-47be-88a4-7b3b993c041e-image.png

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

      and do this correction for each loop:

      0_1608009958101_ee8532ec-f557-46a5-8926-bd0c6b1e9949-image.png

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

      as I said, many things 😄 ....
      all "conjoint" objects have the same name and it is wrong, change it ... for something different, like "field-a" and "field-b"
      0_1608009626346_38ceaa19-ff97-403e-a452-da74114ae763-image.png

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

      many things ...

      • block IDs (numbering) is wrong (it must be incremental as my first example does)
      • prefix name is missing
        0_1607983544029_9dc61261-45dd-4bcf-bbb6-e6329ec278c5-image.png
      • this is not working that way ... move it in the loop (and add blocks for trades filtering - by name)
        0_1607983692527_c39c52aa-e0c4-4a03-8012-2b103dc049d9-image.png
      posted in Tutorials by Users
      M
      miro1360
    • RE: pullback

      take an inspiration from this quite an old example 🙂
      https://fxdreema.com/forum/topic/4222/example-price-pullback-ea

      posted in General Discussions
      M
      miro1360
    • 1
    • 2
    • 3
    • 4
    • 5
    • 80
    • 81
    • 2 / 81