fxDreema

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

    Best posts made by roar

    • RE: Redraw Horinzontale line with the same name

      Hi, I am not miro, just another bored guy, but

      try setting the "A: this block can create 1 object" to "no".

      0_1525373343361_663fac99-9354-41c1-96b7-5503f6396437-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: String conversion from Double not working correctly

      @MMBInvest DoubleToString() always works, I dont know what else to say. Here is an example you can actually reproduce, maybe it helps.
      testtt.mq4
      5c8ffb4e-8ff6-435f-8b18-d6a3762f10a1-image.png 5a793df8-85be-4292-9346-4282faa817b0-image.png

      posted in Bug Reports
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 just a basic rule in statistics. More data means more proof. Less data means less proof.

      If you cant have more trades in a year, then you should test multiple years.
      I would love to see this same backtest result, but started 5 years earlier.

      posted in General Discussions
      roar
      roar
    • RE: Avarage of indicator signals to place buy/sell

      @migen
      https://fxdreema.com/shared/BNcQoJLzb
      This is how I would do it.. Hope you are comfortable with variables πŸ˜„

      posted in Questions & Answers
      roar
      roar
    • RE: Time source wrong calculation

      Looking at the source, the time model seems to use TimeLocal() and TimeGMT() but then immediately remove the difference to server time - I wonder what's up with that @fxDreema πŸ˜„

      image.png


      Also a good thing to remember:

      image.png

      posted in Bug Reports
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 pretty good! How about 2013-2021 ?

      2014 and 2017 saw some big trends on eurusd, that would really stress test the ea

      posted in General Discussions
      roar
      roar
    • RE: Avarage of indicator signals to place buy/sell

      @migen
      To build on my previous example, I would do it like this:
      0_1527604810371_3964858e-5c95-4e94-b248-3675ad70ce93-image.png
      The 4 conditions now pass twice (for 2 timeframes) so the total "score" for buy and sell can be 8. I also added a block after the buy > sell comparison, where you can define how big the bigger "score" should be.
      This doesn't exactly separate between timeframes, but I think it's close enought to your needs and you surely can modify it from there.
      https://fxdreema.com/shared/h52NKD4te

      posted in Questions & Answers
      roar
      roar
    • RE: Compilation errors when using indicators with Multi Time Frame.

      @PhiLykia does the custom indicator have variable names such as "c" or "v"? Those may create the bug. You could try renaming the variables of your indicator.

      I do agree these kinds of bugs should be fixed rather than finding such workarounds.

      posted in Bug Reports
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 for me, recovery factor optimizing works better than just balance, but that might depend on the strategy

      posted in General Discussions
      roar
      roar
    • RE: How to Select "Least profitable trade"?

      @rafaelgrecco said in How to Select "Least profitable trade"?:

      What I was missing was:

      • Reseting the variable "smallestprofit" on every new loop

      We must reset the variables at some point, so the ea don't get "stuck" to some big loss that is already closed. Now it resets the variable on every tick, and also calculates it again so we always have the correct value. It is not the most cpu-optimal way but should work fine.

      • Using the second output of "Each Trade" to wait for all trades to be checked

      I think this is the correct way, we must first check all trades in order to find the lowest profit.

      The looping blocks work a bit different than other blocks, go ahead and test different logic builds πŸ™‚

      posted in Questions & Answers
      roar
      roar
    • RE: Bug with fractals indicator

      @l-andorrΓ  fractal indicator has a value for every candle, even if there is no arrow visible. That value will be 0, and naturally 0 is always below candle high.

      This is why the correct way to use fractal is simply with condition:
      fractal up/down != 0

      posted in Bug Reports
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 I mean the optimization algorithm in the tester, you use that?
      0_1611446659157_21ddf545-7f2f-4f48-8931-f526a8f16010-image.png

      Recovery factor = net profit / biggest drawdown

      posted in General Discussions
      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: Bug with DoubleToString

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

      Hope it works!

      posted in Bug Reports
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 the genetic algo finds the best inputs using backtest information between 2009-2015. After that, it tests if those inputs hold in the "future", 2015-2020. If forward test fails, we know the good backtest was just luck ("overfitting").

      https://en.wikipedia.org/wiki/Training,_validation,_and_test_sets

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

      @line I think youre right, it's the lot sizing. And yeah, this EA will not make profit on the ETF, withouth any modifications. The ETF probably has bigger trading costs and smaller volatility, and thus the 5-min timeframe can't be very proftable in the long run.

      posted in Tutorials by Users
      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: button problems (solucionado)

      @cesardefez add these blocks to the system. It forces the buttons to agree with the variables.
      https://fxdreema.com/shared/Bto5C2CYb

      posted in General Discussions
      roar
      roar
    • A line tool

      I made a fun little tool that creates high-low lines based on RSI, and decided to share it here in case anyone finds use for it.

      I will not bother explaining this in detail, feeling lazy lol

      https://fxdreema.com/shared/n4LXpQO1b

      0_1586528084602_07cfdf9a-7efe-4864-9744-607cfb0f821d-image.png

      posted in Tutorials by Users
      roar
      roar
    • RE: Stop Trading After Profit Reached For The Day (or Loss)

      Hi!

      This is how I would go about it:
      0_1537291249833_ea2c827b-b3e6-4ebe-abf1-7e8924ebfef6-image.png
      https://fxdreema.com/shared/Hmmb4zOfb

      Uses 1 variable that keeps track of your daily equity, and 2 constants to set the targets for daily profit and loss

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 20
    • 21
    • 7 / 21