Hi, I'm a new learner on quant. When I was studying the code of a trading strategy, I found a question.
data = zp.utils.factory.load_from_yahoo(stocks = ['KO', 'PEP'], indexes = {},
start = start,
end = end,
adjusted = True)
I do not understand the meaning of "adjusted = True". What is the adjustment? What does this do to my data? Especially when I tried to plot for "True" and "False", I found the data was different.
So, what does this "adjusted = True" do my data.
I'd appreciate it if you can answer me !
BTW, can anyone tell me where to learn the grammar of zipline?