fxDreema

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

    jzfusion

    @jzfusion

    6
    Reputation
    1025
    Profile views
    113
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jzfusion Unfollow Follow

    Best posts made by jzfusion

    • Support and Resistance

      Is there anyway to determine support and resistance? i.e on the 5min chart sell when we crash through support etc?
      I am really wondering why there are so many lagging indicators available but I'm not seeing a lot of things related to price action. Can someone point me in the right direction if I'm wrong.

      posted in Questions & Answers
      J
      jzfusion
    • Importing Variables and constants

      I have created a long list of variables that I want to use in another project. What is the quickest way of importing them into the new project?

      posted in Questions & Answers
      J
      jzfusion
    • RE: Importing Variables and constants

      That's bronze age!

      posted in Questions & Answers
      J
      jzfusion
    • RE: Can I have the timeframe dropdown in a variable that applies to all conditions?

      Found it:

      ENUM_TIMEFRAMES and then call the variable PERIOD_M1 or whatever timeframe you wish.

      0_1581022220739_Screenshot 2020-02-06 at 20.49.57.png

      posted in Questions & Answers
      J
      jzfusion
    • RE: Increase lots after x losses

      @roar

      Does this look right?
      https://fxdreema.com/shared/8v2dRexUd

      posted in Questions & Answers
      J
      jzfusion
    • RE: DAILY TARGET

      @kestra I think you've given me an idea. I'm thinking about having a filter for some days such as Friday. So for example on Fridays I could lower the lot sizes or even change the options for money mangement using the Weekday filter. I think @l-andorrà has an example in his tutorial system where he filters for Fridays and negative swap etc.

      posted in Questions & Answers
      J
      jzfusion

    Latest posts made by jzfusion

    • RE: Increment volume upper limit based on equity when using martingale

      @l-andorrà
      Thanks. I think this will do for now

      posted in Questions & Answers
      J
      jzfusion
    • RE: Increment volume upper limit based on equity when using martingale

      @l-andorrà
      I can do [ if balance => 500 ] then blah. What I can't get my head around is doing the increments based on each additional 500

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

      I know martingale is frowned on but I'm creating a money management system based on this idea.
      I want to set a volume upper limit based on the size of my account so for example for 500 equity I want volume upper limit to be 0.16 but once the account grows to 1000 I want that incremented. So my volume upper limit is based on a specific account size.
      @roar This is should be a fun one for you. 🙂

      posted in Questions & Answers
      J
      jzfusion
    • RE: How to inspect a candle at a specific hour

      Cool
      @roar Any ideas on how we achieve this? I thought this was a very simple one.

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

      I want to be able to look back and have a condition that can check if for e.g the hourly candle at 10:00 closed bear or bull.

      posted in Questions & Answers
      J
      jzfusion
    • RE: Total profit reduces by x % then close everything ..yet again

      @l-andorrà
      I have fixed the issue however I noticed during the backtests that after the trading stopped I noticed the equity curve still going down. Is that a back test error?

      posted in Questions & Answers
      J
      jzfusion
    • RE: Total profit reduces by x % then close everything ..yet again

      @l-andorrà
      I do have a time limit filter for the London trading times. Is that what is interfering ?

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

      @roar
      I was wondering what I've got wrong with this circuit breaker code that you helped with. When I test it it doesn't seem to stop trading. The circuitbreaker constant is a double(0.9). This is in the tick block.
      Is there something I'm missing
      0_1605131789363_Screenshot 2020-11-11 at 21.55.21.png 0_1605131812436_Screenshot 2020-11-11 at 18.51.06.png0_1605131988398_Screenshot 2020-11-11 at 21.59.15.png0_1605139470493_Screenshot 2020-11-12 at 00.03.27.png

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

      I want to be able to go to breakeven but inch up just a little so that any slippage/spread is covered?

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

      @roar

      I'm trying to get the massive tutorial template to work in mql5. It seems this bit of code is not compatible with mql5

      vdSwapSell=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPSHORT),3);
      vdSwapBuy=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPLONG),3);

      I get these errors. I suspect they are expressed differently in MT5

      ')' - open parenthesis expected
      'MarketInfo' - undeclared identifier
      'MODE_SWAPSHORT' - undeclared identifier
      'MODE_SWAPSHORT' - some operator expected
      'Symbol' - some operator expected
      '3' - unexpected token
      'MarketInfo' - undeclared identifier
      'MODE_SWAPLONG' - undeclared identifier
      'MODE_SWAPLONG' - some operator expected
      'Symbol' - some operator expected
      '3' - unexpected token

      posted in Questions & Answers
      J
      jzfusion