I made all the candle templates, here:
Posts made by PhiLykia
-
RE: TP changeposted in Questions & Answers
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.
-
RE: How to use the If Condition for Lines?posted in Questions & Answers
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.

There are many examples and explanations in the forum;
https://fxdreema.com/forum/topic/4209/tutorial-07-read-prices-from-indicator-objects/2?_=1684988316098 -
RE: Check consecutive lossesposted in Questions & Answers
Hi, The looses_count variable is zero when the EA is first run. your condition in the first block is not met.

-
RE: How to take profit using indicatorposted in Questions & Answers
I gave as an example, an example of closure using indicator, you edit condition .
-
RE: Canceling Grid lines.posted in Questions & Answers
@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 tpI 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.
-
RE: Continue Trade till opposite signalposted in Questions & Answers
@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)
-
RE: Indicator one buffer for one line with 2 colorposted in Questions & Answers
Set the "Trace" box for the buffer you want to check. You can develop a condition based on the output data.

-
RE: Indicator one buffer for one line with 2 colorposted in Questions & Answers
@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.
-
RE: This EA placing orders but not working properly,,,,WHy,??posted in Questions & Answers
@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.

-
RE: Custom EA neededposted in Questions & Answers
Hi, what is the strategy, you can wright it, any of us can help you
-
RE: Grid strategy with no martingaleposted in Questions & Answers
would you please examine: https://fxdreema.com/shared/GxHkrL0Cc
-
RE: singal from trading view to mt5posted in Questions & Answers
@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 -
RE: Buy now keeps taking the same trade twiceposted in Questions & Answers
@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. -
RE: singal from trading view to mt5posted in Questions & Answers
@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?
-
RE: singal from trading view to mt5posted in Questions & Answers
@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?