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: Rookie question on Magic number

      @l-andorrĂ 
      I don't use them (they are black magic numbers as far as I am concerned), but there's that filter option on most blocks:
      0_1572467651098_13655075-58d7-4beb-b246-9046efe2e253-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Is there a way to run EA with computer off?

      @cpxiom The interfering would happen, for example, if EA1 checks some open trade's features and make some decisions based on that. But actually that open trade was made by EA2, which doesn't follow the same rules. This problem can be avoided with group numbers and such, but there is always a possibility for error in some part of code.

      I saw that a good approach would be to have many EA's to even out the equity curve, with not so perfect EA's, but good.

      Well that's basically the modern portfolio theory đŸ˜„
      To make it work, different EAs' returns should have negative covariance, so that the bots don't just amplify each other's ups and downs

      posted in Questions & Answers
      roar
      roar
    • RE: Is there a way to run EA with computer off?

      @cpxiom said in Is there a way to run EA with computer off?:

      @miro1360 and anyone... Hello, just a quick question... Why multiple instances of Mt4?
      Maybe silly question đŸ™‚ but can't we open 2, 3 instances of same chart, same pair, in case we have several EA's for the pair.
      I ask this as best practice. How many EAs on one Mt4, if one per chart/pair.
      Thank you.

      I guess it's for testing and documentation purposes. If an account has multiple different strategies running simultaneously, it's sometimes hard to tell which strategy yields the actual profits.

      EAs interfering with each other's algorithms is whole another matter.

      posted in Questions & Answers
      roar
      roar
    • RE: Any idea why this EA won't take any trades?

      You have restricted it to only one minute every day. Together with "Once per bar" activation, the algorithm never gets past block #2

      0_1572420589444_b1284e57-e40b-4205-9b80-6eeb25b26a77-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Reset Block Number

      đŸ™‚

      0_1572420396457_0fa8bd2b-e3a9-4b4e-9904-f69eec7876ed-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: exemple button help

      @ken-0 It takes time, because the EA updates on every tick (see the "on Tick" tab on top). If next tick happens 4 seconds later, your trade opens 4 seconds later.

      If you absolutely need faster execution (even if market is still), use the "on Timer" tab and modify the refresh time from project settings.

      posted in Questions & Answers
      roar
      roar
    • RE: Trail pending order

      You are using "Trailing stop" instead of "Trailing pending orders" in the current project

      posted in Questions & Answers
      roar
      roar
    • RE: Closing a trade not by stop-loss or take profit

      This should work:
      https://fxdreema.com/shared/GRU9GO5ve
      0_1572180833422_ab5e4c34-0bb1-468e-9fd5-be690ae94094-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to calculate Moving average on RSI???

      There is no fast way, only using some custom indicator or arrays. If youre new, this is not the easiest project to begin with...

      posted in Questions & Answers
      roar
      roar
    • RE: asdsadsadsadsasadsadsada

      I feel you brother

      posted in Questions & Answers
      roar
      roar
    • RE: Force EA to stop working when reaches profit per day !!!!!

      Hi!

      Lets store the profit value (in pips) to a variable called dailyprofit

      -> Once per daily bar, set dailyprofit as 0
      -> When trade is closed, add result to dailyprofit
      -> Before opening new trades, check the P/L limits
      https://fxdreema.com/shared/6IcQU502d

      posted in Questions & Answers
      roar
      roar
    • RE: If original condition/signal has changed move to breakeven

      @jzfusion
      Should be simple as this:
      0_1571849519955_987b650d-47b3-45ca-8566-c321a2e31cc8-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Can't find how to draw numbers

      @l-andorrĂ 
      It seems somewhat working, just needs some fine-tuning. Anchor type is in left by default, centering it will look better.
      0_1571840107869_9dca114e-fd31-45db-836b-7a5e1e5aae6c-image.png
      0_1571840123034_b1c68fa8-a6bc-4778-bbc2-95008b51d902-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Bug: Wrong Candle Value

      @l-andorrĂ  That seems to be an actual bug in the builder, I can do nothing but hope the admin fixes it...

      posted in Bug Reports
      roar
      roar
    • RE: Modify stops?

      It's possible via the loop:
      0_1571766308673_9cf502a2-95a8-41b2-908f-73f85d4e1fae-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Can't find how to draw numbers

      The default settings on "Draw text" are almost enough, just change the price parameter
      0_1571742659099_4150f323-0b19-42b9-8a0b-854a7fe68196-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Bug with DoubleToString

      @gsmtricks Just replace it to the function:
      MathFloor(Rate * 100) / 100

      Hope it works!

      posted in Bug Reports
      roar
      roar
    • RE: Candle close as % of range

      @turelforex
      Here:
      0_1571642059310_8ecf5703-a3b4-4058-a73f-f32042cbe01c-image.png
      https://fxdreema.com/shared/aNZCUpsKd

      posted in Questions & Answers
      roar
      roar
    • RE: Bug with DoubleToString

      @gsmtricks
      MathFloor(12.19999999999 * 100) / 100
      ^^ This should return 12.19

      posted in Bug Reports
      roar
      roar
    • RE: Candle close as % of range

      @turelforex Do you mean comparing to the candle itself, or the previous candle?
      Can you perhaps draw a picture?

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 81
    • 82
    • 83
    • 84
    • 85
    • 120
    • 121
    • 83 / 121