Baselight

Wheat Prices - Historical Annual Data

List of historical wheat prices from 1960-2022

@kaggle.kabhishm_wheat_prices_historical_annual_data

Wheat Prices
@kaggle.kabhishm_wheat_prices_historical_annual_data.wheat_prices

  • 8.12 KB
  • 63 rows
  • 7 columns
year

Year

avg_closing_price

Avg Closing Price

year_open

Year Open

year_high

Year High

year_low

Year Low

year_close

Year Close

annual_perc_change

Annual Perc Change

2022$9.5324$7.5800$12.9400$7.4150$8.712913.04%
2021$7.0402$6.4200$8.5600$6.0175$7.707520.34%
2020$5.4980$5.6025$6.4075$4.7470$6.405014.63%
2019$4.9414$5.0675$5.5875$4.2475$5.587511.03%
2018$4.9757$4.3350$5.7450$4.1650$5.032517.86%
2017$4.4014$4.0650$5.6000$4.0225$4.27004.66%
2016$4.3945$4.5825$5.1950$3.8065$4.0800-13.19%
2015$5.0836$5.8150$6.1555$4.6525$4.7000-20.27%
2014$5.8908$5.9700$7.3900$4.7400$5.8950-2.60%
2013$6.8608$7.5525$7.9125$6.0050$6.0525-22.20%

CREATE TABLE wheat_prices (
  "year" BIGINT,
  "avg_closing_price" VARCHAR,
  "year_open" VARCHAR,
  "year_high" VARCHAR,
  "year_low" VARCHAR,
  "year_close" VARCHAR,
  "annual_perc_change" VARCHAR
);