I am in the process of developing intraday strategies which many reference daily bars and not sure if I am running into look ahead bias issues w/daily bars. Can you please confirm whether or not the following statements include references to the currently closed daily bar which hasn't happened yet?
Expect to see WoodiesPivots for the last fully closed daily bar:
CrossAbove(Close, WoodiesPivots(HLCCalculationModeWoodie.DailyBars, 20).R2[0],1);
Expect to see the closing price of the last fully closed daily bar:
CrossAbove(Close, Closes[1][1],1);
Expect to return the lowest closing price of the last fully closed daily bar or the bar before that (2 days ago):
CrossAbove(Close, MIN(Closes[1],[2])[0],1);
Also, for the WoodiePivots, does your response apply to all piviot indicators using DailyBars (Fibonacci, etc).
Thanks in advance.
r/
Erik

Comment