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: Tutorial 06 - My Indicators in fxDreema

      type it as Show_Divergence_Alerts
      with underscores

      posted in Tutorials by Users
      M
      miro1360
    • RE: How do I find the Chart ID of an opened chart?

      You can display chart ID easily:

      0_1536182202027_53679b49-dfed-4c1d-a4e7-ca5617a459b6-image.png

      instead of looking for specific ID of a chart, ID of a first chart can be used (EA in first chart is your signal EA)
      0_1536182263246_e2917f0f-dc5e-4be5-80e2-52622b02494c-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: How do I find the Chart ID of an opened chart?

      maybe something like this can read that ... I am not sure how this object(signal) looks like

      0_1536090546353_601df56c-8e00-43f5-be76-6893ffc8a35e-image.png

      1 is chart ID, it can be 0 or any number ...
      "objectName" is name of object whare is signal
      OBJPROP_TEXT is description of that object (or signal itself), it can be also OBJPROP_NAME or something else, based on object

      posted in Questions & Answers
      M
      miro1360
    • RE: For Each Closed Trade Bug

      this in tester is working right ...
      https://fxdreema.com/shared/vHUCzoRGb

      posted in Bug Reports
      M
      miro1360
    • RE: testing and optimizing

      EA from fxdreema is fast enough, but logic between blocks must be right used, it took some time to understand how to use some blocks.
      One can create slow EA directly in mql 😄
      In metatrader case, the speed is more about logic.

      Anyway, what is speed? 😄 ... one can spend weeks or months with average EA in mql and result is the proof of lossable strategy,
      or one can spend 1 day with the same EA in fxdreema 😄
      ... so what is speed? 😄 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: How do I find the Chart ID of an opened chart?

      and what do you need?

      posted in Questions & Answers
      M
      miro1360
    • RE: Using For each Closed Trade with Write to file?

      give file name without path:
      0_1535465115337_d486ddeb-5344-41c2-8590-6d7d243cb0e0-image.png

      your file is located in Files folder (in MQL5 data folder)
      0_1535465201863_55aa41e3-298a-419f-a1f9-30651f2dcb21-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: How To Extract data from every bar

      lets say you are looking for example: save candles data into a file, where MA1 cross MA2 above

      use tester, set Date period From-To to desired range
      3 blocks is all will you need
      and run this EA in tester
      https://fxdreema.com/shared/l1FroNppc

      created file is located in folder "tester\files\yourfile.csv

      based on that you can change Condition block for your own to get another signals

      posted in Questions & Answers
      M
      miro1360
    • RE: How To Extract data from every bar

      extract where? into a file?

      if you want every bar where signal arrow appear, you must create loop which goes through each bar or given bars count

      I provided a lot of replies for loop examples, search for them in forum.

      posted in Questions & Answers
      M
      miro1360
    • RE: Using For each Closed Trade with Write to file?

      this should working:

      0_1535320733905_49270ceb-95e0-4bef-95a9-8621b0787854-image.png

      Condition should be something which is not triggered each tick, rather once per some time period or based on other events (you can place that into on Trade section and when trade is closed write that into file)

      posted in Questions & Answers
      M
      miro1360
    • RE: Could some friend help me?

      What is this history from the market telling you about the future?
      People are looking for many different paterns as profitable holy grail, but that never worked - acutally it worked only in tester for some period of time, but not for the future.
      You can trade probability and create tools for that. Following this member can help you: https://www.forexfactory.com/alphaomega

      posted in Questions & Answers
      M
      miro1360
    • RE: time alert

      I am not sure, I have not tried it, but you can:
      0_1534902131392_de47843a-58cb-465d-81b4-298bbe7412a2-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Add a constant to each operation.

      it is one of martingale systems:

      0_1534902008292_5d3f2631-aa4b-42a4-a7d4-4a8d7687bbac-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Could some friend help me?

      this strategy is not profitable, was tested many times intensively in the tester by many experienced guys (even by me), and yeah, is not profitable 😄 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: between two values

      I think you must use two blocks

      posted in Questions & Answers
      M
      miro1360
    • RE: Button on chart changes timeframe

      https://fxdreema.com/shared/8s6x69b0c

      you can do it with one row of custom code:
      0_1534264421114_0cce3554-80e5-4049-8b91-0173a34dadd0-image.png

      here are IDs (enumerations) for all timeframes for MT4 (change them in your blocks for other timeframes)
      https://docs.mql4.com/constants/chartconstants/enum_timeframes

      and with the same way it should working for MT5, where are more timeframes:
      https://www.mql5.com/en/docs/constants/chartconstants/enum_timeframes

      ... Symbol() can be replaced by pair name with quotes ("EURUSD", "GBPUSD", ...) and that way pair should be changed, I have not tried it

      posted in Questions & Answers
      M
      miro1360
    • RE: Comparing EA performance Live or Demo
      • if your strategy heavily depends on ticks or calculation based on ticks (or not closed current candle) - opening and closing trades, than it is not possible to test with good accuracy in tester

      • if your strategy depends on repainted signals, it is not possible to test with good accuracy in tester

      • if your strategy (opening and closing trades) depends on history candles (first closed candle, or second, or indicators based on that, and so on) than you can test it in tester

      .... and so on ... it all depends on that strategy
      .... and also for demo/live, if you was profitable first month, the second one you can be lossy (this is true for all strategies) ... forex is more lossy than a casino (99% of all traders lose their money - if anyone claims the opposite, than is working for some organization (books, forex training, signals, EAs based on shits, broker itself) or is not experienced enough)

      posted in Questions & Answers
      M
      miro1360
    • RE: Add SL, TP, TSL to new Signal Order

      0 is only for manually opened trades ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Why don't work well??

      multiplier is *
      adding is +

      so if you want only add, do not multiply
      lotsSell = lotsSell + lotsMultiplier;

      name lotsMultiplier is not right in this case, but should working

      posted in Questions & Answers
      M
      miro1360
    • RE: Can I create a bucket of orders with one only?

      you can do it with filtering inside that loop, you can filter trades based on your conditions inside that For each Trade loop and find trade that way ...

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 16
    • 17
    • 18
    • 19
    • 20
    • 80
    • 81
    • 18 / 81