fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. ProteinX
    3. Posts
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 19
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by ProteinX

    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap ok then, really bad. Anyways, thank you for your feedback, really appreciate.

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap sorry, now it looks like below, but still no objects of the indicator found:

      180a3914-573d-4ca0-bf24-b303d419ad82-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap the object list is empty:

      fdb460b3-54d9-43ff-ba28-3aff4083b43b-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap How can i read these indicator objects? You mean with the "object created" block in the "on Chart" tab?

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap I tested the indicator itself in the strategy tester. The signals suddenly stop working after some time, see below. Probably this is the reason why the EA also cannot read the signals?

      52ab9303-5613-40e8-8421-da92e89e422a-image.png

      But why are they working in live? I am confused!

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap no acutally i get all the buffer signals, but in that case the mouse cursor (white vertical line) was exactly at the position of these 3 values. (green dot, green line, red line). When i move the mouse then i will get all the other signals as well.

      So i cannot even get the green and red lines signals which are contiuous signals.
      Could it be that fractal signals are hard to read out from the buffers?

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap I don´t think, there is an indicator problem (check the mq5 code).
      And: yes, all the buffer values can be seen in the data window.

      Is there anyone who can explain, how to get the arrow signals of an indicator in general? What is the correct way? Unfortunately in the tutorials i have seen examples how to get the signals from indicators with continues signals (like MACD, ADX etc) but not how to get arrow signals which are interrupted.

      In my case it would be sufficient to know when a dot appears. Of course, it would be perfect to read out the value as well.

      675d1f12-9bea-4857-830f-b1baebb6ac23-image.png

      Here is the source code of the indicator:
      fractallevels.mq5

      https://www.mql5.com/de/code/viewcode/732/149215/fractallevels.mq5

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap Thanks for that proposal using only "modify variables" and "comments" block. But this also didn´t worked. Still no values of the buffers.

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      @jstap Of course, here it is:
      https://fxdreema.com/shared/YiB8jvEad

      Probably you have a better idea what is wrong here? Probably the arrows are objects, not buffers or the buffers are arrays? No clue.

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to read the buffers of this custom indicator (mq5)?

      I did (see above screenshot), but didn´t worked. That´s why i am asking.

      posted in Questions & Answers
      P
      ProteinX
    • How to read the buffers of this custom indicator (mq5)?

      Hi there!
      Cany anyone tell me how to read the latest buffer values of this indicator please? An example with a comment block would be sufficient.
      I am talking about this fractallevels.mq5 indicator: https://www.mql5.com/de/code/732

      bd759921-8c88-41de-a675-236cfb28f41d-image.png

      I have imported it correctly into fxdreema:

      a7e71419-ad74-4ebd-bd9b-5b34177d80f4-image.png

      I tried this:
      All six and non-empty buffer values should be read once per bar at previous candle 1. Checking with condition: if buffer1 at candle (1) >0 then display value.
      But i don´t get any values from the buffers. I am doing something wrong. What is it? Thank you for your support.

      c7628889-f434-4ea3-a25e-84c12419e8dd-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: How to delete comments from the chart when EA is removed?

      @roar Thank you! A clear answer, exactly what i needed to know.

      posted in Questions & Answers
      P
      ProteinX
    • How to delete comments from the chart when EA is removed?

      Hi. On the Deinit tab (MT5) i could remove all the buttons from the chart when the EA is removed using the block "delete object". But I don´t know how to delete the comments displayed on the chart? Is there kinda "delete comment" or like that?

      1b404b87-82f6-4c91-98a9-a7786418ba1d-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: how to delete buy pending order if price crosses below the stop loss level?

      Problem solved! I have moved the blocks from the "on Trade" tab to "on Tick" tab. Now the pending orders can be deleted if the condition is met.

      posted in Questions & Answers
      P
      ProteinX
    • how to delete buy pending order if price crosses below the stop loss level?

      I have a BUY pending order with take profit and stop loss. I want the EA to delete the BUY pending order, if the order is not filled but the price crosses below the stop loss at price 36223. But unfortunately the EA doesn´t delete the pending order when I run the backtest. Can you please help to find out where the problem is (see screenshots 1-3)? Thank you.

      ff4ab106-e5e2-4208-8e4d-bd51216ffdc7-image.png

      ad3daee0-3e1c-42e6-974c-5adf9e08869b-image.png

      9e1bd7c8-1c6d-42bc-bd4c-fac1bb019509-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: Custom indicator buffer as input parameter not working

      Ok, the links above didn´t solved my problem. Fact is, my EA is running well with my custom indicator. The only problem is, that I cannot choose the output buffers as input parameter. Right now my EA is running with only two and fix output buffers fill1_1 and fill6_2 with this condition:

      if price crosses above fill1_1 then BUY
      if price crosses below fill6_2 then SELL

      BUT, I would like to choose sometimes other buffers, like fill2_1 for BUY and fill 7_2 for SELL etc. in the input window of my EA. How can I do that?

      As an overview here is a list of my ouput buffers in my custom indicator code:
      0_1638712640111_15794f36-a6e5-418f-b21c-c108a7956d78-image.png
      0_1638712650043_376e236d-8c5c-4ec3-8bfa-222da3cd0632-image.png

      posted in Questions & Answers
      P
      ProteinX
    • RE: Custom indicator buffer as input parameter not working

      @l-andorrà
      Thanks a lot, I didn´t see that tutorial. So I will read this first. Great!

      posted in Questions & Answers
      P
      ProteinX
    • Custom indicator buffer as input parameter not working

      Dear members,

      I would like to use the Output Buffer from my Custom Indicator (mql5) as User Input. I have checkmarked this as shown in the 1. picture. But the Output Buffers are not shown in my EA in Metatrader 5. Does anybody know how else I can choose one of the output buffers in my EA? Any idea? Many thanks!

      0_1638697007118_3470778b-2b91-4cf3-a78b-f273888344a9-image.png
      0_1638697055262_4b10bb09-6794-4648-95e8-74d8c2225cab-image.png

      posted in Questions & Answers
      P
      ProteinX
    • MT5 Strategy Tester Input Tab dos not update

      Hi friends. All EAs created with fxdreema do not load its input parameter in the strategy tester tab of MT5 anymore after I have tested several EAs before.

      Only at the first backtesting I could see parameter fields in strategy tester.

      But if testing a non-fxdreema EA then it shows all of its parameter there in the input tab.

      And when I load again an fxdreema-EA in the strategy tester then the input tab has still the old parameter fields of the previous EA.

      Is this a bug of mt5 or fxdreema? The problem exists on different PCs.

      Would be happy if you have a solution.

      Thanks a lot!

      posted in Bug Reports
      P
      ProteinX
    • 1 / 1