I know even though each down Renko bar "opens" a tick above/below the close of the previous bar (Bar [0]), it paints a "false" open a set number of ticks above that, for visual purposes, and uses that "false" open for calculations, and that's OK. I want to be able to EnterLongLimit when the current bar actually opens, with the limit price being equal to the open ("false" or real, I don't care as long as I can reference it accurately) of three bars ago (Open[3]).
Despite the target of "Open[3]", this code does not place the limit order anywhere near the price level of the "false" open three bars ago: EnterLongLimit(2, Open[3], @"LongEntry");
Obviously something is not correct here; how should I code this to reference three bars back?
Thanks in advance!

Comment