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

      @traderea6 I think the same.

      Its a shame so many new traders are guided towards mt4, as mt5 offers far better environment for developing EAs.

      posted in Questions & Answers
      roar
      roar
    • RE: macd histogram EA

      @ebony this is your blue circle:
      0_1588871229703_0bd0335c-f7e0-4be9-ac38-6369d61b6522-image.png

      This is your red circle:
      0_1588871255428_172c8031-87ce-4f36-bbb9-f66f27604ab8-image.png
      https://fxdreema.com/shared/4wkGLBjRc

      posted in Questions & Answers
      roar
      roar
    • RE: How to set condition - 5 Variables values equal 7

      @migen take the darker condition block and do this:
      0_1589528313502_fa7ebbb1-591d-4108-b6cb-0226da80d5f0-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Rsi Divergence

      @pippusher618 here's an example project:
      https://fxdreema.com/shared/2HpRtQ8Pb

      However, an EA will sometimes find divergences in unexpected places, because you only see the profitable ones.

      posted in Questions & Answers
      roar
      roar
    • RE: add ATR on TP or SL

      @darazarbaf yes, use the Formula block for the calculation

      posted in Questions & Answers
      roar
      roar
    • RE: How to write condition OR with "darker condition block"

      @migen This should work
      (D1 > D11 || D1 == 7) && (D2 > D22 || D2==7) && (D3 > D33 || D3==7)
      0_1591255162481_b1a3f0d4-d3c1-4b38-adf9-52e80fcc6629-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to write condition OR with "darker condition block"

      @migen I'm not sure, but generally a logical TRUE is equal to numeric 1. So you could try just replacing && with + sign:
      variable = (D1 > D11 || D1 == 7) + (D2 > D22 || D2==7) + (D3 > D33 || D3==7)

      posted in Questions & Answers
      roar
      roar
    • RE: Indicators inputs are appearing without indicating that

      These tick marks makes the values appear. Untick them. Also, the brown things are constants, not variables. You cant change constants in "modify variables".
      0_1591436624136_793197ab-1194-4695-a60a-f866a589fec8-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: help with my EA please

      @abderrahman this is impossible. A straight line balance always means that the system works only on history data, not in future.
      You cant optimize this on other pairs, you cant trade this, not even on EURUSD. Its best to move on and find a more realistic strategy, a strategy that doesn't require 100% winning trades.

      You probably wont believe me, I'm just trying to save you some time..

      posted in Questions & Answers
      roar
      roar
    • RE: help with my EA please

      @abderrahman I hope you succeed, however unlikely it is 🙂
      Please consider the short backtest period as well. I would bet any amount of money that this same EA will erase the account if tested on EURUSD from 2019.01.01 to today.

      posted in Questions & Answers
      roar
      roar
    • RE: making a trade immediately in the first second after running EA

      @rajab you are asking your EA to trade if CCI is above 65, and also trade if CCI is below 65.

      Of course it will trade immediately, one of the conditions is always true.

      posted in Questions & Answers
      roar
      roar
    • RE: How to get only the MACD histogram?

      @sonixhd3 I think this is what you need:
      0_1594656627019_c65187ad-ed56-4821-b9c7-548e54ce83c4-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to get only the MACD histogram?

      @sonixhd3 the histogram is "main line" in fxdreema. You can also set "cross above" instead of "is above", as is in my picture.

      posted in Questions & Answers
      roar
      roar
    • RE: Hot Keys for buying?

      @dan-2 On Chart tab will get you started, I don't know any more about it
      0_1594662648066_5978fd97-135c-4c74-a63d-d9187967f20b-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Need help MACD EA wont work

      @sonixhd3 don't see the error, but let me build you a more optimized version, maybe it works

      posted in Questions & Answers
      roar
      roar
    • RE: Need help MACD EA wont work

      Here: https://fxdreema.com/shared/Zfrd2IUBd

      Tips:

      • you dont need group numbers if you have only one entry logic for a direction (sell or buy)
      • you can "set current timeframe" in one block above the others
      • define constants for macd input parameters, so you can change them for all blocks at once:
        0_1594739930437_7b20ffd2-1074-46a7-bb78-f54192b7ab9f-image.png
      • (apply the constant by right-clicking, or just type its name in the field)
        0_1594739979638_93d13d61-8fa4-4005-a1a8-4b67a6a568ff-image.png
      posted in Questions & Answers
      roar
      roar
    • RE: Need help MACD EA wont work

      @sonixhd3 to speed up optimization, you can use open prices modelling, because your system is based on "once per bar" logic. Also remember to use genetic algorithm.

      My thoughts on the system itself:

      • Trading 1-minute chart will be tough. Your win-loss ratio will be very close to 50:50, maybe 51:49, but commissions will take a big piece from both trades, wins and loses. I'd consider M5 or even M30. I target around 200-500 trades per year (on netting account).

      • Also, MACD system could use some volatility filtering, for example ADX. Myself I prefer to compare the ratio between 144-ATR and 13-ATR, but thats bit more technical to set up and read..
        0_1594837381299_c136df91-1e5e-4da6-b089-045eecfc2f12-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Need help MACD EA wont work

      @sonixhd3 open the navigator pane in mt5 and just drag and drop indicators in the same window. Then go to indicator properties and set scale to "Inherit scale".
      This is just a visual thing for planning the EA, there is no technical difference whether the indicators are in same window or separate. Fxdreema-made EA will always draw the indicators in separate windows.

      Hope you arent angry because of my beginner questions.

      Its no problem lol

      posted in Questions & Answers
      roar
      roar
    • RE: How to set/check a time stamp or candle ID

      @ikarus_ said

      Just one thing from the moment the candle close was above the tenkan sen Line it should always close above.

      So the condition is "each of last 30 candles are above tenkan-sen"?
      Then use the loop to try and find a candle that doesnt meet the condition -> now set your tracking variable to FALSE. The logic flow continues to next stage only if the variable keeps its TRUE value throughout the whole loop. Hope you get what I mean...

      Also the Loop conditions have to always be on Tick right?

      Not necessary.. As long as you can activate the loop (using OnTick, OnTrade, OnInit, whatever), it will surely do its thing.

      posted in Questions & Answers
      roar
      roar
    • RE: How to set/check a time stamp or candle ID

      @ikarus_ Your example is missing all variables - you need to declare them yourself, exactly as is shown in my pictures above.

      I don't know any great learning source, my style is to try and fail, learn that way...
      Well, Miro has created a loop tutorial but that uses the actual, official loop block, I didnt.
      http://fxdreema.com/forum/topic/4510/tutorial-loop-advanced-find-and-save-specific-value-from-indicator-history

      By the way, you can reset your block IDs from "Project Options" 🙂

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 21
    • 22
    • 14 / 22