fxDreema

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

    Topics created by Processman

    • P

      Floating numbers
      Questions & Answers • • Processman

      4
      0
      Votes
      4
      Posts
      1167
      Views

      P

      Daily % indicator works in comment line , with this code:
      Buffer1[0]=DoubleToStr(PercChange, 2);

      I think "Draw text" block only read buffer value and not include DoubleToStr ?

    • P

      Indicator code mod help
      Questions & Answers • • Processman

      6
      0
      Votes
      6
      Posts
      1374
      Views

      P

      OK , I found the modified version which contains 3 buffer.
      So no longer need to bother with this question , thanks anyway.

      //channel distance of last/current bar ExtMapBuffer2[0]=NormalizeDouble(MathAbs(PP - P1)/Point,0); //angle of channel ExtMapBuffer3[0]=NormalizeDouble(-Step/Point, 2);
    • P

      Time filters
      Questions & Answers • • Processman

      2
      0
      Votes
      2
      Posts
      495
      Views

      fxDreema

      "Once per... whateve" at the end depend on the ticks. If no ticks come in more than 20 seconds, nothing will happen. But that's why those blocks are called Filters, not generators or something.

      There is this event "on Timer" which can be used to run blocks in equal time periods. But note that this works only live, not in backtest.

    • P

      Flag textual value
      Questions & Answers • • Processman

      2
      0
      Votes
      2
      Posts
      580
      Views

      P

      Hello
      I use flags(textual) with 3 values , but "Check flag(textual)" block only compare value "Must be"(==) ...
      So whether it is possible to increase the "Not to be"(!=) compare also ? ... I save a few blocks then ... Just asking , not necessary

    • P

      Draw indicator value
      Questions & Answers • • Processman

      2
      0
      Votes
      2
      Posts
      867
      Views

      fxDreema

      Hm, this is interesting. Now I am also wondering if I can add some parameter for this, but there is a chance that I will fail implementing this, because the block is also designed to draw text and there are some issues in MQL4 when we mix numbers with strings or vice versa.

      Otherwise there is this function http://docs.mql4.com/convert/doubletostring that obviously turns any floating number into a string with X digits after the point. The thing is that function takes a variable.

      The other way is to use this function http://docs.mql4.com/convert/normalizedouble to normalize the value that the indicator is giving to the EA. I would probably do this directly into the indicator itself... if this is a custom indicator of course.

    • P

      Draw text placement
      Questions & Answers • • Processman

      4
      0
      Votes
      4
      Posts
      1048
      Views

      fxDreema

      There was a guy who had fast connection and still having some problems. I don't remember what was the problem exactly, but it was something that is impossible to be fixed, because of the way MT4 works 🙂

      Commissions does not depend on the speed, they exists when the spread is low. They advertise low spread, but there there are commissions, so at the end it's like you have bigger spread 🙂

      Swap is what happens when you have slow connection. When you send a request to put a new trade, there is a new price on the server already and the open price is different. Even more problems can come from this when you also have small stops. The thing is that in the request the Open Price is a price level, SL is a price level and TP is a price level. The trade can be opened at different Open Price, but the server does not touch SL and TP, so eventually one of them can be found on the wrong side of the open price.

      For example, you want to open a new trade at 1.0000 with SL = 0.9997 and TP = 1.0003. But until your request reaches the server the price is already different and the trade can be opened at 1.0003. The Open Price is modified, but TP not and now it appears wrong because it's at the same price as the Open Price. The result - no trade, only error message.
      Unfortunately MT4 does not send SL and TP as a relative values, like 0.0003 from the Open Price. It sends them as an absolute values and the problem comes from this.
      And there are other problems like this 🙂

    • P

      Indicator color
      Questions & Answers • • Processman

      2
      0
      Votes
      2
      Posts
      581
      Views

      fxDreema

      Yes, it is a simple question, I receive this question again and again, but the answer is not so simple. Check this post: post/7901

      Then, try "Indicator appear". It generally works for this situation, but not always, it depends on the indicator and how it works.

    • P

      MQL5 weekday filter is missing the yellow output
      Bug Reports • • Processman

      2
      0
      Votes
      2
      Posts
      515
      Views

      fxDreema

      Fixed for the web version. You can always add another weekday filter for the opposite days as well 🙂

    • P

      Indicator rise / fall
      Bug Reports • • Processman

      3
      0
      Votes
      3
      Posts
      722
      Views

      P

      OK ... yea ... thanks for the reply. I already have new ideas to get the robot to work as I want 😏

    • P

      Bull and Bear candle
      Questions & Answers • • Processman

      2
      0
      Votes
      2
      Posts
      857
      Views

      fxDreema

      Honestly, I don't know why 🙂 I created these blocks long time ago and I'm not using them really often, and also you are the first one asking for those outputs. But yes, yellow output will be fine... probably, I'm gonna add these on the web version now.
      Damn, something is wrong with this high frequency trading 😕 It's like going in a war with atomic bombs, chemical and biological weapons.

    • P

      What was that ?
      Bug Reports • • Processman

      8
      0
      Votes
      8
      Posts
      1859
      Views

      P

      OK ...the Indicator problem is gone ...
      I uninstal and reinstal Crome in my main PC.
      Now FXDreema works perfectly .. i think so 🙂

    • P

      Something say to a new update
      Bug Reports • • Processman

      4
      0
      Votes
      4
      Posts
      998
      Views

      P

      Quite so , but you are a pioneer in high-level programming. The correct robots in future will require millions of algorithms
      (Like Star Trek Data). My final forex bot use a little more than a hundred blocks. maybe this one is too ambitious project, but very interesting.
      Perhaps the best platform for this kind should be NET Framework, but it is a different story, it.
      I hope you find a compromise between the new and the old code, pointless greed for too much.
      Now there are enough opportunities to create your own forex bot.
      And now i open new beer ... cheers ... and Happy New Year for all ... 😄

    • P

      Time filters
      Questions & Answers • • Processman

      9
      0
      Votes
      9
      Posts
      2347
      Views

      P

      Thank you for "Hours filter" update. Now it's easier to set a schedule for each day of the robot 🙂

    • 1 / 1