Hi There,

just trying to get my head around the Portfolio Construction Model. The documentation section shows that we should create targets with an idea “ how many contracts/stocks should i buy”, but i get confused every-time i am thinking in terms of rebalancing my portfolio, and having to sell part of a position.

example:

If i have two securities A and B. I have 1000 shares of A, and 600 shares of B. And in order to rebalance my portfolio, my end goal is to have 700 shares of A, and 800 shares of B, is it the following code correct?

target_A = PortfolioTarget('A', -300)

target_B = PortfolioTarget('B', 200)

or that second argument Quantity is the amount of stock that i would have at the end rather the incrementals/decrementals that i need?

Jose