I have a simple question (not for me as I am just beginning to learn C#): Imagine you want to determine whether there was some kind of turning point on the chart (e.g. a V-formation, starting with falling prices, a low, and now rising prices). Surely one could do it much more sophisticated but let´s assume I want to check whether Close[0] is bigger than Min(Low, 20)[0] + x ticks (easy part) and that the High before this Min was x ticks higher than that Min. How could I do that? More generally, how can I determine how many bars ago this Min occured (like was at Close[1] or maybe Close[15]?) or control that some event occured before another?
Thank you for your help.

Comment