candle comparing
-
helloo dear
first of all tnxxxxxxxxx for your best free sitesecond, I have a problem in finding candle in start of everyday. in my plan I have to compare opening of third candle and opening of first candle ( m15) on everyday.then sell or buy.
please help me for this.
sincerely
amin -
Am I wrong, or you want to do something at 00:00 and then in 00:45?
Time filter, Hours filter... then Once per candle, Once a day...
-
hello0o
tnx for your fast respond
but the time is not my problem. comparing the opening of first and third candle is my problem.how can I write it in condition?? -
First candle (the current candle) has ID = 0. The previous one has ID = 1. The next previous has ID = 2. And so on... Just like in the first picture here: https://fxdreema.com/documentation/gett ... indicators
Notice that these are candles from the history, not from the future. So you check something from the history when you are in present time. -
hello0o0o dear
I couldn
t fix it,i dont know where is the problem. -
What can I say

-
Hi dear
I have a indicator that i use it for closing the second part of my orders with the reversal signals.the first part has fix tp and second part is open and i close them manually with firs reversal signal.
could you plaese help me to write this expert for managing the benefit.
i can load this indicator to fxdreema but i can`t write this closing with using these reversal signals. -
my second question for today
how can i open double sell or buy, and when the first order get tp then secound order become breakeven? entery point and exit point are same for 2 order.
thank alot for your attention
-
Indicators produce numeric values for the EA, so the EA have to check those values in some way or another, and make decisions what to do with them. Because custom indicators are so different, first you need to know what values your custom indicator is giving to the EA and then use them properly. Use "Indicator tester" block to check indicator buffers if you don't know what they return to the EA. Then... depends on what needs to be done... Condition block(s) or some block from "Indicators" section.
What means breakeven for.... I guess running orders. Something like this maybe: https://fxdreema.com/shared/5MJFmst2d
-
hi dear
thank you again for your answerthis was little complicated for me.i use the attached indi, could you please make a simple ea for me?
for example I have a sell order and tp is free ( no tp) for running order,when the indi shows the first buy signal ( blue up flash) , the ea close the sell order.thank you very much
......
ASCTrend_Sound.mq4.mq4 -
I prefer to tell you how to deal with indicators

You can check any indicator if it works at all... using "Indicator tester" block. Like here: https://fxdreema.com/demo/mt4-indicator-tester
There are few possible values
- some value that is biiiig and long, this number means that at the moment that buffer is... not used, inactive, zero. Also known as EMPTY_VALUE
- 0 - some indicators use this to hide the indicator from the chart
- something between 0 and EMPTY_VALUE
- something negative
If you have the same value all the time, let's say the EMPTY_VALUE, then the indicator does not use it's buffer properly or you have to change something - try with Candle ID. Often indicators work on the previous candles, not on the current one.
Try with some block from Indicators category. For example "Indicator appear". This should detect the moment when the indicator appear on the chart... in case the indicator shows some arrow. If it is MA type (always appeared), this block does not work for you.
Use "Draw arrow" to check if some block passes. You will see arrows in the places where the block passes.
-
thank you so much