fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. PhiLykia
    3. Posts
    P
    • Profile
    • Following 1
    • Followers 13
    • Topics 4
    • Posts 74
    • Best 11
    • Controversial 0
    • Groups 0

    Posts made by PhiLykia

    • RE: morning and evening start

      I made all the candle templates, here:

      https://fxdreema.com/shared/fkB9cvcZd

      posted in Questions & Answers
      P
      PhiLykia
    • RE: TP change

      If you use TP as a variable inside the position, the change in TP before the position is closed covers all.

      If you want to change the TP of a certain part, you can separate it by grouping.

      another method is to use the "modify stops" block.

      posted in Questions & Answers
      P
      PhiLykia
    • RE: How to use the If Condition for Lines?

      hi, Although it is not right for me to comment in front of other friendsv, If the object is added to the chart in case of different conditions, you can create a condition with this condition option.

      image.png

      There are many examples and explanations in the forum;
      https://fxdreema.com/forum/topic/4209/tutorial-07-read-prices-from-indicator-objects/2?_=1684988316098

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Check consecutive losses

      Hi, The looses_count variable is zero when the EA is first run. your condition in the first block is not met.

      image.png

      posted in Questions & Answers
      P
      PhiLykia
    • RE: How to take profit using indicator

      I gave as an example, an example of closure using indicator, you edit condition .

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Canceling Grid lines.

      @Botmagics said in Canceling Grid lines.:
      I am trying to stop the EA from replacing the triggered grid lines. So if I see a dump coming in I drop the sell grid on the chart but after the grids are hit they are replaced and the EA starts tp

      I understood that you are doing these manually, then why are you installing a bot?

      If you tell us what you want to do end to end bullet bullet we will try to help.

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Continue Trade till opposite signal

      @forexbob-0 https://fxdreema.com/shared/3AxU52tkc

      As long as candle close > position open price in block 110, that is, as long as you are in the buying direction, it opens the new position in the same direction in the pip intervals you will give in the next block (Grid System)

      posted in Questions & Answers
      P
      PhiLykia
    • RE: How to take profit using indicator

      https://fxdreema.com/shared/xCvVC5Kgc

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Check consecutive losses

      @alok https://fxdreema.com/shared/4hw3rF8J

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Indicator one buffer for one line with 2 color

      Set the "Trace" box for the buffer you want to check. You can develop a condition based on the output data.

      image.png

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Indicator one buffer for one line with 2 color

      @Rinaldoa70 In single buffer outputs, color changes are made by comparing x number of previous candles. Cadle Close1>Candle Close2 gets a rising color.

      If we examine the code, for example:

        {
           if(ShowInColor && moving[shift-1] != EMPTY_VALUE)
           {
           trend[shift] = trend[shift-1];
           if(moving[shift] > moving[shift-1]) trend[shift] = 1;
           if(moving[shift] < moving[shift-1]) trend[shift] = 2;   
           }    
           else trend[shift] = 0; 
        }
      

      if (moving[shift] > moving[shift-1]) trend[shift] = 1;: If the moving value on the current bar is greater than the moving value on the previous bar, it assigns a value of 1 to the current shift index of the trend sequence. This represents an uptrend.

      if (moving[shift] < moving[shift-1]) trend[shift] = 2;: If the moving value on the current bar is less than the moving value on the previous bar, it assigns a value of 2 to the current shift index of the trend sequence. This represents a downtrend.

      posted in Questions & Answers
      P
      PhiLykia
    • RE: How to get highest and lowest price based on candle closure for specific time period

      @Yesthatguy https://fxdreema.com/shared/LFjFPQi4e

      posted in Questions & Answers
      P
      PhiLykia
    • RE: This EA placing orders but not working properly,,,,WHy,??

      @BaronvonLimbourgh hi, you can actually create any strategy as long as fxdreema 4 supports the transaction. All you have to do is set your mind free.

      this is the strategy you describe (which I understand).

      https://fxdreema.com/shared/j1ArbYSse

      It adds the opening price of each opened position and divides it by the number of positions to create a take profit variable.

      A reverse (sell) position flow should be added to this strategy and alternative solutions should be produced for the open positions to be reversed. My suggestion is to manage it with a hedging system.

      Let's work on it a little more, there is light here. 🙂

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Custom EA needed

      Hi, what is the strategy, you can wright it, any of us can help you

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Candle Patterns logic

      @Nathan2018 @tec-nacks https://fxdreema.com/shared/yMrG9iJMd

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Grid strategy with no martingale

      would you please examine: https://fxdreema.com/shared/GxHkrL0Cc

      posted in Questions & Answers
      P
      PhiLykia
    • RE: singal from trading view to mt5

      @danyz1989 (it doesn't matter though. pineconnector runs a pinescript.) magic number ok, so group name/number, does it match? Did you sync using "strategy.group()" included in Pinescript?

      // Open Order
      if condition
      strategy.entry("Buy", strategy.long)
      if bar_index % 2 == 0
      strategy.group("Buy", group1) // Add Group 1
      else
      strategy.group("Buy", group2) // Add Group 2

      posted in Questions & Answers
      P
      PhiLykia
    • RE: Buy now keeps taking the same trade twice

      @boardr8901 instead of setting it to false when you open a position, manage it with the "No position/trade" box
      or if you have to do it with this method, I recommend you to manage it with Turn On/Off instead of boollean comparison.

      posted in Questions & Answers
      P
      PhiLykia
    • RE: singal from trading view to mt5

      @danyz1989 In this case, should we understand that you have made group mappings between trading's Pine script and the EA you created in fxdreema?

      The pine script that I know does not have magic number and group matching, why don't you aim to ensure integrity by taking your signal code in the pine script to the ontick tab?

      posted in Questions & Answers
      P
      PhiLykia
    • RE: singal from trading view to mt5

      @danyz1989 You said, "...EA from fxdreema it doesnt detects" the problem must be in the onTick field of trading signals, or is the ontick field empty as in the example you shared?

      posted in Questions & Answers
      P
      PhiLykia
    • 1
    • 2
    • 3
    • 4
    • 3 / 4