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: EAs working together. Could there be confusion in the price values sent or received?

      how TPi_Price calculation looks like exactly?

      posted in Questions & Answers
      M
      miro1360
    • RE: EAs working together. Could there be confusion in the price values sent or received?

      group number is part of magic number ... so better is explanation with example:

      magic:100 + no group =>> magic:100
      magic:200 + group:1 =>>> magic:201
      magic:210 + group:2 =>>> magic:212
      ... and so on

      (real magic number = magic from settings + group)

      https://fxdreema.com/tutorial/builder/groups-and-magic-numbers

      posted in Questions & Answers
      M
      miro1360
    • RE: EA Conditions to fullfill in sequence

      you are checking these conditions forward ...
      here is example with moving averages, ... change them to your tdi ...
      import this project to see all variables
      https://fxdreema.com/shared/RTY3dqm8d

      maybe you must add few another conditions to reset this TDI if something else happens ...
      0_1525792767952_41f37e53-c551-4542-a1ae-286c625b0e85-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Baby Steps

      second part still simple 😄

      0_1525631996117_miro1360_test_1.0.mq4

      0_1525631965357_99fed2ba-436c-4c59-924c-c8536c463826-image.png

      not much changed... note that it can be done better ... but we are not going to create graphics for games so you can do code as you want, here it does not matter ...

      0_1525632089540_c1ff59ae-3d44-432d-95d9-71f4f49ff50b-image.png

      third+last part I think can be Condition blocks in fxdreema (you can import this indicator into My Indicators, and compare results with other indicators) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: How to use ZigZag [advanced]

      in case Once per bar do not use values with ID=0 😉

      posted in Tutorials by Users
      M
      miro1360
    • RE: Baby Steps

      just few lines of code in metaeditor ...

      this is your computation logic in code, which you described above

      for loop goes through candle IDs (but only once, barsToCalculate is my own function to speed up indicator and not recalculate all bars in history when barsLimit is set to 0 ... (it calculate history bars only once and than calculate only current candle) ... when you use it in EA, set input parameter barsLimit to some reasonable number, like 10 --- only 10 bars will be calculated) ..
      0_1525464527991_074ff165-0dc9-4cdc-bf95-de7a97242fe8-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Baby Steps

      0_1525388901672_miro1360_test_1.0.mq4

      here is simple custom indicator with separate window, start from that, later you can use it in EA ... you can understand it easily, it is very simple ...

      0_1525389048500_a63593fa-d53e-4b8d-a970-1eb58ad4c84a-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Baby Steps

      for consolidation use Bollinger Band Squeeze indicator ... green dots is trend, red dots is consolidation

      alt text

      posted in Questions & Answers
      M
      miro1360
    • RE: How to use ZigZag [advanced]

      get time ...

      https://fxdreema.com/forum/topic/5810/how-to-get-the-candle-time-of-previous-ll-on-zig-zag-indicator

      posted in Tutorials by Users
      M
      miro1360
    • RE: How to get the candle time of previous LL on zig-zag indicator?

      this is not so simple, but solution exist using my example
      https://fxdreema.com/forum/topic/5060/how-to-use-zigzag-advanced?page=1

      with few custom code lines you can do this job easily 🙂

      https://fxdreema.com/shared/spRoW4aDc

      0_1525365665430_d4163625-432c-4dff-b1b2-333229a45c85-image.png

      0_1525365701064_6fb86802-0df0-466d-9297-f12214d217e5-image.png

      0_1525365616928_7771874c-4c79-489f-8ef0-bdf3addad251-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: buys and sells alternate with each step

      here you go 😄

      based on stochastic ...
      https://fxdreema.com/shared/Wt31gCDhb

      0_1525269362133_7e32b159-0b3d-49ea-931b-782f2794afce-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Backtesting

      try this: https://www.forexfactory.com/alphaomega

      posted in Questions & Answers
      M
      miro1360
    • RE: Backtesting

      maybe you must register here and try it again after login ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Backtesting

      this 😄 is smile ...
      probability is very-very complex, read (and understand) all posts from this guy ...
      https://www.forexfactory.com/search.php?searchid=3553793

      posted in Questions & Answers
      M
      miro1360
    • RE: Backtesting

      because your signals are not consistent 😄 what was working yesterday, is not guaranteed for today 😄 ... look for at least 1 signal per day (not per month)
      ... people still do not understand that these charts are bad for a mechanical system, the only way can be the probability system ... it is like the casino 😄

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

      I am not sure what do you mean ....
      do you mean using custom code between fxdreema blocks? you dont need do it if block exist, if is not exist you can do it or even create own block (in fxdreema studio, check forum for some replies about that) ...

      or do you mean whole EA in own custom code?
      here not exist one answer ... because custom code can be done wrong, veery wrong, and therefore very slow ... you must be very experienced when you want create something pure in code, otherwise you will lose time (in that case it is better to learn something else as MQL programming, lets say it is better to learn javascript and web programming)

      ... fxdreema is using sophisticated system of blocks which are called logically in order/loops ... now it is in OOP, so technically it is really fast ... someone can tell you, that there is a lot of unnecessary code, but it does not matter, because unprofitable EA will create the same loss with both 😄 😄 ... from my experience, fxdreema is the best tool for creating EAs ...

      posted in Tutorials by Users
      M
      miro1360
    • RE: Custom EX4 indicator is not working with fxDreema

      for simplicity, instead of enum use int as you did in first post, but in int use only numbers, that means in period you use 15 ... if that is not working, than try use it from 0 to x ... instead of "no" use 0, or 1 ... enum is somewhere in indicator code as int but reprezented with string name (but in core it is int) :

      0_1524868100785_e0f7254e-1d16-4f19-ac97-a6d713571b93-image.png

      0_1524868108216_78e48e9f-a321-486d-b630-c5bdd98fa262-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: 5 Mins Scrapping EA failed to Open Trade

      your EA in tester is working
      if trade was not opened in real trading, there should be errors in console why (maybe broker rejected trade, or something that) ...

      posted in General Discussions
      M
      miro1360
    • RE: Check Profit Average - Multiple groups (not all groups)

      use Bucket of Trades ...

      https://fxdreema.com/shared/NtGNkJy9e

      posted in Questions & Answers
      M
      miro1360
    • RE: SuperTrend with Macd Divergence and Semafor EA

      really, I completely forgot that this block exists .... so you can use this block for multipair 😄

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 21
    • 22
    • 23
    • 24
    • 25
    • 80
    • 81
    • 23 / 81