fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. roar
    3. Posts
    • Profile
    • Following 0
    • Followers 184
    • Topics 35
    • Posts 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: After profitable position pass n position

      @cerrase Ok. Firstly, about opening multiple trades per 1 bar - the code runs on every tick, so we should put a "once per bar" at the top of our logic, if we want max 1 trade per bar.

      posted in Questions & Answers
      roar
      roar
    • RE: After profitable position pass n position

      @cerrase I can look into it. Could you please share a copy of the current project, and try to simplify the problem as much as you can.

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @bentyekiff
      Biggest problem is the netting system. When this bot "buys", it actually closes sell trades if there is a running sell trade. So, converting to mt4, every time there is a buy/sell operation, must check first if there is an opposite trade running, and if true, then close (partially) that opposite trade.

      https://fxdreema.com/shared/pTIbLpWob
      I can't get the builder open, probably some problem in the fxdreema server, but I think there was also some timeframe modifications - I don't know how mt4 applies multi-timeframe.

      posted in Tutorials by Users
      roar
      roar
    • RE: Hide the visual mode

      @wessel Actually there is many ways to protect your work - you can set a password condition, date limit, and use the "if testing" block.
      I never found the option to only hide visual mode, though. I think you have to block backtesting altogether.

      posted in Questions & Answers
      roar
      roar
    • RE: MACD divergence

      @josh01
      Its the difference between MACD signal line and the main line. If that is what you mean by divergence

      posted in Questions & Answers
      roar
      roar
    • RE: Scalper Expert advice

      @vnpython-0
      It depends on your trading costs. If the costs (spread, commission, swap) are higher than 20% of your average profit, it means you have to get roughly 70% winning trades, on 1:1 SL and TP. No one has that big predictive power.
      To decrease the % of trading cost of average profit, you need to trade the most volatile periods (of the trading day).
      Just make an ea and analyze the trading costs in the excel report. If the % is too big, increase your average TP and trade less frequently.

      posted in General Discussions
      roar
      roar
    • RE: Here, take this profitable ea

      @karoshi
      There is no MT4 version at the moment. This EA utilizes multiple timeframes and the netting method (no buys and sells at same time). Converting to MT4 is possible but takes some work.

      Backtested this EA again today, this time with a different broker. Tbh didn't quite expect such a good result, lol 😄
      0_1552212291214_df821f7b-1870-4887-a33d-d3e83d45c12f-image.png

      posted in Tutorials by Users
      roar
      roar
    • RE: do not trade for x period of time?

      My usual approach would be to create a variable that counts +1 on every new bar, but I actually think its more efficient to use this checking process before opening trades:
      0_1552156828022_c0edf746-008f-4d62-af63-443d7d5e4e7c-image.png
      https://fxdreema.com/shared/7CPsdda4d

      posted in Questions & Answers
      roar
      roar
    • RE: EA FOR ATR

      @henpo1975
      With custom indicators, the problem can be anything in the inner mechanics... Try different mode-settings, and also try using candle ID 1, instead of ID 0 which is the default.
      0_1552127894907_3d12e7ae-cc59-4c0d-afa9-56ab9e5b8cef-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: EA FOR ATR

      @HENPO1975
      Orange = TRUE
      Yellow = FALSE

      The logic is good in this case. You will have only 1 running trade at a time.
      If you delete the "no trade", the bot can potentially create a new trade on each tick (because the whole code executes on each tick)

      posted in Questions & Answers
      roar
      roar
    • RE: EA FOR ATR

      @henpo1975
      Here 🙂
      0_1552071005773_adeabd13-d80d-4dc1-92a7-265d88694c38-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to do a trailing stop and a stop loss for fractals?

      Connect like this:
      0_1552057934890_be153d4e-7295-4110-8840-d5e39073fc59-image.png
      https://fxdreema.com/shared/oRPyrJOBd

      posted in Questions & Answers
      roar
      roar
    • RE: How to do a trailing stop and a stop loss for fractals?

      @cristobaljosemt5
      0_1551980540779_90da608b-6c95-4497-b728-bf213faba1bb-image.png

      Use right click to put a variable to the stop-loss field.

      Stop-loss at last fractal:
      0_1551980666767_469f7d0d-8b37-45ab-984f-20176e2c460b-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Need help backtesting

      If you are new to forex, why bother learning the old MT4 when you can jump directly to MT5?
      I know, there is still a great debate over which version is better overall, but it is a fact that backtesting is way better on MT5.

      posted in Questions & Answers
      roar
      roar
    • RE: How to do a trailing stop and a stop loss for fractals?

      @cristobaljosemt5
      0_1551886258432_faad3c5c-1fe7-4b6e-b4c0-6909a615c001-image.png
      Use this to share

      posted in Questions & Answers
      roar
      roar
    • RE: How to do a trailing stop and a stop loss for fractals?

      @cristobaljosemt5
      Oh, of course - these are the needed variables:
      0_1551808143248_3c083912-b77b-4b16-9771-203babb4b0a3-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to do a trailing stop and a stop loss for fractals?

      @cristobaljosemt5
      The fractal differs from the usual indicators in many ways:

      • Fractal is never on candle ID 0 or ID 1, because it needs 2 candles to complete. So the first candle to look for a fractal is ID 2.
      • When a candle doesn't have a fractal, indicator value is 0 (I think).
      • Up fractal value is candle high, down fractal value is candle low.

      We need to track the fractals with variables:
      https://fxdreema.com/shared/BedFyvXUd

      Once we have the fractal stored in a variable, setting the stop loss level shoud be simple.

      posted in Questions & Answers
      roar
      roar
    • RE: Manually Debug??

      @headcom Do you know the comment-block in fxdreema? It can be used to track variables during visual test

      posted in Questions & Answers
      roar
      roar
    • RE: Please teach me why the Close Trades didn't work

      @pei
      Well, you use "once per bar", so the EA only checks the candle open. ID 1 means history (first history bar), you can't decide to close your trades at a history time, you see.

      posted in Questions & Answers
      roar
      roar
    • RE: how to make my betting martingale/paroli settings change when my account grows? is it possible?

      Simply:

      • Store your initial balance to a variable, initial_balance
        0_1551628675874_463188c0-2e3f-4214-9d33-0b3e6cd69205-image.png
      • Before buying, check how much the balance has grown (or fallen) from the start:
        0_1551628843844_0dfdea52-db10-4f2a-8b58-8d8427140b48-image.png
      • Then we can update our lot value by that ratio, (current equity / initial balance) times our standard lot amount (0.01). AccountEquity() is a standard mql4 formula that returns equity
      • Then we can just insert the variable lot to "buy now":
        0_1551628961569_4b65b44d-6a19-4647-8562-4fffbf1b58c0-image.png
      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 96
    • 97
    • 98
    • 99
    • 100
    • 120
    • 121
    • 98 / 121