fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. kroghd
    3. Topics
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 17
    • Posts 29
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by kroghd

    • K

      For each Object Block is Printing Colour to Experts
      Bug Reports • • kroghd

      4
      0
      Votes
      4
      Posts
      730
      Views

      fxDreema

      This is how it looks on my side: http://prntscr.com/7w75jm

      I also checked it for MQL5 and on the local version. I don't know what you are using - EA generated weeks ago or old local version, but in both cases there is one common word - old.

    • K

      Bug with Adjust on Condition Block when using Variable
      Bug Reports • • kroghd

      3
      0
      Votes
      3
      Posts
      919
      Views

      K

      Thanks

      Perhaps you can have the best of both scenarios e.g

      If condition adjust value contains variable name - replace variable name with ToDigits(variable_value_here,CurrentSymbol());

      Else
      Check & replace like you currently do

    • K

      Intermittent Issues with Pending Trade Expiry
      Bug Reports • • kroghd

      3
      0
      Votes
      3
      Posts
      575
      Views

      K

      Hi,

      I am running local version - time problem was a web one to show you an issue.

      I will prepare an example project & share to you so you can simulate.

      Thanks

    • K

      Project Variables where no value is supplied
      Bug Reports • • kroghd

      1
      0
      Votes
      1
      Posts
      391
      Views

      K

      Hi,

      In the project variables - for your output into the mql file can you allow it to support just the variable name declaration.
      Because if I don't supply a value the MQL file will not compile as your output is assuming all variables will have values.

      datetime MyDate =; fails build

      if no value consider output as:
      datetime MyDate;

      Thanks

    • K

      Divide by zero coming from iCandleID
      Bug Reports • • kroghd

      2
      0
      Votes
      2
      Posts
      463
      Views

      fxDreema

      I did that. Thank you for noticing this bug in the code ๐Ÿ™‚

    • K

      Problem with Time Filter
      Bug Reports • • kroghd

      5
      0
      Votes
      5
      Posts
      968
      Views

      K

      Yes - I meant to say I have put Print() custom mql4 but after some time they stop getting run.

      I will try with the comment blocks and see what I can figure out

    • K

      Local Version - Bug with Project Variables screen
      Bug Reports • • kroghd

      2
      0
      Votes
      2
      Posts
      490
      Views

      fxDreema

      Someone wanted to be able to use any data types (and enumerations), so I removed the available options. But I also added some basic description for data types below. The most important are int, double, **bool **and string

    • K

      Problem with Virtual SL being deleted with partial close
      Bug Reports • • kroghd

      2
      0
      Votes
      2
      Posts
      535
      Views

      fxDreema

      I think I fixed the problem, here is what I used to work with it: https://fxdreema.com/shared/iXmqBbmAc

      I don't remember why I decided to set SL to it's minimum size in AlignStopLoss() while working with virtual stops. Maybe because I wanted the same EA tested with normal or virtual stops to give the same results in backtest. Now I make it the way you want it and I hope that there will be no problem to come out of this ๐Ÿ™‚

      I will try to fix the other things as well.

    • K

      Logic Issue with pips away from TP block
      Bug Reports • • kroghd

      4
      0
      Votes
      4
      Posts
      865
      Views

      fxDreema

      Well, I updated the web version. Additionally, I reuploaded the local version with this fix, but my updates does not affect older local versions that somebody have... the local version has it's own local database ๐Ÿ™‚

      Pips away from TP - means, that it detects when the price is at some distance from TP. For Buys, this is when the price moves down at some distance from TP. The current price for Buys is used to be Ask, so the formula you show obviously operates with Buys. Then when we do TP-Ask, because TP is above ask, the result will be positive and we are serching for that. The opposite Ask-TP will be negative and... not the one we are searching for, because on the other side we probably have positive value (if PipsAway is positive).

      Get the local version that I reuploaded or try it on the web. At least I can see what are you doing on the web.

    • K

      On Trade Close - Can we isolate partially close from full
      Questions & Answers • • kroghd

      6
      0
      Votes
      6
      Posts
      1142
      Views

      fxDreema

      Well, the closed trade has "parent" trade even if you close it for the last time. To resolve the problem I added function to get the "child" ticket, so now there are 2 checks. I think purple blocks are enough ๐Ÿ™‚

    • K

      _Time Function doesnt correctly calculate Components time
      Bug Reports • • kroghd

      6
      0
      Votes
      6
      Posts
      1045
      Views

      l'andorrร 

      @adakco No project is visible.

    • K

      Variables Type Drop Down Consistency Issue
      Bug Reports • • kroghd

      2
      0
      Votes
      2
      Posts
      564
      Views

      fxDreema

      Fixed on the web version ๐Ÿ™‚

    • K

      Feature Request - Project Search & MQL Custom Blocks
      Questions & Answers • • kroghd

      6
      0
      Votes
      6
      Posts
      985
      Views

      fxDreema

      The next build is up already ๐Ÿ™‚

    • K

      Local Version - Project Options Timer Event Period Save
      Bug Reports • • kroghd

      2
      0
      Votes
      2
      Posts
      442
      Views

      fxDreema

      My fault, it seems that settings are not updated at all. I reuploaded 082 now, you can try it. I'm currently working over trailing stop blocks, but I'm not finished... so if you notice problems with this now, tell me... just saying ๐Ÿ™‚

    • K

      Bug with Condition block & _OrderStopLoss Block
      Bug Reports • • kroghd

      4
      0
      Votes
      4
      Posts
      658
      Views

      fxDreema

      Ah, you are using the local version? Ok, I reuploaded it now because of other small problem with another person (081), you can ty it.

    • K

      How do we include custom function using custom block
      Questions & Answers • • kroghd

      2
      0
      Votes
      2
      Posts
      1001
      Views

      fxDreema

      This block puts the code that you enter in a function. It's not impossible to close that function at the top and open new one in the code:

      } void MyFunction() {

      or even call that function:

      MyFunction();} void MyFunction() {

      But I will suggest to try https://fxdreema.com/studio/MQL4
      There you can define custom functions that can be called in the project (if something is not wrong, because I didn't tested that soon) in the low right corner where "Custom functions" are.

      I think I can't find that function for CORNER_LEFT_LOWER ๐Ÿ˜•

    • K

      Cross Width Doesnt Save
      Bug Reports • • kroghd

      8
      0
      Votes
      8
      Posts
      1848
      Views

      fxDreema

      Only 1 value can be used for Candle ID, and I don't think I will do something about it, at least not in Condition ๐Ÿ™‚
      Maybe "Indicator moves within limits" can be used for this, because it checks each candle. Normally it checks some indicator for each candle, but candle parameters can be considered as indicators, so... not impossible.

    • 1 / 1