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: Store Trade Targets such as TP1, TP2, etc. *** SOLVED ***

      @trader-philipps I try to avoid them as well, but in this case it could be the most straightforward solution...
      There's that name contains field, you could put your order ID there.
      0_1580380393318_39e2b5df-ad33-47f4-a634-e92f7396dcad-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Lot Size Fibonacci

      @cheaponreay01 Make these variables:
      0_1580642012302_485d6abc-4689-431c-aa40-f9cf621882fe-image.png
      Now you can generate fibo numbers with this piece:
      0_1580642054729_9dfc1c9d-d881-4a07-94c9-d23aa0562a17-image.png
      https://fxdreema.com/shared/pS0K9GwD

      posted in Questions & Answers
      roar
      roar
    • RE: Lot Size Fibonacci

      @l-andorrĂ  said in Lot Size Fibonacci:

      Ok. Now I catch it. But why calculating it every 3 ticks?

      He wanted increase every 3 trades. Note that the tick filter doesn't count each "market tick", because it is not on top.
      It only counts when the block is able to run its code

      posted in Questions & Answers
      roar
      roar
    • RE: How to validate and reset conditions?

      @traderline So the time between 2 condition passes must be less than 6 candles?

      posted in Questions & Answers
      roar
      roar
    • RE: close all when total profits reach

      @trader-philipps just to illustrate where the "* 1 usd" will come into play, and that there you can also change the dollar amount to "OrdersTotal() * 2", for example.

      posted in Questions & Answers
      roar
      roar
    • RE: Open and Close on Crossing of Level Williams%R

      @kriordan By default, the indicators use ID 0 values - those change as the candle develops, and thus you cant always see the cross in the final value.

      Its usually best to use candle ID 1 on all cross conditions. You can find the ID setting from the "More settings" button.

      posted in Questions & Answers
      roar
      roar
    • RE: How can I add a specific level to the moving average at fxdreema ?

      @khalids222 You want to check if candle crosses 10-MA?
      Don't use candle body size, or candle total size.
      Those are sizes, not levels.

      If you want to take action when a candle touches moving average, a solution is to use two conditions:

      if candle open > MA, then
      if candle close < MA
      -> take action

      another case:
      if candle open < MA, then
      if candle close > MA
      -> take action

      posted in Questions & Answers
      roar
      roar
    • RE: Candle Body Properties

      @titangeorge This is pretty much how I would do it

      posted in Questions & Answers
      roar
      roar
    • RE: How to space out Trades in a Group

      @yarzu25 Use a counter block right before opening your trade. This opens a trade on every 3rd candle:
      0_1582832048557_881bb024-49be-4169-9fc2-02854d7cb334-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Why doesn't my EA place trades when i use a negative (-) value for the MA shift

      @fxgjg Period doesnt matter, you must understand how the indicators are updated to the chart. Your EA is trying to make the comparison before the data is there (at current candle time):
      0_1583113760962_b9c75570-6716-4eb1-ad70-3f0f17fed5c6-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Get the balance from the history tab ?

      @trader-philipps Oh, right, OrdersHistoryTotal() is the way to go here!

      I was thinking about the total lifetime profit so that he could put AccountBalance() to OnInit tab and then run it again in OnTick to get the difference

      posted in Questions & Answers
      roar
      roar
    • RE: volatility fall

      I dont speak elvish, but I think the RSI and stochastics indicators are very close to what is pursued here

      posted in Questions & Answers
      roar
      roar
    • RE: Plot horizontal line in specific value.

      You must select a trade before reading its properties. So put the "for each trade" block before drawing the line.

      posted in Questions & Answers
      roar
      roar
    • RE: spread format

      Put the spread into a comment block and see what it outputs

      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: Obtaining 200 MA of OBV indicator

      @leventecsibi here:
      https://fxdreema.com/shared/yZovgxaae

      It calculates the average for close prices, you can change the indicator to your liking, just remember to set the candle id and adjust like I did.

      This is not the best solution, though, because on every new bar, the EA must calculate all 200 values again and again. If you want to get more efficient, learn arrays.

      posted in Questions & Answers
      roar
      roar
    • RE: Problem - Modify Stop to break even based on ATR

      That pips away block always gives problems lol đŸ˜„

      Here's how to do it without the troublemaker:
      https://fxdreema.com/shared/lmSgKgfhb

      This also looks a bit like trailing stop, that block could be 3rd option..

      posted in Questions & Answers
      roar
      roar
    • RE: HOW TO USE ATR TO SET STOP LOSS? :-) Stay safe peeps!

      @nico1397 open the adjust box and type this:

      *1.5

      posted in Questions & Answers
      roar
      roar
    • RE: MQ4 EA -> MQ5

      @cbot-0 just try it, 99% of the blocks copy without any error

      posted in Questions & Answers
      roar
      roar
    • RE: 3 questions about EA

      Take this EA:
      https://fxdreema.com/shared/hCsoFD9xb
      0_1588191507825_14350155-f3e6-44d0-9fee-a898e1ee9334-image.png
      I put it into a chart, it opened a trade.
      Then I closed the chart, closed mt4, and then put the EA on again.
      It does not open any new trades.
      So the conclusion is that the EA does find its earlier trades
      0_1588191614196_17dde16b-f47b-46d4-ae21-2f59addd65a0-image.png

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