Hi.
I have an indicator that the signal comes out x candles behind.
so I need to check a group of x candles, to establish the value of a variable.
It is necessary to check all the last x candles, because sometimes the signal is given by 2, 3, 1, 0 or x back candles.
You can help me to establish the value of the variable if in x candles there has been any sign of the indicator.
Posts made by cesardefez
-
check the value of an indicator of the last x candlesposted in General Discussions
-
RE: Array for ticposted in General Discussions
@l-andorrà
in principle none, I think everything is resolved, now is to try it in demo. To see who does what I want.
thank you -
RE: Array for ticposted in General Discussions
@l-andorrà
Hello-
First of all thank you very much for your answer.
already solved.
-. 1nd problem was that box 1 that updates the variables was disconnected, so these were not updated so the conditions were never met.
-. 2nd. problem - block 4, I have put it to close operations after I open them.
thank you -
RE: Array for ticposted in General Discussions
@l-andorrà
Hi .
I have got the variables to take the values that I need.
The problem now is that my 5-buy and 8-sale blocks don't let me pass, I have them badly programmed.
I could correct myself.
and a second problem is that the variable gap, I don't know how to make it external, so that I can configure it.
Thank you
 -
Array for ticposted in General Discussions
Hi.
I have 5 variables, where I want to record the value of the last 5 tic.
tic_0 current price value
tic_1 value of tic n-1 (previous tic)
tic_2 value of tic n-2
tic_3 value of tic n-3
tic_4 value of tic n-4
I used the modify variable block.
To each tic, I want to give you the values:
tic_4 = tic_3
tic_3 = tic_2
tic_2 = tic_1
Tic_1 = tic_0
tic_0 = Bid.
when executing the ea, only tic_0 changes me.
I do not understand why the values do not shift.
Could you help me? Thank you
-
RE: bolinger aplicado a un indicadorposted in Questions & Answers
@fxDreema Thank you.
What you need to do is to draw a signal from the crossing of an indicator on the bb, applied to the same indicator (previous indicator data).
Thanks for asking the question. -
bolinger aplicado a un indicadorposted in Questions & Answers
Hello I want to apply a bollinger band on a personal indicator,
I want to pick up the indicators crossing the indicator on the bolinger bands punched to it.
it's possible??