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: Trade manager places trades using incorrect symbol

      maybe, but I am not sure if this resolve your problem, because it can be something else, you can try:
      find with metaeditor in EA mql code this (it is on top of code, somewhere in onInit):

      0_1484069687954_upload-8de4c683-f956-4647-8480-3b5e908fd8ab

      and do this (give it into "comment" or just delete it):

      0_1484069734118_upload-1c1d87b2-c043-4cfd-b17d-f760fed551f8

      and recompile your project using metaeditor

      posted in Questions & Answers
      M
      miro1360
    • RE: Close trades on x profit

      pink blocks (For each trade + something) can be used ....

      posted in Questions & Answers
      M
      miro1360
    • RE: EA based on custom indicator not running

      probably this is wrong ... you need do it another way ...
      start with using Trace block to view price levels from indicator buffers on the chart (to view values) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Problem with modify Stops

      there can be somewhere fail in logic ... try test these stops on different logic (something easy) ... if you find it working, its time to find error in logic connections 馃檪

      posted in Bug Reports
      M
      miro1360
    • RE: Help with bucket of trades/multiple order profit(fixed) a new question

      block Check profit (unrealized) with negative value? sure, you can ...
      what you mean by "stop loss"? you mean actuall trades profit (as negative) or you mean stop loss level?
      negative profit can be checked (as negative value)
      ...
      stop loss level can be checked with combination from pink blocks (For each trade + something) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Import Custom Indicator

      check this:
      https://fxdreema.com/help/working-with/custom-indicators
      https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema

      you can import .ex4 manually ...

      posted in Questions & Answers
      M
      miro1360
    • RE: how control if i want buy before candle close by five second ?

      easiest example, connecting blocks minutes+seconds as I said you in first reply,,,,, every 15 minutes, that means at 14min45s, 29min45s, 44min45s, 59min45s:
      https://fxdreema.com/shared/ahYvLH0E
      you can do this also for other periods, for M5 candles (04m45s, 09m45s, 14m45s, 19m45s, 24m45s, 29m45s, 34m45s, 39m45s, 44m45s, 49m45s, 54m45s, 59m:45s) ... etc.

      note one thing, you are working with onTick section, that means, blocks are runing tick after tick, but situation can happen, when no tick arrived in time interval 14min45s-14min59s and when no tick arrived - your blocks are skipped and EA is waiting for next time interval

      here is more complicated example with every minutes that can be set:
      https://fxdreema.com/shared/ibSC6YfV

      and this one is more precisely working with on Timer section, which is not depending on ticks and blocks are not skipped when are missed ticks (as in first example), but you can not test this with tester (tester is not supporting onTimer), only with demo:
      https://fxdreema.com/shared/mBV1TnxVd

      note: I have tried only first example in tester and was working for me, the next 2 examples must not working, who knows 馃槃
      again, investigate more effort into creativity - it is only way
      ... fast all is possible with fxdreema ...

      posted in Questions & Answers
      M
      miro1360
    • RE: how control if i want buy before candle close by five second ?

      connecting more filters is not working?
      like "Minutes filter + Seconds filter" ?

      posted in Questions & Answers
      M
      miro1360
    • RE: Simple Indicator - How Best to get started with this?

      fxdreema is working only for EAs, but you can have EA also for signals (instead of indicator), one from disadvantages is, that it can be only 1 EA in 1 chart (indicators can be more in one chart) ...
      so you can create EA which gives you alert for your conditions (bb+rsi) ... first try to learn basics from all tutorials, examples and all you find here in forum, here was fast all questions answered more times 馃檪
      if you fail after a lot of effort, I show you how to do it 馃槃 馃槃

      posted in Questions & Answers
      M
      miro1360
    • RE: Cross Above/Below

      it depends on interpretation what false output means, it can be "no cross" or "opposite cross" ... here in this block it is opposite cross and it must not be bug 馃槃
      0_1483743617592_upload-e94aab41-f2bd-4dc6-9843-c3dcd1eae2a1

      ... if you need false output active all times, you can do this in another way, like this one:
      https://fxdreema.com/shared/f3TBxTXHb

      0_1483744101133_upload-dac564e7-680d-4409-ad71-225920cbfe4e

      posted in Bug Reports
      M
      miro1360
    • RE: What would be an "Expiry Date" that appears in settings?

      in project settings? it means the day when to robot goes down in Metatrader
      your project in fxDreema projects is not touched

      posted in General Discussions
      M
      miro1360
    • RE: I rented a indicator to do a only rob么 an ex5 file I can not put it in the fxdreema. How I do??

      I dont know tell you exactly where is problem, but maybe it is possible to figure out ...
      as buffer try to use "medianRenko" and compare it with value 1 for bull candle and 2 for bear candle, but this is only my blind shot, because I have not worked with this type of indicators ...
      https://www.mql5.com/en/docs/customind/indicators_examples/draw_candles

      posted in Questions & Answers
      M
      miro1360
    • RE: Applying an indicator to Previous / First Indicator's Data in fxDreema

      search for something like "smoothed adx" or "smoothed momentum"
      https://www.mql5.com/en/code/7072

      posted in Questions & Answers
      M
      miro1360
    • RE: IF all trades profitable

      I think you need create two For each Trade loops (but not in one connection, firstly one loop and than second loop)
      in first loop check if all trades are profitable if is one lossable - give info into variable (like lossableTrade=true) and break this loop
      next can be or must not be controlled second loop (depends on variable lossableTrade) for adding to volume

      posted in Questions & Answers
      M
      miro1360
    • RE: Object over and under price

      maybe this can help you, it is not exactly your situation but is there object existention checking 馃槃
      https://fxdreema.com/forum/topic/4292/horizontal-line-for-buy-and-sell/2

      posted in Questions & Answers
      M
      miro1360
    • RE: I rented a indicator to do a only rob么 an ex5 file I can not put it in the fxdreema. How I do??

      type all input parameters, one after another, like:
      int barSize 50
      double retracementFactor 1.0
      bool symmetricalReversals true
      bool showWicks true
      datetime startBuilding D'1970.01.01 00:00:00'
      bool synchronizeFirst false
      bool showCurrentBar true
      color bullishBar clrLime
      color bearishBar clrRed
      etc., add all parameters ... last one is
      int periodOfAveraging 20

      and output buffers names, define there 8 different buffers, like:
      0buff
      1buff
      2buff
      3buff
      4buff
      5buff
      6buff
      7buff

      posted in Questions & Answers
      M
      miro1360
    • RE: I rented a indicator to do a only rob么 an ex5 file I can not put it in the fxdreema. How I do??

      here are types:
      0_1483560733556_upload-856ea195-9c84-4677-92ce-0b3ae49e716d

      and buffers are numbered from 0 to 7 ...

      posted in Questions & Answers
      M
      miro1360
    • RE: MA Deviation Orders (Hot to do it?)

      try this change for your condition block (1 and opposite for 11):
      0_1483551326733_upload-64f07dc8-7dde-4e4a-9ca3-485e0fec743b

      posted in Questions & Answers
      M
      miro1360
    • RE: Custom indicator does not open in fxdreema because it is .ex5 file and not mq5. Because?

      check one of my last replies ...

      posted in Questions & Answers
      M
      miro1360
    • RE: horizontal line for buy and sell

      maybe this can help you:
      https://fxdreema.com/shared/ZxDeyXP5c
      I used section on Trade for detecting trade closed on TP ...
      0_1483550978357_upload-23794a33-9fdc-4605-b68e-dad655231ceb

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 67
    • 68
    • 69
    • 70
    • 71
    • 80
    • 81
    • 69 / 81