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?
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?