fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Abade69
    3. Posts
    • Profile
    • Following 0
    • Followers 3
    • Topics 33
    • Posts 125
    • Best 10
    • Controversial 1
    • Groups 0

    Posts made by Abade69

    • RE: Problem with candle ID and "Shift"of indicators

      @l-andorrΓ  Hi, i need it working in MT5 because that's where my account is. My guess is that Fxdreema uses the "Shift" for something related to its "Candle ID" functions.

      posted in Bug Reports
      Abade69
      Abade69
    • RE: Problem with candle ID and "Shift"of indicators

      Uploaded the indicator i am trying to use:

      0_1559414747342_tirone_levels_x3.mq5

      The error will show up as soon as you try to modify/update a single Candle ID parameter. Thanks in advance.

      posted in Bug Reports
      Abade69
      Abade69
    • Problem with candle ID and "Shift"of indicators

      I have had this problem with several indicators that have a "Shift"function, does anybody know a way around this?

      0_1559413907294_874bd296-8fe9-4fd6-87b4-4f01d0c578ae-image.png

      Explanation: Whenever i try to change the Candle ID from a condition, it will also automatically change the "shift"parameter from indicators after i close the window, it also does that when i use constants:

      0_1559414173128_d2fcedfd-2730-4acb-ad34-6cb175e2d313-image.png

      posted in Bug Reports
      Abade69
      Abade69
    • How to "count" up and down ticks on M1 charts??

      Hello i am working on currency strength indicators, and am looking for a way to count every tick up and down separately, but the only way i have found is to add +1 every time the close is equal to the high or low of the current candle (missing the ticks inside the candle). The question is, does anybody know any function i could use to count every tick separately? Or point to an indicator that does exactly that?

      Thanks in advance

      posted in Questions & Answers
      Abade69
      Abade69
    • Block lists do not unfold (Google Chrome)

      After some time crafting, the block lists to the left won't unfold when clicked on.

      I have to restart the window everytime this happens. I had experienced this before but not as often. Have not tried another explorer yet, but i thought it would be a good idea to report on this.

      Thank you.

      posted in Bug Reports
      Abade69
      Abade69
    • "Shift" and "Candle_ID" Bug on indicator.

      Whenever i change the Candle_ID space for the indicator attached:

      0_1526278505133_afl_winnerv2.mq5

      It will replace the "shift" value, with whatever there is on Candle_ID:

      0_1526278678865_1.png

      This also happens when manually inserting any value in the box.

      posted in Bug Reports
      Abade69
      Abade69
    • RE: Sending variables from one MT5 platform to another

      Thank you πŸ™‚

      posted in Questions & Answers
      Abade69
      Abade69
    • Sending variables from one MT5 platform to another

      Hello, is there a way to send local variables from one EA to another in a different platform?

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Object bug! (after update?)

      @fxdreema Thank you! It is fixed πŸ˜„

      posted in Bug Reports
      Abade69
      Abade69
    • RE: Object bug! (after update?)

      @fxdreema Thank you! Best regards.

      posted in Bug Reports
      Abade69
      Abade69
    • Object bug! (after update?)

      Greetings! I was not getting this bug before for an old EA!

      0_1525547390485_1.png

      posted in Bug Reports
      Abade69
      Abade69
    • RE: Moving to another VPS

      @sirderrick822 That is odd. You can try:

      • Testing on multiple MT5 platforms.
      • Looking for any kind of errors/warnings during compilation.
      • Check version compatibility.
      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Moving to another VPS

      @sirderrick822 Hi, yes you can test with your very own broker's data feed (variable spreads, slippage, and real ticks), MT5 will download them for you. However:

      • Check that your broker provides GOOD data-feed. Flat candles can make your indicators go crazy, also spread can be very inaccurate for some days that are not even holidays (in ICMarkets for example).
      • Know that MT5 will try to "fill" missing data with higher time-frame candles without telling you, and still won't replace flat candles for you (although it will take them in consideration for its "accuracy" % formula).
      • Tick data may be limited by a few months AT BEST, so it would only benefit if you use very low time-frames (which i don't really recommend for several reasons, HFT being one of them, also the noise).

      For the EA to show on the adviser section just copy/paste both the mq5 and compiled version to the "experts" folder (note that there are several within).

      You can also use 1M bars and simulate "ticks" using elliot-wave-like movements (note that they are not real ticks), this can help with intermedium time-frames.

      I preferably use calculations on every open, on carefully made EA's for quick optimizations (the difference between tick tests and these do not vary when done this way), i cannot use hard stops, but they don't work in the long run anyways, only technical stops are O.K.

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      @fxdreema Nice, this could be used to gather information from various time-frames without cloning blocks πŸ˜„

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      @miro1360 Nice, this is exactly what i was looking for, you have my many thanks πŸ™‚

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      @miro1360 I right clicked the time-frame menu and WHOA! The variable menu appeared (feel so dumb now xD).

      So if i understand correctly the variable used needs to be int and ranges from 0 to 8 for each time-frame, is this the same for MQ5?

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Low and High of last x candles

      @yalgaar If you want the mean of the high/lows just add the formula blocks at the end of the loop (the yellow conection).

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Low and High of last x candles

      @yalgaar Hi, create a loop with "x" as limit, every round add +1 to the candle ID counter, a condition checks the number of candle ID being checked at that round and after it stores the high/low info it in a separate variables (using the modify variable blocks).

      You must think what is the max number of candles you are willing to check beforehand.

      Hope this helps πŸ™‚ If not i am sure savy coders may have a better solution.

      posted in Questions & Answers
      Abade69
      Abade69
    • RE: Is it possible to read output buffers from Ex4 indicators?

      @miro1360 Thanks a lot for this information πŸ™‚

      Maybe you can also point me out on a new question i have had for very a long time (made new topic).

      posted in Questions & Answers
      Abade69
      Abade69
    • Is it possible to change the used time-frame using input parameters (in blocks)?

      I think this may be asked a lot.

      Sometimes i need to create EA's that use multiple-timeframes but need the parameters to be editable to prevent duplication (and excessive work). This would add a lot of flexibility for creation AND for testing/optimization.

      0_1522874777511_10.png

      A view from one of my projects to demonstrate how big it can get without this option:

      https://fxdreema.com/builder/shared/YUoEVLcvb

      Thanks in advance πŸ™‚

      posted in Questions & Answers
      Abade69
      Abade69
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 3 / 7