Lost pivot
-

-
Hello, friends, I would like to know how I make a condition so that my EA understands that the candles do not touch the daily pivot. That is, they ignore it. Thank you.
-
Hay alguien?
-
Is this a custom indicator and can you get the value, the price at which the horizontal line is placed?
-
Hi, yes, it's a pivot point idicator, but I thought you could use the FxDreema pivot points.
-
Here there is something for pivot point:

If you want that indicator, use it. For me all indicators are the same thing - extra program that accepts input parameters and returns output values. Some indicator doesn't return values that can be used, they print objects on the chart. Your indicator could be such, because those lines look to me like trend lines and maybe you have nothing in the output buffers. But I'm not sure of course, I don't have that indicator. If it prints lines on the chart, then you can get values by reading them from the lines, not from the indicator's output buffers.
-
@fxdreema Mi pregunta es: como hago para indicarle a mi EA que las velas no tocan el picote diario. No se si soy claro. Me refiero a como hacer para decirle al sistema que las velas no tocan el pivote. Supongamos que yo quisiera decir que las velas no cruzan la EMa de 20. Como hago?
-
If you want to check that no candle touched the pivot line (like in the first screenshot), first you need to be able to read the level at which the line is. I don't know how your indicator works. But let's assume that somehow you know the level and the level is for example 1.2345. Then basically you need to compare that level with High of those candles below. And if High for one candle is > 1.2345, then there is "touch". But how to do that...
The only block that I think is capable of doing this is "Indicator moves within limits". And the idea is that this block can compare 2 values... and do that for certain number of candles.
The other way is of course some custom loop, or even custom indicator.
-
Muy bien, administradora, muchas gracias. Tratare de investigar entonces como hacerlo. Fxdreema puede decierle a un EA que las velas tocan o cruzan algo, pero no puede decir que No Hay Toque. Y para eso habria que personalizar un indicador. Gracias por el tiempo y su paciencia. Un saludo