Portfolio Trades And Positions
Example input data. File names are important
@kaggle.resivalex_portfolio_trades_and_positions
Example input data. File names are important
@kaggle.resivalex_portfolio_trades_and_positions
It's based on my personal portfolio.
Trades and positions.
Brokers support CSV reports. It's a good thing.
It's a skeleton. Merging extra data and visualization will give a better understanding of it.
CREATE TABLE positions (
"symbol" VARCHAR,
"quantity" DOUBLE,
"average_price" DOUBLE
);CREATE TABLE trades (
"symbol" VARCHAR,
"quantity" BIGINT,
"price" DOUBLE
);Anyone who has the link will be able to view this.