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: "Loop pass" until a condition is satisfied

      https://fxdreema.com/shared/pIQG0DXvd

      I didn't test this, but I think it should work

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @trbedell Hi! Try 5-minute timeframe đŸ™‚

      posted in Tutorials by Users
      roar
      roar
    • RE: Here, take this profitable ea

      Finally got around making the .ex4 version. I hope this will inspire someone to better develop their own systems.

      Please be careful if you use this, it is not very sophisticated even though it looks a mess!
      https://fxdreema.com/shared/aBHjbJjN
      0_1560891000683_Roar v1.1.ex4

      posted in Tutorials by Users
      roar
      roar
    • RE: Lost editing options, private messages and other stuff

      @l-andorrĂ  Works fine for me. Try some other browser, maybe thats the problem

      posted in General Discussions
      roar
      roar
    • RE: How to make that Close Condition !

      @l-andorrĂ  I wish I was a real programmer lol. I don't even know the basics of mql.
      I just copy from mql4 articles, try and fail and try again until I get my result.
      Thats the beauty of this program, you can teach yourself

      posted in Questions & Answers
      roar
      roar
    • RE: FxDreema is awesome!

      Complete running EA? Well here's my 500 best ones, that I have decided to save: 0_1560874029052_49d76c91-db6b-4f55-b01d-7aaaa4e7e04d-image.png

      I understand the admin, too, he probably wants something else for his life than just giving 24/7 technical support for years.

      In my opinion, if you really need your projects pre-chewed and spoon-fed for you, you lack the skill and passion required to succeed in the first place. I'm sorry.

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

      Nothing on MyFxbook yet

      I try to avoid custom indicators, they are a pain, especially with mt5 đŸ˜„
      Might give Keltner a try some time.
      However, I like the standard deviation as it has some fundamental statistical reasoning behind it...

      posted in Tutorials by Users
      roar
      roar
    • RE: How to make that Close Condition !
      • Put all trades into an array
      • Sort the array
      • Pick the biggest loser
      • Start summing up the biggest winners on the array, using a loop
      • When ProfitSum > Loss
        -> "Close most profitable trade" i times. You get i from the previous loop
        -> "Close least profitable trade"

      Here's the project, I'm sure there is still some bugs left, but close enough lol:
      https://fxdreema.com/shared/Em63v0Sac
      0_1560683328324_b110e89b-1230-47cf-acb5-f83903b428f9-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      0_1560627106750_9de0fa9c-5648-4bbe-af3b-c7978efeac34-image.png

      Still working, wtf.
      I updated the shared project, found one more mistake in it (buys and sells were not symmetrical).
      Also added lots relative to balance, so things can get exponential. Proper risk management is for pussies anyway, right?
      0_1560627495749_c19663ba-ea06-44e1-99fb-f0fddbb7b945-image.png

      I guess I must give this system some live time...
      https://fxdreema.com/shared/pTIbLpWob

      posted in Tutorials by Users
      roar
      roar
    • RE: can I Add Save Any Number In Memory EA ?

      Hi!

      This simple example should give the basic idea:
      https://fxdreema.com/shared/EraTbqmde
      0_1554995992028_b6c68dad-9dfa-440a-9863-c1a17bd32bed-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: There Seems To be a bug

      You are using the wrong tab, "on Init"
      Use "on Tick", that is meant for the continuous process.

      "on Init" only executes the code once, at the start. Its useful for doing some calculations and declarations that don't need to be done again on every new tick, (thats "on Tick").

      0_1554827450558_b966a476-d4ab-4a2b-9c33-45638ac1147f-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Price X Indicator

      @7434be
      Correct, the block passes immediately.
      ID 0 is set by default. It may work in your project as is, but if you start seeing some weird trades, try setting ID 1.

      There are many topics in this forum regarding the ID setting, use the search for that đŸ˜‰

      posted in Questions & Answers
      roar
      roar
    • RE: What Indicators Can You Use with the Price X Indicator

      @7434be
      You can use any of the indicators that are posted in the main window: moving average, ichimoku, bollinger bands, envelopes, PSAR, etc.

      posted in Questions & Answers
      roar
      roar
    • RE: Price X Indicator

      @7434be
      Well, all candles have only 4 points: open, high, low, and close.
      Close doesn't necessarily mean history, it is also the most current reading.

      In fxdreema we control the time aspect with candle ID.
      ID 0 = the current candle, that is constantly changing
      ID 1 = the first completed candle
      ID 2 = the second completed candle
      etc

      posted in Questions & Answers
      roar
      roar
    • RE: Data control transaction time

      I have not done it myself, but maybe this will point you in the right direction:
      https://fxdreema.com/forum/topic/5866/finally-integration-of-news-filter-mt4-only

      posted in Questions & Answers
      roar
      roar
    • RE: need help

      @josh01
      It's to filter how much "above" or "below" the readings are. For MACD you can put something like 0.00005 to filter out flat periods.

      Setting it to 0 means no filtering, I suppose

      posted in Questions & Answers
      roar
      roar
    • RE: need help

      You can use this
      0_1554558299016_552199ab-7e64-4b42-baf0-b240596b1e12-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Volume Indicator

      @vnpython-0
      I don't use volume indicators. In my opinion, volume is a bit tricky thing, as you can only see the volume of your broker, not the actual forex market.
      AO and Fisher don't take volume into calculation

      posted in Questions & Answers
      roar
      roar
    • RE: Volume Indicator

      @7434be
      It seems the mt4 version doesn't have volume indicator.
      However, you can use the candle data, it has the exact same information:
      0_1554545364467_55c5b5c6-8fad-49e8-80e5-c8b0fd8ec363-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Volume Indicator

      This?
      0_1554537681595_d40bd187-404a-4256-abe0-562986ff5843-image.png

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 94
    • 95
    • 96
    • 97
    • 98
    • 120
    • 121
    • 96 / 121