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 use ZigZag [advanced]

      zigzag needs a lot of calculation, and it is reason why it is slower ... the faster procesor you have (+SSD disk) the faster test result can be ..

      posted in Tutorials by Users
      M
      miro1360
    • RE: When you reach a loss greater than 10% below, on your balance send alert

      light pink blocks you must use together with dark pink blocks (For each trade)
      ... and they control each trade separated ... you can use Bucket of trades in case of group of trades ... or using "loop" to count parameters from trades for further use ...

      posted in Questions & Answers
      M
      miro1360
    • RE: There are objects left when the expert leaves the chart

      place these blocks into section on Deinit:

      0_1522933151623_0ebcd8c5-452b-48e0-997d-ac38e3f98a46-image.png

      posted in Bug Reports
      M
      miro1360
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      for MQ5 you should change few things:

      variable type TF_used is ENUM_TIMEFRAMES
      and definitions are from this enum list: https://www.mql5.com/en/docs/constants/chartconstants/enum_timeframes

      0_1522893126963_6ffa6296-fe53-4de3-b6fb-cdde383547bd-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      this into inputs (string Timeframes is only for info) :

      0_1522875030412_edf1c788-ada0-4774-b363-13823bcc3329-image.png

      this into variables:
      0_1522875080609_9e961250-e5f9-4e15-b0ca-aff29a3ac94b-image.png

      in on Init:
      0_1522875104801_44a454a1-d7c1-4118-afc1-45a68bc158a2-image.png
      if(TF_input == 0) { TF_used = 0; } //current
      if(TF_input == 1) { TF_used = 1; } //M1
      if(TF_input == 2) { TF_used = 5; } //M5
      if(TF_input == 3) { TF_used = 15; } //M15
      if(TF_input == 4) { TF_used = 30; } //M30
      if(TF_input == 5) { TF_used = 60; } //H1
      if(TF_input == 6) { TF_used = 240; } //H4
      if(TF_input == 7) { TF_used = 1440; } //D1
      if(TF_input == 😎 { TF_used = 10080; } //W1

      in on Tick:
      0_1522875146822_39fc95d8-2448-44c4-863d-90e9191efbbc-image.png
      (just use variable for timeframe)

      this technique can be used also for other specific parameters where optimization and its static increment is not enough (different periods - like 13, 34, 82)

      posted in Questions & Answers
      M
      miro1360
    • RE: Is it possible to read output buffers from Ex4 indicators?

      yes, as you told ... fxdreema importer is working that way, it only store these parameters (it is not storing whole indicator), also in EA code is used only reference for indicator as external file (its name)

      posted in Questions & Answers
      M
      miro1360
    • RE: Is it possible to read output buffers from Ex4 indicators?

      they are little messy, but something can be used 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: Is it possible to read output buffers from Ex4 indicators?

      try something from this:
      https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema/2?page=1
      ...
      find:
      2.) Import without mq file, with ex file:

      posted in Questions & Answers
      M
      miro1360
    • RE: Two EA's running on two different instruments in same account. How can I get the amount of margin for each?

      not with one parameter, for this isolation you must create whole money management system and it is not simple 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: Indicators and mqh include files

      you must specify all depending enumerations which are implemented in included file:

      for this one it should be only Smooth_Method:
      0_1522696005791_24e688ef-3a75-4cda-b6a8-f48d21b51cd8-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Problem with "check age" function

      it is working ...
      maybe you should somehow open first trade (because without first trade closed there is no history) ...

      0_1522542083895_130872d5-c7f1-4e02-85c2-3f7959c2361e-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: On every new position, place pending order in opposite direction with double volume

      0_1522541639292_5c09ae0f-1778-4f06-bdea-dfa27fec2979-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: On every new position, place pending order in opposite direction with double volume

      0_1522497783563_62dd4034-181e-4dfb-8843-a5fe32d0ef05-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: On every new position, place pending order in opposite direction with double volume

      volume from previous opened trade save into variable for further use ... you can easily do math on variables

      posted in Questions & Answers
      M
      miro1360
    • RE: Test object color...

      and this?
      0_1522411684840_626f1295-cb1b-44e4-b635-037addef99bb-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Test object color...

      maybe this? .. I have not tried ...

      0_1522340721188_0c210d12-dda8-43f2-9833-6141598c0615-image.png

      C'61,114,237'

      posted in Questions & Answers
      M
      miro1360
    • RE: Getting current net position (number of lots opened)

      try bucket of trades:

      0_1521894074929_7e51676e-1c38-483c-8d44-f3cba33a3d24-image.png
      it is for MT5 too (Bucket of Positions)

      posted in Questions & Answers
      M
      miro1360
    • RE: Strings, doubles and sums

      try this function:
      https://docs.mql4.com/convert/doubletostr

      0_1521893830496_1f9bf05b-b9cd-42f6-b7a5-e57f325c6406-image.png

      or normalizedouble function

      posted in Bug Reports
      M
      miro1360
    • RE: EA Optimization pass result is different when I backtest it

      it also depends on your strategy itself, if are you opening trades or if you have conditions with "candle ID = 0", this also can cause different results ... but mostly it is different history between metatraders ...

      posted in Questions & Answers
      M
      miro1360
    • RE: PLEASE HELP ME SOMEBODY with Fibo retracement Order

      try it this way:

      https://fxdreema.com/shared/aBv8j1ppe

      but you must edit it for yourself

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