fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Gilles
    3. Posts
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 20
    • Posts 46
    • Best 2
    • Controversial 0
    • Groups 0

    Posts made by Gilles

    • fxDreema support multi-timeframe ?

      Hi everyone !
      I am currently facing an issue.
      I trade on the 1-minute timeframe but I need the SL calculation to be done from the 15-minute timeframe.

      As explained, the image below shows that I set the timeframe to 15 minutes so that the SL price is calculated using that timeframe.

      d73e8d11-2ede-4cca-95bb-27cb40e5d4e6-image.png

      Unfortunately, it seems that only the "current" parameter is being considered and the timeframe setting has no effect.

      Did I make a mistake?
      Does fxDreema support multi-timeframe functionality?
      Thank you in advance for your responses, suggestions, clarifications, etc.

      posted in Questions & Answers
      G
      Gilles
    • List of fxDreema Indicators

      Hi everyone,
      Is it possible to access the comprehensive list of indicators currently included in fxDreema along with their description/documentation?
      Thank you in advance for your response.

      posted in Questions & Answers
      G
      Gilles
    • RE: Open a position based on trend/movement.

      @jstap Is it already possible to open only one position per movement with fxDreema without my knowledge?

      posted in Questions & Answers
      G
      Gilles
    • RE: Open a position based on trend/movement.

      @jstap Here's what I tried to do with the blocks.

      https://fxdreema.com/shared/cAuM7X4ic

      posted in Questions & Answers
      G
      Gilles
    • RE: Open a position based on trend/movement.

      @jstap Let's consider the following example.
      How can I achieve this using fxDreema blocks?
      Please ๐Ÿ™‚

      if EMA[close, 50 periods] > EMA[close, 200 periods]
      then
      uptrend=true;

      elseif EMA[close, 50 periods] < EMA[close, 200 periods]
      then
      uptrend=false;
      end

      if uptrend ~= old and uptrend == true
      then
      BUY
      end

      if uptrend ~= old and uptrend == false
      then
      SELL
      end

      old = uptrend;

      posted in Questions & Answers
      G
      Gilles
    • Open a position based on trend/movement.

      Hello everyone,
      I would like to define a (bullish or bearish) movement and trigger only a single position within that movement.
      If the position is closed by SL or TP, no other position will be opened until the current movement is completed.
      The next position can only be possible in the opposite direction, at the beginning of the new movement.
      Below you will find my code to achieve this.
      How can I achieve this using fxDreema blocks?
      Thank you for your support.

      if condition 1 then
      uptrend=true;

      elseif condition 2 then
      uptrend=false;
      end

      if uptrend ~= old and uptrend == true
      then
      BUY
      end

      if uptrend ~= old and uptrend == false
      then
      SELL
      end

      old = uptrend;

      posted in Questions & Answers
      G
      Gilles
    • RE: Chart's grid highs and lows

      That's unfortunate. Thank you for the clarification.

      posted in Questions & Answers
      G
      Gilles
    • RE: Chart's grid highs and lows

      @l-andorrร  In this image, we can clearly see that the fixed scale, which adjusts to price variations over time, allows for obtaining a fixed maximum and a fixed minimum. I would like to know if FXDreema allows for retrieving this information in order to utilize it. Thank you! ๐Ÿ™‚

      21ab8561-1314-44cc-b39d-afb3323b9b46-image.png

      posted in Questions & Answers
      G
      Gilles
    • RE: Chart's grid highs and lows

      @l-andorrร  As you have probably understood, I would like to use the MT4 chart grid, in other words, its MT4 viewport. When choosing to display the MT4 grid on the chart, price intervals are indicated and change over time. These visual markers are important to me. If the time unit chosen is M1, the chart displays a certain number of candles based on the determined zoom and the size of the screen used. Well, in this display area, I would like to know if FXDreema allows for retrieving and utilizing the information displayed within this interval. I hope my explanation is clear enough. Thank you for your responses! ๐Ÿ™‚

      posted in Questions & Answers
      G
      Gilles
    • Chart's grid highs and lows

      Hi everyone,
      Is it possible to use the grid of the chart to determine the highs and lows?
      Thank you for your answers and clarifications.

      posted in Questions & Answers
      G
      Gilles
    • RE: How to define trading hours during the week?

      @Gilles On my side, I use the local time and close the positions at 9:45 PM, and it works perfectly fine, thank you.

      I have another question: Do you know how to display the remaining time of the candle?

      posted in Questions & Answers
      G
      Gilles
    • Replace website adress with mailto: adress ?

      Hi everyone, I have a question.
      Can we replace "website address" with "mailto:" in Project options --> website address?
      Does it function like an HTML link?
      Thank you ๐Ÿ™‚ !

      posted in Questions & Answers
      G
      Gilles
    • RE: Why isn't my SL reaching Break even?

      @Gilles Hi everyone, problem resolved during the day, sorry for the inconvenience regarding the break even.

      posted in Questions & Answers
      G
      Gilles
    • RE: show time to end

      @jstap For the variable T, I used "int," but I think it expects a different type.
      I'm getting the following error message:

      'T' - parameter conversion not allowed

      For the other variables, I also used "int."

      posted in Questions & Answers
      G
      Gilles
    • RE: show time to end

      @jstap Thank you for your response. However, I would need some clarification:

      Are T, P, X_OFFSET, X, Y, and CW variables of type int or double?

      posted in Questions & Answers
      G
      Gilles
    • RE: show time to end

      @jstap Thank you for your message. I copied your blocks, and I don't understand, it's not working. Do you have any ideas?

      posted in Questions & Answers
      G
      Gilles
    • Why isn't my SL reaching Break even?

      Hi everyone,
      Attached is the link to the Break Even project I am currently working on.
      The expert advisor is functioning normally, but I don't see the Stop Loss moving to break even. Could you help me identify the error?
      Please note that I have placed these elements in the "on Tick" section to comply with the instructions.

      4fe5083f-0a60-4d4f-9ecf-fc3df8730c21-23e1ddf91aa770bd94c24c3feadbfa2a1683299881-640-360-614-h264.mp4

      posted in Questions & Answers
      G
      Gilles
    • show time to end

      Hello everyone,
      Which blocks should we use to display the time remaining until the end of the current candle?
      Is there an example to understand how to achieve this?
      Thank you in advance for your response.
      Regards.

      posted in Questions & Answers
      G
      Gilles
    • RE: How to define trading hours during the week?

      @Gilles ๐Ÿ™‚

      posted in Questions & Answers
      G
      Gilles
    • How to define trading hours during the week?

      Hi everyone,
      How can I limit a trading session to specific hours, from 8:30 AM to 9:45 PM, Monday to Friday only?

      If you could provide an example to help me understand how to arrange the blocks, I would greatly appreciate it.
      Thank you very much ๐Ÿ™‚ !

      posted in Questions & Answers
      G
      Gilles
    • 1
    • 2
    • 3
    • 2 / 3