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: plz help

      You can just copy the blocks, and then use the "filter by type" menu.
      0_1534614351472_9b16b386-d499-4cf0-b1a9-0c3a05dd2453-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Please confirm I'm right...or not.

      I think the stop-loss is not a level in this block, it is a value (distance) from the open.

      posted in Questions & Answers
      roar
      roar
    • RE: Why don't work well??

      You have a kind of loop with your lotsSell, it can grow to infinity.
      Try resetting it at some point or only using the formula once.
      0_1534096874317_c60b0315-e369-4a92-a6d3-2db0648f3f53-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Slide the furthest pending orders

      Hi!
      I think sliding orders might be too complicated for this purpose. How do you put up the orders in the first place?

      It may be more practical to keep open orders to a maximum amount, e.g max 10 open orders:
      0_1533730068747_923dc644-b5bd-4a4c-8ebb-f8be4d2e21a5-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Making a grid....

      Hello!
      Here's how I would do it. It's a bit tricky for a beginner, but hope you will get the hang of it 🙂
      Sorry I can't help you any further, as I got tons of work to do today.

      https://fxdreema.com/shared/BvfDoXpX
      0_1533320994226_c46d1868-36a9-4c90-98e9-f1a2f94cbfaa-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to set EA Password for 1 account ?

      Something like this in the On Init -tab should work.
      0_1532882078134_8049f254-5cf4-457b-b3f8-9ea18bfc2be4-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Too much money

      haha yeah that sucks, always getting too much money.
      I had to buy a wider screen in order to show my bank account properly

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      You can't link different trade actions together, you need 2 paths for two kinds of trades: oldest and newest.

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      0_1532215732223_fcf4fd21-79f0-408b-a8a4-69198d6bc816-image.png

      If you set n=1, you can pick individual trades

      posted in Questions & Answers
      roar
      roar
    • RE: time check after every x minutes of M5 candle

      Something like this should work:
      0_1532192241185_13ba787c-97fc-4830-86b6-e19e21afb24e-image.png

      Anohter approach would be to create some variable to track minutes

      posted in Questions & Answers
      roar
      roar
    • RE: My trash bin

      @richard96816 Yeah, one way is to create an area and just write on the description box. I don't use it that much

      posted in Bug Reports
      roar
      roar
    • RE: dynamic Take Profit

      0_1531902105817_a876aec2-3256-44ac-a49d-bf7d2fc8365b-image.png

      Just use that modify-block. Couple of things to remember:

      • The tp modify needs to be on top of your logic tree, if you want tick-by-tick update.
      • The pass-block is there just because every block needs a connection somewhere, otherwise its deactivated.
      • If you use bollinger, remember to separate buys and sells
      posted in Questions & Answers
      roar
      roar
    • RE: Making fxDreema better

      Yes, fxdreema has a learning curve, as it is that versatile a tool. But once you get used to it, it is actually pretty intuitive and uses the basic logic of all coding languages.
      This forum has very good chance of giving you answer to any problem, using the search function. What would you suggest to improve, for example?

      posted in Questions & Answers
      roar
      roar
    • RE: Question about 'on trade (Event Data)'

      When you find yourself copying the same block over and over again, there is usually a way to loop the process:
      0_1531850415421_54579295-345a-4684-b5e3-caf1af62268e-image.png
      This method creates as many trades as you want, and assigns a special number for each one.
      That number (group #) can then be used to control the trades.

      Doesn't really answer to your question though, just wanted to give another way of doing it 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      @ambrogio For changing a minus sign to a plus sign.
      Lets assume the "profitSum", thats the sum of the positive profit trades, example $12
      Then the profit of the losing trade can be -$57. Positive is always bigger than negative, so we have to -1 * -57 to make it +57 so we can better compare

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      Mine works differently.
      0_1531746592329_70c4c77b-6b92-4250-be98-5fbd0efc6576-image.png
      Here, take this .mq4 and import it to fxdreema so you get the exact same project. I also added a trade count condition for comfort.
      0_1531746692796_hedge.mq4

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

      @richard96816 Agreed, fxdreema has some very versatile functions. It's very good to see other's ideas too, avoiding "tunnel vision" with the alone development.

      Some say that sharing good eas doesn't happen because nobody would give away free money like that. I don't believe that approach at all - no matter how profitable your system is, there is always a risk present with trading, and the risk is higher if you don't even know the system you are using. So you have to learn the system, and thus you can also develop it further. Collaborative effort is the way to go

      posted in Tutorials by Users
      roar
      roar
    • RE: Close newest and oldest trade

      0_1531739563431_220104d2-5ce7-4b7d-b1e1-25365d4aafac-image.png
      The variables need to be reset at some point, otherwise the sum just piles up. Shared link somehow dropped that. I did that on the first loop block.
      Tbh, I didn't actually do any test run with this ea, could still be faulty 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      https://fxdreema.com/shared/fceTizc8
      This one first calculates the amount of profitable trades. Then it checks the most losing trade against that profit sum, and if profit sum is bigger, close them all. Small losing trades will stay open.

      posted in Questions & Answers
      roar
      roar
    • RE: Close newest and oldest trade

      It's a bit odd to pick oldest and newest, but this should do:
      https://fxdreema.com/shared/QRnvqa97

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 102
    • 103
    • 104
    • 105
    • 106
    • 120
    • 121
    • 104 / 121