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: Fractal Creation - Errors will not compile

      @vancedavid said

      Any idea's on how to fix this last error. I just cannot see the solution?

      Its just the last check mark in block 10
      0_1614890125598_dcdf8da6-d816-4229-9aa6-31532401fb42-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Fractal Creation - Errors will not compile

      @vancedavid I spotted a couple things:

      • Your Min_CandleSize datatype is Int, not int.
      • If you use a variable in some field, you cannot tick the box to make it constant input:
        0_1614883734112_3f5c2670-61d3-42c2-814a-8fb6a3676357-image.png

      Btw, if you just want the basic fractal indicator, its available in the indicator drop-down

      posted in Questions & Answers
      roar
      roar
    • RE: MathSrand problem

      @alphaomega in your project, take profit is the average line.
      Graphical objects are sometimes buggy, though, its better to simply insert the average variable directly into the TP field.

      0_1614882949440_e271b116-5126-4737-8af3-be3ca79087aa-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Use the Balace at 10 pm the day before as variable

      @floko125 please make a shared link
      0_1614874814263_09eb1fcd-3cda-4992-b81c-cf61096e0c87-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Check Candle 1-5 if Price was higher then MA

      @gobeef you have to also change all "TRUE" values to "true" - mql5 is picky about the capitalizing there.

      posted in Questions & Answers
      roar
      roar
    • RE: Strategy Results, Good? Bad? Okay?

      @jsauter86 its not bs.

      Imagine as a simplest example: an EA that checks if today is a certain date -> then buy.
      When you run the optimizer using dates as the input parameter, your computer will surely find the best dates. The EA will look awesome in backtest, totally useless in real trading.

      Using many indicators (as we all do) to find the best dates is more complicated approach, but it has the same problem - statistical curve fitting by the optimization algorithm.

      posted in General Discussions
      roar
      roar
    • RE: Check Candle 1-5 if Price was higher then MA

      @gobeef when you copy blocks between projects, the variables dont actually copy properly to the destination. You have to declare them manually, or:

      Download the .mq5 file from my example, and then import the .mq5 to your builder. Then the variables will be declared properly.

      posted in Questions & Answers
      roar
      roar
    • RE: Problem with Delay block

      @cgargiulo70
      0_1614798400847_a85671e4-c03f-406a-b734-884851de7376-image.png

      posted in General Discussions
      roar
      roar
    • RE: Draw Arrow does not draw. Nothing ever draws

      @vancedavid use visual mode, I dont know if mt4 tester shows the objects after test.

      posted in Questions & Answers
      roar
      roar
    • RE: For each trade...check profit (unrealised) not working :(

      @eajurms by default, fxdreema EA only works with automated trades, it doesnt touch manual trades.

      Change that from Filters -> Group mode -> any trade

      posted in Questions & Answers
      roar
      roar
    • RE: Draw Arrow does not draw. Nothing ever draws

      @vancedavid it works just fine
      0_1614714314516_a6d338f1-270a-4099-8d5d-d876bccf6598-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Fibo assistance please

      @ajmd97fx all right. Candle highs and lows surely work, but I think fractals need a bit different setup.

      posted in Questions & Answers
      roar
      roar
    • RE: Does % Equity for trade size factor in leverage?

      @baccus no, but keep in mind that 1 lot means $100 000

      100% of equity on $1000 account will give 0.01 lots

      posted in Questions & Answers
      roar
      roar
    • RE: Draw Arrow Block doesn't draw arrow in ea

      @vancedavid if your tester runs open prices only, the candles have no body, and body size is always 0 pips.

      posted in Questions & Answers
      roar
      roar
    • RE: Fibo assistance please

      @ajmd97fx did you test your example?

      posted in Questions & Answers
      roar
      roar
    • RE: Resources insert indicator

      @skauch youre trying to sell an EA that requires external indicator to work? If someone buys your EA but they dont have the same indicator, they cannot do anything. You see the problem?

      posted in General Discussions
      roar
      roar
    • RE: Fibo assistance please

      @jsauter86 the funny thing with fractals is, the indicator has a value on every candle, even when there is no arrow. The value is infinite in those cases.

      So, to get the actual fractal arrows, we need to check that fractal value is the same as candle high/low value (because the actual arrows will be there).

      Here's one solution:
      https://fxdreema.com/shared/6Yh1m2vJd

      posted in Questions & Answers
      roar
      roar
    • RE: Plot MACD swings on chart

      I might as well share more, now that I started.
      https://fxdreema.com/shared/z6zjcToLb

      I used those swings to create statistics for each hour of the day, as we know volatility is different at certain periods of the day. I used some data filters to calculate 3 expected swing sizes for each hour: pessimist case, average case, optimist case.

      Now that the EA knows the expected swings for each hour (analyzed from 10 past days), we can plot the estimate when MACD cross happens:
      0_1614474994844_8714cd42-4550-4986-a93e-51e01b0bff65-image.png

      This EA doesnt have any mechanism to predict the direction, it only shows how big the the swing is most likely to be, if it happens.

      TLDR: This is just an overcomplicated ATR indicator, lol

      posted in Tutorials by Users
      roar
      roar
    • Plot MACD swings on chart

      Here's a nifty little framework for plotting the MACD swings (or OsMA swings to be precise) on the price chart, like zig zag. A starting point for a larger project of mine, thought I'd share this to anyone interested... 💁‍♂️

      https://fxdreema.com/shared/5YrnpeX9
      0_1614460632352_356bb579-f7ad-4cd9-ad65-a937c22dcb91-image.png

      posted in Tutorials by Users
      roar
      roar
    • RE: Strategy with 60% winrate with 1:1.5 risk/reward

      @nandu here's your strat. Its not going to make you millionaire 😞

      The problem is, you have chosen a very long and stable down trend as your example - literally ANY selling strategy makes money in that situation. In reality, the market isnt always trending so nicely.

      https://fxdreema.com/shared/hVZSGCXje
      0_1614456408707_52af7fef-85f2-4455-94b7-5142a65c40b0-image.png

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 23
    • 24
    • 25
    • 26
    • 27
    • 120
    • 121
    • 25 / 121