fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. jzfusion
    3. Topics
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 47
    • Posts 113
    • Best 6
    • Controversial 0
    • Groups 0

    Topics created by jzfusion

    • J

      Increment volume upper limit based on equity when using martingale
      Questions & Answers • • jzfusion

      6
      0
      Votes
      6
      Posts
      952
      Views

      l'andorrà

      @jzfusion You're welcome.

    • J

      How to inspect a candle at a specific hour
      Questions & Answers • • jzfusion

      4
      0
      Votes
      4
      Posts
      546
      Views

      l'andorrà

      @jzfusion Loops are not always easy. I'm afraid thaey are not my field of expertise, sorry.

    • J

      Total profit reduces by x % then close everything ..yet again
      Questions & Answers • • jzfusion

      5
      0
      Votes
      5
      Posts
      689
      Views

      l'andorrà

      @jzfusion Probably. What data quality is your backtest? Never trust anything below 99%.

    • J

      Breakeven + some..... Can I get the EA to move to breakeven plus a few pips?
      Questions & Answers • • jzfusion

      5
      0
      Votes
      5
      Posts
      834
      Views

      l'andorrà

      @cmk No. This block considers that if the trade is in profit you need to specify negative values, no matter if it is a buy or a sell.

    • J

      How do I convert this to mql5
      Questions & Answers • • jzfusion

      2
      0
      Votes
      2
      Posts
      1172
      Views

      roar

      @jzfusion try using these lines of code:

      vdSwapSell=NormalizeDouble(SymbolInfoDouble(Symbol(), SYMBOL_SWAP_SHORT),3);
      vdSwapBuy=NormalizeDouble(SymbolInfoDouble(Symbol(), SYMBOL_SWAP_LONG),3);

      https://www.mql5.com/en/docs/marketinformation/symbolinfodouble
      https://www.mql5.com/en/docs/constants/environment_state/marketinfoconstants#enum_symbol_info_double

    • J

      re: How can I make a condition with range break
      Questions & Answers • • jzfusion

      9
      0
      Votes
      9
      Posts
      885
      Views

      l'andorrà

      @jzfusion You are using the 'adjust' box incorrectly. No Constants can be added there. What you need to do is typing manually +High or -High in one block and +Low or -Low on the other one depending on what you want.

    • J

      Most effective way of avoiding whipsaws / ranging markets
      Questions & Answers • • jzfusion

      4
      0
      Votes
      4
      Posts
      523
      Views

      l'andorrà

      @jzfusion Just look at price behaviour when one is above the other. Then you will be able to adjust when you thing prie is trendy or not. Ther is no 'magical' solution, I'm afraid. 🙂

    • J

      How does the emergency STOP feature work in fxdreema project options?
      Questions & Answers • • jzfusion

      9
      0
      Votes
      9
      Posts
      1061
      Views

      l'andorrà

      @jzfusion I have no idea. I suggest you to ask that directly to the admin. He'll not reply soon, but he will for sure.

    • J

      Increase lots after x losses
      Questions & Answers • • jzfusion

      30
      0
      Votes
      30
      Posts
      5707
      Views

      M

      How about closing trades basses on rsi overbought and oversold ?

    • J

      I need help with a very simple set up
      Questions & Answers • • jzfusion

      7
      0
      Votes
      7
      Posts
      996
      Views

      l'andorrà

      Can you please share you project? I guess there is something missing behind it all.

    • J

      Place a trade based on close of another EA using their magic number
      Questions & Answers • • jzfusion

      4
      0
      Votes
      4
      Posts
      522
      Views

      l'andorrà

      Will it be the same account but on different platforms? In that case you will still need a programmer, I'm afraid.

    • J

      Closing out profits based on relative lot size
      Questions & Answers • • jzfusion

      6
      0
      Votes
      6
      Posts
      683
      Views

      J

      @roar
      excellent... thanks

    • J

      How do I have drop down parameterised for optimisation
      Questions & Answers • • jzfusion

      5
      0
      Votes
      5
      Posts
      1790
      Views

      T

      @trader-philipps said in How do I have drop down parameterised for optimisation:

      @jzfusion Define a constant for the desired field

      For MA method use datatype ENUM_MA_METHOD
      See valid values (for default value) here: https://www.mql5.com/en/docs/constants/indicatorconstants/enum_ma_method

      For MA price use datatype ENUM_APPLIED_PRICE
      See valid values (for default value) here: https://docs.mql4.com/constants/indicatorconstants/prices
      0_1582771088133_9b6a7b68-d3d8-4338-ad4e-414b8872ffcc-image.png

      Once you define the constants, you can use them each time you use the MA indicacator by rightclick on the correspondant field.

      0_1582771210843_908138b5-3579-4938-9548-170c585e2eb6-image.png

      Is this really your use case? You might try to use integer variables starting from 0 for the choices. But as the number of input fields vary from the choice I think, best approach would be as @l-andorrà says to use a custom code block for that.

    • J

      Is there a reset button for a project
      Questions & Answers • • jzfusion

      3
      0
      Votes
      3
      Posts
      737
      Views

      J

      @ambrogio
      That's very helpful

    • J

      Conditions in parallel or series
      Questions & Answers • • jzfusion

      2
      0
      Votes
      2
      Posts
      366
      Views

      l'andorrà

      Your current distribution of blocks means that when ANY condition on blocks 10, 5 and 12 are true, a buy will be open. So yes, positioning them on parallel has that effect. Did you try to choose cond 1, cond 2 and cond 3 as false when setting your input parameters? That is the only way not a single trade should be open.

    • J

      Hidden/Stealth Stop loss
      Questions & Answers • • jzfusion

      6
      0
      Votes
      6
      Posts
      1132
      Views

      T

      @jzfusion In Tutoriak EA I use those settings ..

      0_1582153576937_3dc814a1-7971-4741-9ab0-7115f628495c-image.png

      This means, if a stop for instacnce is 10 pips away from openeing price, the real stop (enmergency) would be 20 pips.

      So in total you have 2 options:

      A multuplied value of virtual stop A fixed amount of pips

      If you use virtual stoops, you may have to consider some functions such as if last trade was closed by SL for instance. I think that won't work with virtual stops as the trade was not closed by SL but by EA. But I haven't tried it yet.

    • J

      [Invalid Volume] error when using close partially block
      Questions & Answers • • jzfusion

      8
      0
      Votes
      8
      Posts
      1948
      Views

      l'andorrà

      You will need to create a variable and then follow the idea here:

      https://fxdreema.com/forum/topic/8188/how-can-i-round-a-number

    • J

      Limit on trade duplicate trades. Filter is not working for me
      Questions & Answers • • jzfusion

      6
      0
      Votes
      6
      Posts
      789
      Views

      l'andorrà

      In general, a 'For each position' block should not be used in the same structure that launches trades. It is a loop block for already open trades!

    • J

      Pips outside of Bollinger band
      Questions & Answers • • jzfusion

      14
      0
      Votes
      14
      Posts
      1902
      Views

      l'andorrà

      Ok. Thanks.

    • J

      I need to be able to turn Trailing Stop ON/OFF
      Questions & Answers • • jzfusion

      2
      0
      Votes
      2
      Posts
      316
      Views

      A

      @jzfusion Try this way
      0_1581362285797_Cattura.png

    • 1
    • 2
    • 3
    • 1 / 3