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: select certain order

      blocks:
      Check trades count + For each trade + pips away from open price + once per trade + modify stops or extend stops
      maybe I something left out, when you try it you will see result, if is not working, try other ways, there are always ways ...

      posted in Questions & Answers
      M
      miro1360
    • RE: select certain order

      for checking trades count you can use block Check trades count

      posted in Questions & Answers
      M
      miro1360
    • RE: How to make distance 500 pips from current price

      try this:
      https://fxdreema.com/shared/jEP0fYiV

      posted in General Discussions
      M
      miro1360
    • RE: Pips away from open price

      for me, this block is working well when is connected with block "For each trade" ... block For each trade is working for pre-selected trade. When is trade selected, you can apply on this trade blocks with light-pink color (like your pips away from open price) ... but without preselecting trade using block For each trade - who know which trade is selected ...

      0_1482684817460_upload-e9fbf07a-c1b7-4e11-9c63-0f7b86e9c78e

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can control in the spread ?

      you can give more EAs on the same pair (each EA for own chart), you give different MagicNumber while inserting EA into chart and each EA will control own trades

      posted in Questions & Answers
      M
      miro1360
    • RE: select certain order

      try this:
      0_1482622506015_upload-5ce4bbc3-2ef4-4681-a6f5-04561cdf5f95

      but for me are working both examplex that I provided to you ... maybe is something else wrong in your project ... my testing project where open price from second-last opened trade is printed on the chart:
      https://fxdreema.com/shared/7HurHl0Q

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can control in the spread ?

      before buy/sell blocks connect block named: Spread Filter, you can find this block under Time Filters drop-down menu, or just in condition block is this option under Market properties
      here you can see 3 examples how to use spread filters:
      https://fxdreema.com/shared/63ondNL9e

      posted in Questions & Answers
      M
      miro1360
    • RE: select certain order

      try this:
      0_1482594089839_upload-ccf6682b-a93a-42cc-9122-e26e484b9198

      posted in Questions & Answers
      M
      miro1360
    • RE: new share profitable EA

      you forgot to define variables in this project 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: Pips away from open price

      if you never used block for each trade, it is time to start trying this block in smaller parts of EA and learn in tester what is your work doing ... go through all examples and tutorials (in my tutorials is also using For each trade as example, there are my replies how to use this block, check my replies on all questions, I am sure you can find here how to use this block :D) ...

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

      I looked at this indicator and .. what to say ..., one you can try is remake logic from this indicator into blocks, I think it is possible for this indicator, but dont expect something easy, it can be a lot of work, maybe more time consumed as visual mode tester and result testing can be again slow 😄
      other you can try to do is make this indicator faster or add into this indicator usefull buffers (do in indicator code logic where you get values what you are expecting into buffers) --- again this can cost you a lot of time ... maybe somebody here find better solution for you 🙂

      posted in Questions & Answers
      M
      miro1360
    • RE: example: For each trade

      you mean list as array like:
      openPrice[0]=1.10
      openPrice[1]=1.15
      openPrice[2]=1.12
      .....
      openPrice[x]=y
      ?
      yes you can do this now ...
      just define in variables these:
      double openPrices[100]
      double openPrice=0
      int myInc=0

      take 4 blocks:

      1. reset variable myInc=0
      2. For each Trade
      3. Modify Variable block: save Open price into variable openPrice
      4. custom code block where you put:
        openPrices[myInc]=openPrice;
        myInc=myInc+1;

      after this you have open price from all trades in array openPrices[] and you can get values from it like:
      openPrices[0] ... open price from first loaded trade
      openPrices[1] ... open price from second loaded trade
      .. etc
      or using Loop/for where you use your increment variable myInc and you can get values one after another: openPrices[myInc]
      of course you can resize this array using some functions from mql code, or all what you will do, all next is up to you ...

      posted in Tutorials by Users
      M
      miro1360
    • RE: Pips away from open price

      problem can be, that you are using blocks from: Loop for Trades & Orders without previous selecting trades, that means, you are using block "pips away from open price" without block "For each Trade" ....
      block For each trade need be used first for pre-selecting/filter trade, from which are calculated pips from open price using block "pips away from open price" ...
      without this here can be situation, that you open price is changed ...
      the same is with condition or formula block, where you use parameter "in loop trade order in loop" ... before this block you need select trade using block "For each trade" ... it is sometimes not easy ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Pips away from open price

      post here example what you mean - using blocks and shared link

      posted in Questions & Answers
      M
      miro1360
    • RE: I am having problems with renko indicator, help?

      saddly, I have nothing tried for MT5 ... but you can and if you find something, tell us here about 🙂

      posted in Questions & Answers
      M
      miro1360
    • RE: I am having problems with renko indicator, help?

      I dont know reply to your question because of way how indicator is made, hard to tell if it can work in real conditions for EA ... but you can stay with offline charts in MT4 and wait when MT5 will support this charts ... metaquotes told last summer they made support for offline charts, summer is over and support is not, so maybe next summer

      posted in Questions & Answers
      M
      miro1360
    • RE: I am having problems with renko indicator, help?

      it is slowly indicator, but I think it is working:
      https://fxdreema.com/shared/UW3N1Hcld
      ... for faster testing you need something else and I dont know if there is something for MT5

      posted in Questions & Answers
      M
      miro1360
    • RE: I am having problems with renko indicator, help?

      there are 5 buffers,
      BoxOpenBuffer
      BoxHighBuffer;
      BoxLowBuffer
      BoxCloseBuffer
      BoxColors

      use them in fxdreema in condition block like:
      BoxOpenBuffer[1] < BoxCloseBuffer[1] .... output is Bull candle1
      BoxOpenBuffer[1] > BoxCloseBuffer[1] .... output is Bear candle1

      but yes, it must not working 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: I am having problems with renko indicator, help?

      it depends how is this indicator made, it create objects or fill buffers for indicating renko candles?

      posted in Questions & Answers
      M
      miro1360
    • RE: Errors in "Custom Mql4 Code" block

      try it now, what I tried is repaired ...

      posted in Bug Reports
      M
      miro1360
    • 1
    • 2
    • 68
    • 69
    • 70
    • 71
    • 72
    • 79
    • 80
    • 70 / 80