I'm working with historical data from Yahoo.
I'm using the adjusted close for the closing price. How can I adjust O/H/L to match?
Currently I'm doing:
k = adj_close / close;
o = k * open;
h = k * high;
l = k * low
c = k * close;
Is this correct or am I missing something?
Thanks for your reply.
The reason I'm asking is because I want to learn. I'm not going to run out and trade this without understanding.
I know most of the normal option setups and I have traded them in the past on indices and equities.
What I'm most interested in are the various...