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: Grids

      https://fxdreema.com/shared/JMTGEGlMd

      Basically this

      posted in Questions & Answers
      roar
      roar
    • RE: Trying to calculate the distance in pips between Candle Open and MA

      Why do you need to convert the distance into pips? The SL selection supports many other number types too, a price level for example.

      posted in Questions & Answers
      roar
      roar
    • RE: Compilation errors - '::' - syntax error

      Its a bug in the custom indicators model. You can try to workaround by setting datatype int for the trend method setting.

      image.png

      posted in Questions & Answers
      roar
      roar
    • RE: add immediately H-Line

      Maybe the chart is just not updating the results.

      Put ChartRedraw(); in a custom mql block.

      posted in Questions & Answers
      roar
      roar
    • RE: News during Backtest

      Hi!

      I processed the csv file in a custom indicator project, but trying to move the same code to fxdreema causes some weird problems. I think fxdreema cannot handle such big arrays, it needs to be constructed in some other way...

      Maybe someone finds the indicator format useful. I will try to better integrate this to fxdreema at some point...

      I used the file "All news events 2007-01-01 thru 2023-12-31 timestamped UTC time -- sorted by date, time.csv", renamed to "news.csv" and moved to the Common folder.
      f7794502-55de-48a1-9348-078c51cbf780-image.png
      newsread.mq5
      newsread.ex5

      posted in Questions & Answers
      roar
      roar
    • RE: News during Backtest

      @Archer glad it works. Currently the indicator filters for USD and the margin and profit currency of current pair. These filters are on line 75, you can add more currencies similar to the "USD" part

      43845700-61dc-43c0-9cb0-b2cea5064487-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: News during Backtest

      I'm not sure that works, it would be better like this

      image.png
      newsfilter.mq5

      posted in Questions & Answers
      roar
      roar
    • RE: News during Backtest

      Reminds me of this lol. I agree with Tom here - hard coded time switches are a pain
      https://youtu.be/-5wpm-gesOY?si=RKike151oWm5mGAK

      posted in Questions & Answers
      roar
      roar
    • RE: Total profit reduces by x % then close everything.

      I modified it to work with profit, which, I think, you wanted in the first place
      here: https://fxdreema.com/shared/c2mQcANde

      posted in Questions & Answers
      roar
      roar
    • RE: Help with finding the angle/rate of change of an indicator

      @rmfletcher here's a shortcut. I read this as "current MACD is below last MACD even when its inflated 5%"
      0_1611778845104_7e18f446-5112-411c-8495-66c084a89dfb-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Break even difference

      @ekanters ok. I dont use that block myself, I find using simple true/false variables are more error-proof.

      Maybe that block inadvertently acts as a loop breaker, and since there is no reason to execute it on every loop iteration anyway, you should put the "Turn OFF blocks" after your loop (the yellow output).

      This is a valid bug for sure, but should be easy to avoid.

      posted in Questions & Answers
      roar
      roar
    • RE: How to delete comments from the chart when EA is removed?

      @ProteinX if the comments are actual comments (done with Comment() function) you need to replace them by placing this to custom mql block:

      Comment("");

      For all objects, you can do this in custom mql block:

      ObjectsDeleteAll(0);

      posted in Questions & Answers
      roar
      roar
    • RE: How to delete comments from the chart when EA is removed?

      @Youngtreptrader here
      https://fxdreema.com/shared/iPR1w9W8

      posted in Questions & Answers
      roar
      roar
    • RE: PROYECTO SAMO PRO 1.0 desarrollado en un 80% con fxdreema

      @josecortesllobat
      Well, those numbers can be fixed by using smaller lot size. What concerns me, though, is the profit curve. As you said, majority of trades are loses and they are covered with rare big wins. There is a very high probability that the strategy tester is too optimistic with the trading costs - those small losses can actually be 2-10x bigger, making losses too big to be covered with those wins.
      Later in the video the tester reaches ridiculous numbers, which somewhat confirms my doubts.
      Youtube is not a very good place to find actual knowledge.
      0_1578493592035_50a964ba-219d-4bcf-ab0d-923075b67ffe-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Condition Bulls and Bear Power indicator

      Bear Power and Bull Powe are the distance between candle and MA.
      Bear uses candle low, bull uses candle high. Bull power will be greater when candles are above MA, bear will be greater when candles are below MA.

      In essence, bear/bull power is the MACD without any smoothing.

      posted in Questions & Answers
      roar
      roar
    • RE: I'm getting frustrated, I need to draw the bos and choch in my graph, does anyone have that code and can you share it please?

      @DragonZueloTrends what are "correct" bos and choch? You ask that question from a million traders, you get a million different answers.

      Its totally subjective, and thus not a good basis for trading strategy imo.

      posted in Questions & Answers
      roar
      roar
    • RE: To use Events tabs.

      @kiwi789 I think theyre pretty straightforward:

      • Init: this happens once, when the EA is loaded onto a chart
      • Timer: this happens at regular time intervals (set by you)
      • Tick: this happens at every tick (price update)
      • Trade: this happens when there's some trade action
      • Chart: this happens when there's some user input on the chart
      • Deinit: this happens when the EA is removed from the chart
      posted in Questions & Answers
      roar
      roar
    • RE: Change a Timeframe Variable Using Modify Variables

      @jed711 think of enumerations like integers with some text label on top of it. In fxdreema the dropdown selection should be numeric or code input.

      posted in Questions & Answers
      roar
      roar
    • RE: All Comment add on the chart ?

      @ItzShahzad-X look at your Objects list in MT4 - you will see that technically its just a bunch of label objects with a background rectangle label.

      You could do the same with fxdreema block draw text by x and y coordinates, but it takes a lot of time. Faster method is building the graphical panel using custom mql4 code in Metaeditor, and then copy-paste that code into fxdreema custom code block.

      9d0a24a1-0e56-4df7-ab2d-79ee33ac78d6-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: custom function

      @alexitoeve50 you need to define your function in https://fxdreema.com/studio. No need to make any custom block in the studio, just add the function to the list here.

      6536d089-9b88-4e6d-9623-f36d4df4ed3f-image.png

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 18
    • 19
    • 20
    • 21
    • 22
    • 21 / 22