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 1594
    • Best 190
    • Controversial 5
    • Groups 0

    Posts made by miro1360

    • RE: EA based on custom indicator not running

      add some name into this parameter:
      0_1484093328118_upload-e15b5d1c-683c-458d-9bbd-d08207043b9f

      but look, you are hardly trying to do something with bad way, what can be done in another way, easier way without custom indicator ...

      what I am thinking, you are trying when ADX cross happens, so try this:

      https://fxdreema.com/shared/hHi872n9e

      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??

      it is hard to explain you what are buffers 馃槃 read about it more on mql5 ...
      do you also know, that this renko strategy is not profitable? 馃槃 ... you are wasting time ... there was plenty strategies tested with renko, filtered with all types of indicators and was not profitable ... maybe something manually controlled ...

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

      instead of pending buy block place there Trace block (its name is really Trace) ... and set here your indicator to view, where are values placed (on which price level) - in visual tester .. to see, if you are working with correct values ...

      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??

      try to work with CandleColor[] buffer ...

      it is buffer 6, or if are numbered from null, it is number 5 (0,1,2,3,4,5) ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Trade manager places trades using incorrect symbol

      or if you will not do that variable, just add this function manually in code exactly on this place above unit reason:

      0_1484078265907_upload-f5f40de9-71d5-4d11-8b5a-1c997b67ef83

      posted in Questions & Answers
      M
      miro1360
    • RE: Trade manager places trades using incorrect symbol

      I see now, it is little complicated to do this, but try with blocks, do this:
      https://fxdreema.com/shared/KGQdJ0HKd

      ... make string variable where you use custom code function Symbol() - it return actual symbol name, place this variable into all blocks where is parameter Market (dont forget all touched blocks where is this parameter, it is important 馃槃 ... if you use also TP and is here this Market, place that variable into field! )
      0_1484076757850_upload-45892633-c882-4a9c-8420-ac4d84027940

      posted in Questions & Answers
      M
      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
    • 1
    • 2
    • 66
    • 67
    • 68
    • 69
    • 70
    • 79
    • 80
    • 68 / 80