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: Error compiling script

      it is error, it must be repaired by admin ...

      posted in Bug Reports
      M
      miro1360
    • How to use ZigZag [advanced]

      After longer time I am adding new trick how I am using ZigZag indicator in fxDreema.

      First something about ZigZag. ZigZag is indicator mostly used for plotting another lines based on its highs/lows, or placing pending orders here.
      ... but it is repainting indicator == dont expect 100% accuracy.
      Most repainted is current leg - it can be used for comparing with previous legs (if last leg value is more or less as leg previous, but last leg is not good to use it for placing pending orders). Pending orders is good to place into previous legs.

      This current leg can have two scenarios, these (and it is important for understand) :
      0_1504568194979_upload-5ec4cc8e-a16f-4123-ac20-82d243bb8033

      0_1504568224706_upload-7bd36fd3-7c4c-467c-be7b-0ef06c667153

      Question is, is it possible in fxdreema to find, if current leg is "low" or "high" ?
      Yes, it is, but it is little tricky.
      In fxdreema can be legs found by ID. But you cant find if last leg is L0 or if it is H0. You can not use simple condition for comparing current price with zigzag leg ID(0).
      For right comparison you need some small algorithm which create order for IDs (or in another words, find if L0_id is > or < as H0_id).

      For this I create small algorithm which write zigzag candle ID values into variables called var_zz_H0_ID, var_zz_L0_ID, .......
      parameter zz_ID_interval is candles interval, where searching is done
      (note, important are only H0/L0 IDs, but I am creating this from my previous project where I had also H1 2 and L1 2 IDs, just for this example ignore H1,2 L1,2):
      0_1504568862649_upload-8699c6d5-60b3-465c-a653-8cd1c1b7d8e2

      After this algorithm I can compare/find if last zigzag leg is Up/high or Down/low:
      0_1504569027173_upload-970c67dc-7da1-4c48-98c5-87767fc76063

      When I know this, I can use zigzag prices in right way (here for pending orders or ploting lines where current (not closed) zigzag leg is ignored) :
      0_1504569151794_upload-e0f02ede-783a-436a-80af-9e2efda56f49

      Inputs and variables used in project:
      0_1504569203628_upload-113f66e3-88b1-4338-a065-ed58c9e3bd0f

      0_1504569211400_upload-09f34ee5-1ea2-4a4e-930e-a7e767673921

      And result: ploting lines in tester where ZigZag current leg is ignored:
      0_1504569254690_upload-fcd33cc7-d3fb-411f-90f7-034faf07e409

      0_1504569261141_upload-5198fef5-cf44-4f31-a7bd-7d480ab6d503

      Shared project:
      https://fxdreema.com/shared/8eW5li27d

      Important note: Algorithm in this project was created fast, is not perfect, is slow and crazy behaviour can be expected. It can be done in better way, but I never needed another form 😄

      Have a fun 🙂

      posted in Tutorials by Users
      M
      miro1360
    • RE: buy stop and sell stop

      do it with highest/lowest, it is non-coding solution what I give you 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: buy stop and sell stop

      not so simple, because you need there additional calculations with custom code to find right zigzag high or low ... I think when you tune this highest / lowest you can get the same or better result with pending orders ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Missing headers of blocks in the sets

      better if you use extern (inputs) and own structure instead of check boxes ...

      posted in Questions & Answers
      M
      miro1360
    • RE: UPDATE time, write here if you have problems!

      yes thats true ... another true is, tester can give you different results when you use candle ID 0 ... I dont know this situation but I think this is caused by tester and metatrader (because now EAs are compiled with strict parameter and that ticks math modeling can be different in this mode - but I am not sure with this) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: UPDATE time, write here if you have problems!

      here is Candle ID
      0_1504273263532_upload-349cd5dc-7899-4233-8d73-b5f40fd52cf7

      posted in Questions & Answers
      M
      miro1360
    • RE: UPDATE time, write here if you have problems!

      not shift but Candle ID ...

      posted in Questions & Answers
      M
      miro1360
    • RE: UPDATE time, write here if you have problems!

      try with ID 1 ... because ID 0 can cause this ... maybe it is more metatrader issue ...

      posted in Questions & Answers
      M
      miro1360
    • RE: buy stop and sell stop

      not with zigzag ... use something else, like this:
      0_1504264127003_upload-a469dfdf-3443-440e-9832-d2ea394326a7

      posted in Questions & Answers
      M
      miro1360
    • RE: buy stop and sell stop

      for buy :

      buy stop is placed above current price and buy limit is placed below current price

      buy stop guarantee execution but not guarantee price (it can be filled at worsier price)

      buy limit not guarantee execution (sometimes is not filled) but it guarantee price (it can be filled at better price)

      posted in Questions & Answers
      M
      miro1360
    • RE: UPDATE time, write here if you have problems!

      @anse33 are you using candle ID 0 or candle ID 1 in that block?

      posted in Questions & Answers
      M
      miro1360
    • RE: how to re-open position after take-profit or stop-loss frist tick

      look for "on Trade" section ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Any suggestion for Renko Chart !?

      hi, renko is tricky ... because first what is renko ... it is generated in specified pips range as current price is oscillating up and down ... most of renko generators are holding all renko candles generated from time when generator started - this means if you want good history of renko candles, you need leave runing generator long time without restart, but when it is restarted, renko chart is generated from new time and all history bars are lost ... most of renko generators have function "generate history bars from M1 candles" -- this is good, but not perfect because you have not real ticks in these candles and they are generated only on price range of M1 chart - the smaller renko candle is, the less accurate in history candles, and opposite ... this small perfection detail is in renko big problem, because in most cases you cant test your EA in tester - you can test is if it is working as open/close, but you cant test it for profit in tester ... the only way how to test renko is forward demo (this take months and most probably fails in all scenarios 😄 ) ...

      renko generators in most case generate offline charts in some period (in settings can be specified), like M2 ... this means timeframe == 2 ... so in fxdreema insert your timeframe in constants/inputs as int type and in condition timeframe apply this constant:
      0_1504016542782_upload-9bf79963-00eb-49ab-b389-2f89fa6516e7

      example below is well known renko strategy (2 new candles in same color opens trade in direction and one opposite it close) ..

      https://fxdreema.com/shared/XgbcqQb9d

      0_1504017149539_upload-e9c3cbc5-ef61-4467-b1b0-470660914c80

      posted in Questions & Answers
      M
      miro1360
    • RE: Change "Comment Message" text color

      yes, this was my problem with white template too, I changed it manually but manually it is not very nice 😞

      posted in Questions & Answers
      M
      miro1360
    • RE: self updating/refreshing grid, compare two groups of trades

      it is not string, but color, as this:
      color yourColor = clrGreen

      where color is type
      your color is name
      and clrGreen is value

      posted in Questions & Answers
      M
      miro1360
    • RE: Modify Stops no working!!!!

      better if admin check it (I have not MT5) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Modify Stops no working!!!!

      and is it MT4 or MT5?

      posted in Questions & Answers
      M
      miro1360
    • RE: Modify Stops no working!!!!

      and are there some errors returned from broker or EA in terminal log?

      posted in Questions & Answers
      M
      miro1360
    • RE: Modify Stops no working!!!!

      when you open trade without SL and TP, is it opened?

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 38
    • 39
    • 40
    • 41
    • 42
    • 80
    • 81
    • 40 / 81