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 2394
    • Best 420
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: I thoght it was correct, instead...what's wrong??

      Are you 100% sure the ask price never went below the open price? Your ea works tick by tick, so even 1 tick of low ask price triggers your buy.
      Remember, there is usually some slippage in the order, you don't get precisely the price you wanted (when buying the market price)

      posted in Questions & Answers
      roar
      roar
    • RE: Avarage of indicator signals to place buy/sell

      @migen
      https://fxdreema.com/shared/BNcQoJLzb
      This is how I would do it.. Hope you are comfortable with variables 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Find recent High/Low with specific conditions

      Oh, yeah, that connection is not very clear in my picture

      posted in Questions & Answers
      roar
      roar
    • RE: Find recent High/Low with specific conditions

      I'm fairly sure you can put as many spaces as you want, if its a math operation

      posted in Questions & Answers
      roar
      roar
    • RE: Find recent High/Low with specific conditions

      @drayzen oops, youre absolutely right, the IDs go in the wrong way in my example. I should sleep more 😄

      https://fxdreema.com/shared/XYqEDtP9c
      Here's the fixed blocks, but I'm sure you already got the idea.

      posted in Questions & Answers
      roar
      roar
    • RE: Find recent High/Low with specific conditions

      Hello!

      Maybe some loop works, like this:

      0_1526761048286_3d72bfc8-b88c-4cde-892b-119b4af08404-image.png

      It first looks for candle ID 1, and then compares it to ID 2 and then ID 2 to ID 3. If conditions are not met, ID 1 becomes ID 2 and the loop continues from there until it finds what it is looking for.

      Be careful though, loop like this doesn't have any "expiration", so if it doesnt find what it looks for - your metatrader crashes. Thats why I put block # 6 there, to limit the loop.

      https://fxdreema.com/shared/v3WrPoSO

      posted in Questions & Answers
      roar
      roar
    • RE: Condition for loosing trades...

      You're welcome.

      My own opinion: previous trades can't affect your future ones, they don't have any valuable information to the new trade entry.
      This is also why I don't use fixed targets, I always open and close by the chart analysis and nothing else.

      posted in Questions & Answers
      roar
      roar
    • RE: Condition for loosing trades...

      0_1526410651211_ce8c27a8-27d3-4665-a935-1488e81b2f92-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: activate a condition for four 4H candles only

      You need to learn variables, and use 2 of them:
      one variable as a trigger (for example, "trigvar=1" when activated and "trigvar=0" when deactivated)
      and other variable to keep track of time (on every bar, "barcount=barcount+1")
      To stop your process: if "trigvar=1" then check if "barcount > 4" -> if true, "trigvar=0"

      It probably looks difficult, but I trust you will find how to do it 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Problem with timestamp value input inside MT?

      You just need to have a connection to somewhere. Alone blocks don't execute.
      Just put a pass-block before or after the draw.

      posted in Questions & Answers
      roar
      roar
    • RE: How to open next order after 5 bars if there is already open order and conditions are met, so there won't be a lot of open trades???

      Sure, here's how to create the variable and how the logic goes.
      https://fxdreema.com/shared/5XfmFTFbb
      0_1525867221092_a7476f00-9078-4357-a356-1579de04d257-image.png
      0_1525867236906_e32586a5-ece3-426a-a773-74613d04db74-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to get the values sent to the broker server?

      I dont think any EA has access to the terminal behavior, I might be wrong though..

      Your problem probably is because your broker doesn't allow super-small stops - try some bigger stops, does them work?

      Another workaround would be to use virtual stops - don't tell your broker the stop levels, just use some variables and automate the closing in the EA.

      posted in Questions & Answers
      roar
      roar
    • RE: EA Conditions to fullfill in sequence

      You need a variable to remember the earlier events, lets call that track.
      0_1525791880022_73b00bd7-b38f-433b-b0ac-0a499af4ae9c-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Draw Text clean up

      This same method applies to all objects:
      0_1525783192936_c30dae35-ecfc-40a2-9c51-c44cb416a0f3-image.png

      • A = NO
      • B = YES
      • Give your object some name
      posted in Questions & Answers
      roar
      roar
    • RE: I do this, but it does not work

      Your metatrader probably doesn't use that format, "EUR/USD" - its usually "EURUSD"
      0_1525704610604_0d3f1d22-92ab-4b86-83db-119b86285663-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Here we go again. Its not just me.

      So, what is the problem here?
      I think tp=0 means no tp at all.
      Do you have any blocks controlling the exit, a time limit for example?

      posted in Questions & Answers
      roar
      roar
    • RE: Entering trades based on object on charts (lines drawn by indicator)?

      I think this will work about right:
      0_1525619319541_f43a1297-7dc9-436a-933d-c1ab96707487-image.png
      Notice the different "route" for exit - if your exit condition was after the buy, the trades would close instantly after opening (or not at all).
      https://fxdreema.com/shared/WolKfEaEc

      posted in Questions & Answers
      roar
      roar
    • RE: How to set a break even at?

      0_1525517576062_30942ac5-d3fd-4e3e-9cd8-c4db537770e2-image.png

      • This should be "lower band", yes?
      • Connect those formula blocks to something (anything), every block needs a connection, otherwise it will never run.
      • Be careful when working with both pips and price values. This formula will give you something like 0.0000123 -> you need to multiply it by 10000 to get pips.
      posted in Questions & Answers
      roar
      roar
    • RE: Simple MACD Histrogram EA isn't working

      Try working with candle id 1 instead of 0, maybe that helps.
      In my opinion, that macd arrow is probably some simple calculation anyway, so it would be easier to just work with the default MACD indicator

      posted in Questions & Answers
      roar
      roar
    • RE: Suddenly my EA stopped working...

      Does it give any errors to the journal?

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 105
    • 106
    • 107
    • 108
    • 109
    • 119
    • 120
    • 107 / 120