Baselight

Portfolio Trades And Positions

Example input data. File names are important

@kaggle.resivalex_portfolio_trades_and_positions

Loading...
Loading...

About this Dataset

Portfolio Trades And Positions

Context

It's based on my personal portfolio.

Content

Trades and positions.

Acknowledgements

Brokers support CSV reports. It's a good thing.

Inspiration

It's a skeleton. Merging extra data and visualization will give a better understanding of it.

Tables

Positions

@kaggle.resivalex_portfolio_trades_and_positions.positions
  • 3.86 KB
  • 77 rows
  • 3 columns
Loading...

CREATE TABLE positions (
  "symbol" VARCHAR,
  "quantity" DOUBLE,
  "average_price" DOUBLE
);

Trades

@kaggle.resivalex_portfolio_trades_and_positions.trades
  • 4.26 KB
  • 123 rows
  • 3 columns
Loading...

CREATE TABLE trades (
  "symbol" VARCHAR,
  "quantity" BIGINT,
  "price" DOUBLE
);

Share link

Anyone who has the link will be able to view this.