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 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Best posts made by 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
    • RE: Too many requests bug

      Slightly off topic: if you have more than 1000 blocks, I'm smelling some kind of repetition - you could probably decrease your project size by using arrays, loops and other higher level stuff

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

      @seb-0 said

      When you are saying "the Sp500 and my EA are not correlated", do you mean 1.the behave of my EA on the Sp500 is uncorrelated to 2.the behave of my EA on any other instrument ?
      Thank you tho

      I meant just going long on sp500 and then using your EA to trade forex, for example. It is unlikely that a negative day on sp500 always happens same time as negative day with your EA trading EURUSD, for example. The return series are uncorrelated. In theory, having many profitable but uncorrelated investments will smooth out negative shokcs in the whole portfolio, giving you better sharpe ratio.

      posted in General Discussions
      roar
      roar
    • RE: How to create sl under bollingerband

      What do you mean, 3 trades? I havent used the % risk in a long time, should look into it...

      posted in Questions & Answers
      roar
      roar
    • RE: Is the admin modifying the code on variables?

      @l-andorrà can you elaborate, how the loop block uses local time?
      In your example, you just check that the candle ID is 0. Candles are always server time...
      Can you test by printing out the "Close Time (UNIX)" variable from each closed trade, so we see what timezone those values will be?
      I would test myself, but I have the same timezone as my broker..

      6d7fa763-8402-45c4-8d86-6d52207eec0d-image.png

      posted in Bug Reports
      roar
      roar
    • RE: Where do I start to learn this software?

      @morad-dezhfard I would just start building, putting random blocks together and see what happens.

      But there is also some documentation, youtube channels... @l-andorrà might also help you

      posted in General Discussions
      roar
      roar
    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      So you can view the project in the fxdreema builder? You know, you could just open 2 browser tabs with fxdreema builder, and then copy-paste the blocks. Probably still gives some errors but they are easy to solve.

      posted in Questions & Answers
      roar
      roar
    • RE: Is the admin modifying the code on variables?

      @l-andorrà you dont have to guess, just look: get the close time of that order, put it in a variable and see what the value is

      a621ce9c-d44c-4aed-a0ff-136b72a5df8d-image.png

      posted in Bug Reports
      roar
      roar
    • RE: candles count

      Do it like this. The custom code block doesnt do anything if you dont save the result.

      Oh, and dont put semicolon in this case.

      image.png

      posted in General Discussions
      roar
      roar
    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      You can build in both mql4 and mql5. There is an option to choose mql5 when you start a new project

      posted in Questions & Answers
      roar
      roar
    • RE: NOT WORKING

      If ZigZag indicator had a low at candle ID 1, the low would be printed to the candle low 1.
      Candle close 1 is never below candle low 1, and close 1 never crosses below candle low 1.

      posted in Bug Reports
      roar
      roar
    • RE: Protection EAs

      @sktsec well its the general section, maybe its fine to ask such a thing.

      But: EAs are run locally, the source code (the strategy) will never reach the broker. And even if the broker gets the source code, 99.99999% of EAs are pure garbage. No broker in the world can afford to hire 10,000 developers and financial analysts to go through the millions of EAs, finding the remotely good ones. It will never be good business for the broker.

      posted in General Discussions
      roar
      roar
    • RE: what option can use it if i want create order on chart1 create in the same time on chart2?

      Use the symbol parameter:
      0_1549292946090_c5277863-eca6-4004-8628-624b09ed4b38-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: All Blocks Resized + Lost All Connections

      @fxDreema thank you!

      posted in Bug Reports
      roar
      roar
    • RE: Backtesting, lets talk about it!

      @TipsyWisdom said

      ah ok, accounting for what has been said so far, I could also put all closing conditions, under a once per minute and it would also solve all this?

      Yes, it helps. Basically, if you do your trading actions on open/close prices, everything is fine because metatrader usually has the open & close prices for every candle. Problems arise the moment you make trading actions at any fixed level (pending order, fixed SL, fixed TP, trailing stop) because metatrader might not have data exactly for the level you want.

      posted in General Discussions
      roar
      roar
    • RE: what option can use it if i want create order on chart1 create in the same time on chart2?

      @moon
      Honestly, I don't know with mt4. With mt5 you don't have to.

      posted in Questions & Answers
      roar
      roar
    • RE: All Blocks Resized + Lost All Connections

      @Mantadiver you have 10000 unique blocks without any pattern among the blocks?

      If not, I'm willing to bet you can reduce at least 70% with some new structuring. You up for it? 😉

      posted in Bug Reports
      roar
      roar
    • RE: Profitable test results on Falcon and Condor, and forward testing looking good

      Let me guess: the dynamic TP is the one factor that is utmost important for the EA. The moment you test using fixed stops, the EA plummets?

      posted in General Discussions
      roar
      roar
    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      @spicynote
      Starting a new project:
      0_1549296362338_f6912d48-be68-4a0b-82a9-b46fc23bf860-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: candle parameter repeats same sub parameter ?

      Those price constants are determined by mql5 themselves: https://www.mql5.com/en/docs/constants/indicatorconstants/prices

      "Average" might not be the optimal term there, but the calculation is correct nevertheless

      image.png

      posted in Bug Reports
      roar
      roar
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 21
    • 22
    • 8 / 22