Login Page - Create Account

Support Board


Date/Time: Tue, 16 Apr 2024 12:55:22 +0000



Post From: Spreadsheet

[2019-08-01 16:12:16]
AndreyPoroshin - Posts: 102
Hello, I ran into a task that at first glance seemed pretty simple.
There is a line - the previous level of high volume (V)
When the price goes up or down from the level, I try to use the best option for entering, so that I get minimal slippage when the price turns.
= AND (E3 = V3 + 0.25)
= AND (E3 = V3-0.25)
But the deal is not always executed

= AND (E3> V3)
= AND (E3 <V3)
Transactions are executed but there are a lot of entry markers and this is a bad option. And if you do so
= AND (E3> V3, E4 <V3)
= AND (E3 <V3, E4> V3) then the transaction will also not always be executed due to a mismatch with a specific condition of the formula and not otherwise.

fromcrossbelow and fromcrossabove will not work either, this is similar to the version from the previous formula. Transactions are not always completed

How to act in such a way as to create a prerequisite for the execution of the order in case the price passes through the level and even if the price just touched the level and rebounded. In any case, it is necessary to execute the order. Which formula will be most effective in this case?