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: Hi guys, how do I enable two non-concurrent conditions?

      I see that you are new, so this solution with a loop and a variable might look like black magic, but here it is anyways lol:
      https://fxdreema.com/shared/ZKvsHLgYc
      0_1586954921159_9a954ec5-605a-447b-ac89-624c068889c2-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to achieve "wait" in seconds?

      I never work with time, so this is just a guess, by try this:
      https://fxdreema.com/shared/eglnRYR2c

      info:
      https://www.mql5.com/en/forum/162999
      https://www.mql5.com/en/docs/dateandtime/timecurrent

      posted in Questions & Answers
      roar
      roar
    • RE: how to set distance pip

      Easiest way is to use Envelopes indicator.

      posted in Questions & Answers
      roar
      roar
    • RE: Creating conditions based on indicators using a previous indicators data

      @xlabcapital You cant do that, but ATR 1 and 20 is pretty much the same
      0_1586857908672_3b1297fc-9a20-49c1-aba8-3f574ae53d09-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: 3rd candle of the day

      @chicrala said in 3rd candle of the day:

      Hi, how can I identify that "this is the 3rd candle of the day" to start an action (buy for example)?

      Create a variable that counts candles, reset it once each day, then check if variable == 3.

      posted in Questions & Answers
      roar
      roar
    • RE: i am new ? i want put password to my ea

      @ranjayforex I would create a list of hashes, like 100 different hashes, and those would act as "licenses" for the EA. Before the EA starts (OnInit) put a loop that compares the user-input hash to the listed hashes, and if no match is found -> terminate

      This would still allow users to share their own "passwords" to other users, but anyway I would say MQL is not the best for cryptographic purposes....

      posted in Questions & Answers
      roar
      roar
    • RE: Scam alert...!!!

      I don't really want to get involved in this dispute, but in general you should avoid these kind of risk graphs - bad trades are solved by increasing the lot size:
      0_1586708204741_b632c0de-a265-4525-baf7-4ad37112d5c9-image.png

      posted in General Discussions
      roar
      roar
    • RE: Trailing stop based on ATR

      @sammylegacy1 Hi!

      I dont know about the custom indicator, but here's how to do trailing stop in fxdreema.
      https://fxdreema.com/shared/DgGkyNU2d
      0_1586607183381_559bf350-02bf-423e-a358-517016062107-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: A line tool

      I continued this project by extrapolating the lines, allowing to compare current price to the extrapolated line.

      Why I made it so unneccessarily complex is, this way I never have to read any values from objects, everything is done mathematically. Reading values from objects is buggy as ****. Also, thinking ahead, it's easier to implement into multi-currency systems...

      https://fxdreema.com/shared/dQjckUy3b
      0_1586535570087_cf32e20a-6bac-424e-9dcf-7e53c693e927-image.png

      posted in Tutorials by Users
      roar
      roar
    • A line tool

      I made a fun little tool that creates high-low lines based on RSI, and decided to share it here in case anyone finds use for it.

      I will not bother explaining this in detail, feeling lazy lol

      https://fxdreema.com/shared/n4LXpQO1b

      0_1586528084602_07cfdf9a-7efe-4864-9744-607cfb0f821d-image.png

      posted in Tutorials by Users
      roar
      roar
    • RE: How to set group number for a group of block ?

      @migen I'd say using a variable in the group number is the best option, you will have to touch every block, though.

      Also make sure that your system is not unnecessarily big, usually you can reuse the same blocks with a loop...

      posted in Questions & Answers
      roar
      roar
    • RE: Simple moving average cross EA PLEASE HELP ME

      Put "once per bar" on top of your project, and also use candle ID 1 in the block settings. These are the basic tricks for every problem lol

      posted in Questions & Answers
      roar
      roar
    • RE: Problem selecting variables

      This mysterious bug has happened to me too. Try writing the variable into the field instead of inserting it with right-click.

      posted in Bug Reports
      roar
      roar
    • RE: how to achieve this?

      @l-andorrà @Zackry Hi!

      Its just trickery with the candle ID. Here's an example that plots the ma crossing points, hope you get the idea:
      https://fxdreema.com/shared/YndXsmKM

      posted in Questions & Answers
      roar
      roar
    • RE: MA 2 Crossover

      @rosliomar the fxdreema EAs never attach the indicators, they only work on the background. If you want to see the lines, you will have to manually add them

      posted in Questions & Answers
      roar
      roar
    • RE: Another question for real programmers.

      @l-andorrà Just use bool type in the constant
      https://docs.mql4.com/basis/types/integer/boolconst
      0_1585149950650_2957c313-3a63-41e2-819f-26c64e24beaf-image.png
      0_1585149972807_b40cf88b-5a73-4954-bcae-b5a6104001a2-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to modify one order in a block if another one hit target?

      @faiz43 You can better control those mechanics from the On Trade tab, using a suitable activation:
      0_1584720547291_7e234b3d-97f1-408c-a979-5aeff24b840c-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to modify one order in a block if another one hit target?

      @faiz43 "Check trade count == 1" and then "Once per trades" and then this "modify stops"

      posted in Questions & Answers
      roar
      roar
    • RE: Moving average levels

      @fabiobioware Envelopes. Use envelopes indicator, its the same thing but much simplier.

      posted in Questions & Answers
      roar
      roar
    • RE: Close trade only if condition is recurring

      @zaccroft does the block "no trade" solve your problem?
      Or if its a above/below condition, switch to "cross above" / "cross below"

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 60
    • 61
    • 62
    • 63
    • 64
    • 120
    • 121
    • 62 / 121