fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. eklonsousa
    3. Posts
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 24
    • Posts 100
    • Best 3
    • Controversial 0
    • Groups 0

    Posts made by eklonsousa

    • RE: Partial Close Error with odd numbers

      @johnle1024 Hi!
      Thank you for your contribution.

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Partial Close Error with odd numbers

      @johnle1024 Hi!

      Could you please show how you do it? Two Buy/sell blocks?

      posted in Questions & Answers
      E
      eklonsousa
    • Partial Close Error with odd numbers

      Hi, guys!

      I'm working with partial closes and some instrument like XTIUSD have 0.50 as minimum lote size in the broker that i'm using.
      But this case applies to another instrument as well.

      My lote size is calculated by % related to stop loss size. If I have any order with odd number, and my setup is to close 50% it will no work.
      Ex: 0.11. When It reached the partial point it gives me an error and don't do nothing.

      Is there any way to "round" the parcial close? In case of the correct amount was not possible, give the Ea some alternative to close to most near of that amount. For 0.11, close 0.05 or 0.06.

      Any ideas? thanks

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Please Check Indicator Appear

      @fxdreema Does Fibonacci in MT5 works at the same way?
      I'm not able to draw it as I do in MT4

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Custom Code from MQL4 to MQL5

      Yes, man. It is very different. I'm using ZigZag to draw Fibonacci retracement correctly. For Mt4 it is working fine. For MT5 I can't even draw the fibo. With the same EA, but with some modifications.

      Btw, I'm using @miro1360 arcticle "ZigZag Advanced" as main engine.

      posted in Questions & Answers
      E
      eklonsousa
    • Custom Code from MQL4 to MQL5

      How to make this code works for ex5 EAs?

      " double zz_temp_value = 0;

      var_zz_H0_ID = 0;
      var_zz_H1_ID = 0;
      var_zz_H2_ID = 0;
      var_zz_L0_ID = 0;
      var_zz_L1_ID = 0;
      var_zz_L2_ID = 0;

      for (int i = 0; i < zz_ID_interval; i++)
      {
      zz_temp_value = iCustom(Symbol(),zzTF,"ZigZag",zzDepth,zzDeviation,zzBackstep,0,i);
      if (zz_temp_value == var_zz_H0) var_zz_H0_ID = i;
      if (zz_temp_value == var_zz_H1) var_zz_H1_ID = i;
      if (zz_temp_value == var_zz_H2) var_zz_H2_ID = i;
      if (zz_temp_value == var_zz_L0) var_zz_L0_ID = i;
      if (zz_temp_value == var_zz_L1) var_zz_L1_ID = i;
      if (zz_temp_value == var_zz_L2) var_zz_L2_ID = i;
      }

      "

      posted in Questions & Answers
      E
      eklonsousa
    • RE: partial close

      @fxdreema Let's assume that my trade have the trailling the stop loss activ since the beginning.
      But I still want to do the same as @tcanuto asks: I want to close the first partial with 100% from the INITIAL stop loss and the second with 200% from the initial stop loss.

      How can we do it?

      posted in Questions & Answers
      E
      eklonsousa
    • Equity Control with Moving Average

      Hi guys,

      I`ve just saw this article about controlling the EA using a MA for de Equity value.
      Just like this:

      https://docs.strategyquant.com/better-results-with-equity-control

      Did you have any ideia in how to add it yo an EA? even to a .ex4 that is already done.

      It can help a lot the results.

      Thank you so much

      posted in Questions & Answers
      E
      eklonsousa
    • Fibonacci Level (0 - 32) Parameter

      Hi,

      Anyone know how does it work this parameter? Looks like it works from 0 to 32 levels.

      alt text

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Fibo Retracement Pending Order

      @fxDreema ,

      Maybe there is an issue here.

      I just want to open a pending order in 50% fibo retracement. and i've tried these ways:

      (Fibo is drawing fine)

      alt text
      It doesn't work.

      Also tried:

      alt text
      With this variable changing:

      alt text
      I've tried this one with Numeric value too. No sucess..

      alt text

      There is no codition. It is opening all the time, but in wrong price level.
      alt text

      Most of the tried it opened trades in 0 level from fibo draw. And sometimes it keep working with the same level till the end....

      Im using @miro1360 ZigZag (Advanced) link text to draw the fibo.

      I've also tried the "Price Level 1" [..2,3..] for Fibo...but I need more that three level. BTW I didn't understand it's logic...

      Thanks in advance!

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Fibo Retracement Pending Order

      @fxdreema Thanks for your reply.

      I want to work only one order at time.
      I`ll show you what I meant?

      alt text

      In this case we have the 50% retracement level crossed by candle ID 3, candle id 2 (in this candle id 2, also 61.8 was "activated") and is almost equal low of candle ID 1 .
      I want to consider anyone of these situations to open a pending order. Whatever the candle crossed by, just touch the 50% or is a little below the 50% level. It need to work for equal price, little below or little above.

      Just like once the price crossed, touched or is close to 50% price level, the retracement price level is activated and then open the order. It sounds like a rounding of price...but it is...

      Thanks again!

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Fibo Retracement Pending Order

      @fxDreema , please, could you help?

      posted in Questions & Answers
      E
      eklonsousa
    • Fibo Retracement Pending Order

      Hi guys!

      How can I open pending orders in some fibo retracement region? I mean,if 50% fibo retracement price is 100, I want to check some conditions and open the pending order in some border line like 98, 99, 100, 101, 102...something like this..

      Any way to do it ?

      thank you!

      posted in Questions & Answers
      E
      eklonsousa
    • RE: Pending order on fibo level.

      @jrbeltre did you figure out how to use pending order on a fibo level?

      posted in Questions & Answers
      E
      eklonsousa
    • RE: FxDreema Changing/deleting Custom Indicator's Parameters

      @fxdreema

      Thank you for your reply!

      I think that I can handle with that. No problem. Just keep it in mind for future cases...

      posted in Bug Reports
      E
      eklonsousa
    • RE: Is there server problem?

      @drayzen said in Is there server problem?:

      Hi @eray-dursun ,
      Knok knock... ;D

      Are you still having problems, it's working ok for me...

      Couple of things I'd suggest:

      1. If you aren't using Chrome (https://www.google.com/chrome/) switch to it.
        I normally use Firefox but came across a few quirks using it with fxDreema.
        This is developed on Chrome so best to stick with that.
        (If you're using IE/Edge go give yourself a slap!)

      2. If you're already using Chrome, I came across this cache clearing trick recently.
        a) Press F12 and you'll see the DevTools panel appear.
        b) With the DevTools Panel open, Right-Click on the Reload button and you'll see a few more aggressive page Reload options.

        0_1525946153456_Chrome Reload.png

        https://superuser.com/questions/220179/how-can-i-do-a-cache-refresh-in-google-chrome

      Hi, @drayzen
      Do you think that this issue can be related to Firefox?
      https://fxdreema.com/forum/topic/5852/fxdreema-changing-custom-indicator-parameter

      Thank you!

      posted in Bug Reports
      E
      eklonsousa
    • FxDreema sorting randomically Custom Indicator's field - URGENT

      Guys,

      FxDreema is bugging my Custom Indicator as
      https://fxdreema.com/forum/topic/5852/fxdreema-changing-custom-indicator-parameter

      Anyone facing this?

      posted in Questions & Answers indicator customindicator bug
      E
      eklonsousa
    • RE: FxDreema Changing/deleting Custom Indicator's Parameters

      I've removed and added again my custom indicator as the steps below:

      Indicator Inputs Screen
      alt text

      This is how my indicator shows before the removal:
      alt text

      Steps to remove and include it again:

      Deleting the old one (that was working some weeks ago)

      alt text

      Then, inserting all the input field. All fields checked

      alt text

      Also the Output buffers

      alt text

      Just like in the indicator
      alt text

      Now is time to save the indicator:

      alt text

      And just right after the click I've scrooled up the screen and it shows like this:

      alt text

      alt text

      posted in Bug Reports
      E
      eklonsousa
    • FxDreema Changing/deleting Custom Indicator's Parameters

      Guys,

      I'm trying to program a EA using a Custom Indicator for months. But I'm facing differents issues and bugs with FxDreema. Each one take weeks to discover what is happening.

      Now, FXDreema is kind of sorting all my indicator parameters and deleting some of them .
      My EA just stop worked some weeks ago and the developer told me that I must have at least two custom indicators. After that, FxDreema was not accepting indicators field called "Period" . And now it is sorting randomically my indicator's fields and deleting some .
      I really need a help here guys...
      Every week I have some bugs.

      posted in Bug Reports customindicator bug
      E
      eklonsousa
    • "Indicator appear" block bug

      Hi!

      I'm facing an error when I'd try to update a block "Indicator appear".

      0_1524601970772_Screen Shot 2018-04-24 at 17.31.31.png

      Anyone else? It starts to happen from nothing. Sort of 6-7 days ago

      Im stucked in my development.

      posted in Bug Reports
      E
      eklonsousa
    • 1
    • 2
    • 3
    • 4
    • 5
    • 4 / 5