Compare commits

...

4 Commits

Author SHA1 Message Date
AzureAD\SylvainDUVERNAY
3986882771 Commit all views 2026-04-23 09:24:37 +02:00
AzureAD\SylvainDUVERNAY
79f6e6111f Commit 2026-04-23 09:21:55 +02:00
AzureAD\SylvainDUVERNAY
93b12de41d commit 2026-03-28 19:20:22 +01:00
AzureAD\SylvainDUVERNAY
32b13838f2 Commit 2026-03-28 17:11:52 +01:00
34 changed files with 1566 additions and 5511 deletions

View File

@@ -0,0 +1,39 @@
CREATE OR REPLACE VIEW public.vw_bi_dim_conformed_reference AS
SELECT pc."strTradeId" AS "strConformedReferenceId",
pc."Contract Ref" AS "Conformed Trade Ref",
'Purchase'::text AS "Trade Type",
pc."Price Fixing Status",
pc."Bassin",
pc."Book",
pc."Supplier Country" AS "Counterparty Country"
FROM vw_bi_dim_purchase_physical_contract pc
WHERE ((1 = 1) AND (pc."intPurchaseLineId" > 0))
UNION ALL
SELECT sc."strTradeLineId" AS "strConformedReferenceId",
sc."Contract Ref" AS "Conformed Trade Ref",
'Sale'::text AS "Trade Type",
sc."Price Fixing Status",
sc."Bassin",
sc."Book",
sc."Customer Country" AS "Counterparty Country"
FROM vw_bi_dim_sale_physical_contract sc
WHERE ((1 = 1) AND (sc."intSaleLineId" > 0))
UNION ALL
SELECT DISTINCT ((s."intPurchaseLineId" || '_'::text) || s."intSaleLineId") AS "strConformedReferenceId",
CASE
WHEN ((pc."Contract Ref")::text <> (sc."Contract Ref")::text) THEN ((((pc."Contract Ref")::text || ' / '::text) || (sc."Contract Ref")::text))::character varying
ELSE pc."Contract Ref"
END AS "Conformed Trade Ref",
'Shipped'::text AS "Trade Type",
CASE
WHEN ((pc."Price Fixing Status" = sc."Price Fixing Status") AND (pc."Price Fixing Status" = 'Fixed'::text)) THEN 'Fixed'::text
WHEN ((pc."Price Fixing Status" = sc."Price Fixing Status") AND (pc."Price Fixing Status" = 'Unfixed'::text)) THEN 'Unfixed'::text
ELSE 'Partially Fixed'::text
END AS "Price Fixing Status",
pc."Bassin",
pc."Book",
sc."Customer Country" AS "Counterparty Country"
FROM ((vw_bi_itsa_fct_shipments s
JOIN vw_bi_dim_purchase_physical_contract pc ON ((s."intPurchaseLineId" = pc."intPurchaseLineId")))
JOIN vw_bi_dim_sale_physical_contract sc ON ((s."intSaleLineId" = sc."intSaleLineId")))
WHERE (1 = 1);;

View File

@@ -1,46 +1,61 @@
CREATE OR REPLACE VIEW public.vw_bi_dim_purchase_physical_contract AS
SELECT "intPurchaseLineId",
"strContractNb" AS "Contract Nb",
"strCounterparty" AS "Supplier",
"strReference" AS "Contract Ref",
"dtmContractDate" AS "Contract Date",
WITH pricingstatus AS (
SELECT pvl_1."intContractLineId",
pvl_1."strState"
FROM vw_utility_physical_valuation_line pvl_1
GROUP BY pvl_1."intContractLineId", pvl_1."strState"
)
SELECT dpc."intPurchaseLineId",
dpc."strContractNb" AS "Contract Nb",
dpc."strCounterparty" AS "Supplier",
dpc."strReference" AS "Contract Ref",
dpc."dtmContractDate" AS "Contract Date",
CASE
WHEN (("strContractStatus")::text = 'Draft'::text) THEN ((("strContractStatus")::text || ' 🧾'::text))::character varying
WHEN (("strContractStatus")::text = 'Confirmed'::text) THEN ((("strContractStatus")::text || ''::text))::character varying
WHEN (("strContractStatus")::text = 'Validated'::text) THEN ((("strContractStatus")::text || ' ✔️'::text))::character varying
WHEN (("strContractStatus")::text = 'Processing'::text) THEN ((("strContractStatus")::text || ''::text))::character varying
ELSE "strContractStatus"
WHEN ((dpc."strContractStatus")::text = 'Draft'::text) THEN (((dpc."strContractStatus")::text || ' 🧾'::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Confirmed'::text) THEN (((dpc."strContractStatus")::text || ''::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Validated'::text) THEN (((dpc."strContractStatus")::text || ' ✔️'::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Processing'::text) THEN (((dpc."strContractStatus")::text || ''::text))::character varying
ELSE dpc."strContractStatus"
END AS "Contract Status",
"strPaymentTerm" AS "Payment Terms",
"strCurrency" AS "Currency",
"strWeightBasis" AS "Weight Basis",
"strBroker" AS "Broker",
"strCertif" AS "Certification",
"strAssociation" AS "Association",
"strCrop" AS "Crop",
"dblTolMinPct" AS "Tolerance Min %",
"dblTolMaxPct" AS "Tolerance Max %",
"strIncoterm" AS "Inco Terms",
"strLoadingPlace" AS "Loading Place",
"strDestinationPlace" AS "Destination Place",
"strProduct" AS "Product",
"strDeliveryPeriod" AS "Delivery Period",
"strRegion" AS "Bassin",
"strBookName" AS "Book",
"strStrategyName" AS "Strategy",
"strQuantityUom" AS "Quantity UOM",
"dtmDeliveryDateFrom" AS "Delivery Date From",
"dtmDeliveryDateTo" AS "Delivery Date To",
dpc."strPaymentTerm" AS "Payment Terms",
dpc."strCurrency" AS "Currency",
dpc."strWeightBasis" AS "Weight Basis",
dpc."strBroker" AS "Broker",
dpc."strCertif" AS "Certification",
dpc."strAssociation" AS "Association",
dpc."strCrop" AS "Crop",
dpc."dblTolMinPct" AS "Tolerance Min %",
dpc."dblTolMaxPct" AS "Tolerance Max %",
dpc."strIncoterm" AS "Inco Terms",
dpc."strLoadingPlace" AS "Loading Place",
dpc."strDestinationPlace" AS "Destination Place",
dpc."strProduct" AS "Product",
dpc."strDeliveryPeriod" AS "Delivery Period",
dpc."strRegion" AS "Bassin",
dpc."strBookName" AS "Book",
dpc."strStrategyName" AS "Strategy",
dpc."strQuantityUom" AS "Quantity UOM",
dpc."dtmDeliveryDateFrom" AS "Delivery Date From",
dpc."dtmDeliveryDateTo" AS "Delivery Date To",
CASE
WHEN ("dtmDeliveryDateTo" < CURRENT_DATE) THEN 'Overdue'::text
WHEN (("dtmDeliveryDateFrom" <= CURRENT_DATE) AND ("dtmDeliveryDateTo" >= CURRENT_DATE)) THEN 'Current'::text
WHEN ("dtmDeliveryDateFrom" > CURRENT_DATE) THEN 'Future'::text
WHEN (dpc."dtmDeliveryDateTo" < CURRENT_DATE) THEN 'Overdue'::text
WHEN ((dpc."dtmDeliveryDateFrom" <= CURRENT_DATE) AND (dpc."dtmDeliveryDateTo" >= CURRENT_DATE)) THEN 'Current'::text
WHEN (dpc."dtmDeliveryDateFrom" > CURRENT_DATE) THEN 'Future'::text
ELSE 'Unknown'::text
END AS "Delivery Status",
CASE
WHEN (("strBookName")::text ~~ '%Projection%'::text) THEN 'Yes'::text
WHEN ((dpc."strBookName")::text ~~ '%Projection%'::text) THEN 'Yes'::text
ELSE 'No'::text
END AS "Is Projection",
"strIncotermCode" AS "Incoterm Code",
"dtmEstimatedBLDate" AS "Estimated BL Date"
FROM vw_utility_dim_physical_purchase_contract dpc;;
dpc."strIncotermCode" AS "Incoterm Code",
dpc."dtmEstimatedBLDate" AS "Estimated BL Date",
dpc."strPricingType" AS "Pricing Type",
COALESCE(mtm."strStrategy", 'Undefined'::character varying) AS "MtM Strategy",
COALESCE(mtm."strScenario", 'Undefined'::character varying) AS "MtM Scenario",
COALESCE(mtm."strComponentCurve", 'Undefined'::character varying) AS "MtM Component Curve",
dpc."strCounterpartyCountry" AS "Supplier Country",
COALESCE(pvl."strState", ('Undefined'::character varying)::text) AS "Price Fixing Status",
(dpc."intPurchaseLineId" || '_0'::text) AS "strTradeId"
FROM ((vw_utility_dim_physical_purchase_contract dpc
LEFT JOIN vw_utility_physical_mtm_definition mtm ON (((dpc."intPurchaseLineId" = mtm."intContractLineId") AND (mtm."strContractType" = 'Purchase'::text) AND ((mtm."strComponentFixType")::text = 'Market price'::text))))
LEFT JOIN pricingstatus pvl ON ((dpc."intPurchaseLineId" = pvl."intContractLineId")));;

View File

@@ -1,46 +1,61 @@
CREATE OR REPLACE VIEW public.vw_bi_dim_sale_physical_contract AS
SELECT "intSaleLineId",
"strContractNb" AS "Contract Nb",
"strCounterparty" AS "Customer",
"strReference" AS "Contract Ref",
"dtmContractDate" AS "Contract Date",
WITH pricingstatus AS (
SELECT pvl_1."intContractLineId",
pvl_1."strState"
FROM vw_utility_physical_valuation_line pvl_1
GROUP BY pvl_1."intContractLineId", pvl_1."strState"
)
SELECT dpc."intSaleLineId",
dpc."strContractNb" AS "Contract Nb",
dpc."strCounterparty" AS "Customer",
dpc."strReference" AS "Contract Ref",
dpc."dtmContractDate" AS "Contract Date",
CASE
WHEN (("strContractStatus")::text = 'Draft'::text) THEN ((("strContractStatus")::text || ' 🧾'::text))::character varying
WHEN (("strContractStatus")::text = 'Confirmed'::text) THEN ((("strContractStatus")::text || ''::text))::character varying
WHEN (("strContractStatus")::text = 'Validated'::text) THEN ((("strContractStatus")::text || ' ✔️'::text))::character varying
WHEN (("strContractStatus")::text = 'Processing'::text) THEN ((("strContractStatus")::text || ''::text))::character varying
ELSE "strContractStatus"
WHEN ((dpc."strContractStatus")::text = 'Draft'::text) THEN (((dpc."strContractStatus")::text || ' 🧾'::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Confirmed'::text) THEN (((dpc."strContractStatus")::text || ''::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Validated'::text) THEN (((dpc."strContractStatus")::text || ' ✔️'::text))::character varying
WHEN ((dpc."strContractStatus")::text = 'Processing'::text) THEN (((dpc."strContractStatus")::text || ''::text))::character varying
ELSE dpc."strContractStatus"
END AS "Contract Status",
"strPaymentTerm" AS "Payment Terms",
"strCurrency" AS "Currency",
"strWeightBasis" AS "Weight Basis",
"strBroker" AS "Broker",
"strCertif" AS "Certification",
"strAssociation" AS "Association",
"strCrop" AS "Crop",
"dblTolMinPct" AS "Tolerance Min %",
"dblTolMaxPct" AS "Tolerance Max %",
"strIncoterm" AS "Inco Terms",
"strLoadingPlace" AS "Loading Place",
"strDestinationPlace" AS "Destination Place",
"strProduct" AS "Product",
"strDeliveryPeriod" AS "Delivery Period",
"strQuantityUom" AS "Quantity UOM",
"dtmDeliveryDateFrom" AS "Delivery Date From",
"dtmDeliveryDateTo" AS "Delivery Date To",
dpc."strPaymentTerm" AS "Payment Terms",
dpc."strCurrency" AS "Currency",
dpc."strWeightBasis" AS "Weight Basis",
dpc."strBroker" AS "Broker",
dpc."strCertif" AS "Certification",
dpc."strAssociation" AS "Association",
dpc."strCrop" AS "Crop",
dpc."dblTolMinPct" AS "Tolerance Min %",
dpc."dblTolMaxPct" AS "Tolerance Max %",
dpc."strIncoterm" AS "Inco Terms",
dpc."strLoadingPlace" AS "Loading Place",
dpc."strDestinationPlace" AS "Destination Place",
dpc."strProduct" AS "Product",
dpc."strDeliveryPeriod" AS "Delivery Period",
dpc."strQuantityUom" AS "Quantity UOM",
dpc."dtmDeliveryDateFrom" AS "Delivery Date From",
dpc."dtmDeliveryDateTo" AS "Delivery Date To",
CASE
WHEN ("dtmDeliveryDateTo" < CURRENT_DATE) THEN 'Overdue'::text
WHEN (("dtmDeliveryDateFrom" <= CURRENT_DATE) AND ("dtmDeliveryDateTo" >= CURRENT_DATE)) THEN 'Current'::text
WHEN ("dtmDeliveryDateFrom" > CURRENT_DATE) THEN 'Future'::text
WHEN (dpc."dtmDeliveryDateTo" < CURRENT_DATE) THEN 'Overdue'::text
WHEN ((dpc."dtmDeliveryDateFrom" <= CURRENT_DATE) AND (dpc."dtmDeliveryDateTo" >= CURRENT_DATE)) THEN 'Current'::text
WHEN (dpc."dtmDeliveryDateFrom" > CURRENT_DATE) THEN 'Future'::text
ELSE 'Unknown'::text
END AS "Delivery Status",
"strRegion" AS "Bassin",
"strBookName" AS "Book",
"strStrategyName" AS "Strategy",
dpc."strRegion" AS "Bassin",
dpc."strBookName" AS "Book",
dpc."strStrategyName" AS "Strategy",
CASE
WHEN (("strBookName")::text ~~ '%Projection%'::text) THEN 'Yes'::text
WHEN ((dpc."strBookName")::text ~~ '%Projection%'::text) THEN 'Yes'::text
ELSE 'No'::text
END AS "Is Projection",
"strIncotermCode" AS "Incoterm Code",
"dtmEstimatedBLDate" AS "Estimated BL Date"
FROM vw_utility_dim_physical_sale_contract dpc;;
dpc."strIncotermCode" AS "Incoterm Code",
dpc."dtmEstimatedBLDate" AS "Estimated BL Date",
dpc."strPricingType" AS "Pricing Type",
COALESCE(mtm."strStrategy", 'Undefined'::character varying) AS "MtM Strategy",
COALESCE(mtm."strScenario", 'Undefined'::character varying) AS "MtM Scenario",
COALESCE(mtm."strComponentCurve", 'Undefined'::character varying) AS "MtM Component Curve",
dpc."strCounterpartyCountry" AS "Customer Country",
COALESCE(pvl."strState", ('Undefined'::character varying)::text) AS "Price Fixing Status",
('0_'::text || dpc."intSaleLineId") AS "strTradeLineId"
FROM ((vw_utility_dim_physical_sale_contract dpc
LEFT JOIN vw_utility_physical_mtm_definition mtm ON (((dpc."intSaleLineId" = mtm."intContractLineId") AND (mtm."strContractType" = 'Sale'::text) AND ((mtm."strComponentFixType")::text = 'Market price'::text))))
LEFT JOIN pricingstatus pvl ON ((dpc."intSaleLineId" = pvl."intContractLineId")));;

View File

@@ -1,8 +1,10 @@
CREATE OR REPLACE VIEW public.vw_bi_dim_trade AS
SELECT pc."intPurchaseLineId" AS "intTradeId",
(pc."intPurchaseLineId" || '_0'::text) AS "strTradeId",
'Physical'::text AS "Trade Category",
'Purchase'::text AS "Trade Type",
pc."strReference" AS "Trade Ref",
pc."strContractNb" AS "Trade Number",
pc."dtmContractDate" AS "Trade Date",
pc."strCounterparty" AS "Counterparty",
pc."strRegion" AS "Bassin",
@@ -12,9 +14,11 @@ CREATE OR REPLACE VIEW public.vw_bi_dim_trade AS
WHERE ((1 = 1) AND (pc."intPurchaseLineId" > 0))
UNION ALL
SELECT sc."intSaleLineId" AS "intTradeId",
('0_'::text || sc."intSaleLineId") AS "strTradeId",
'Physical'::text AS "Trade Category",
'Sale'::text AS "Trade Type",
sc."strReference" AS "Trade Ref",
sc."strContractNb" AS "Trade Number",
sc."dtmContractDate" AS "Trade Date",
sc."strCounterparty" AS "Counterparty",
sc."strRegion" AS "Bassin",

View File

@@ -0,0 +1,9 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_dim_pnl_type AS
SELECT 1 AS "intPnlTypeId",
'Expected'::text AS "PNL Type"
UNION ALL
SELECT 3 AS "intPnlTypeId",
'Realized'::text AS "PNL Type"
UNION ALL
SELECT 2 AS "intPnlTypeId",
'Forward'::text AS "PNL Type";;

View File

@@ -0,0 +1,12 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_dim_price_group AS
SELECT 1 AS "intPriceGroupId",
'Price'::text AS "Price Group",
1 AS "Group Order"
UNION ALL
SELECT 2 AS "intPriceGroupId",
'Fees'::text AS "Price Group",
2 AS "Group Order"
UNION ALL
SELECT 3 AS "intPriceGroupId",
'MTM'::text AS "Price Group",
2 AS "Group Order";;

View File

@@ -1,30 +1,49 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_fct_contract AS
WITH valuation_info AS (
SELECT pvl."intContractId",
pvl."intContractLineId",
pvl."strState",
avg(pvl."dblPrice") AS "avgPrice",
avg(pvl."dblMtmPrice") AS "avgMtmPrice"
FROM vw_utility_physical_valuation_line pvl
GROUP BY pvl."intContractId", pvl."intContractLineId", pvl."strState"
)
SELECT 'Purchase'::text AS "TradeType",
pc."intPurchaseLineId" AS "TradeLineId",
pc."dblQuantity" AS "Quantity",
pc."dblTheoriticalQuantity" AS "TheoriticalQuantity",
pc."dblTheoriticalQuantity" AS "Contract Quantity",
pc."dblInInstructedQuantity" AS "InstructedQuantity",
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoriticalQuantity")::double precision > pc."dblInInstructedQuantity") THEN (((pc."dblTheoriticalQuantity")::double precision - pc."dblInInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END AS "Open Quantity",
pc."dblUnitPrice" AS "Price",
COALESCE(pc."dtmEstimatedBLDate", pc."dtmDeliveryDateFrom") AS "DeliveryDate"
FROM vw_utility_purchase_physical_contract pc
COALESCE(pc."dtmEstimatedBLDate", pc."dtmDeliveryDateFrom") AS "Delivery Date",
COALESCE(vi."strState", 'Unknown'::text) AS "Price Fixing Status",
COALESCE(vi."avgPrice", (0)::numeric) AS "Avg Price",
COALESCE(vi."avgMtmPrice", (0)::numeric) AS "Avg Mtm Price",
pc."dblTheoriticalQuantity" AS "Contract Quantity Signed",
pc."dblInInstructedQuantity" AS "Instructed Quantity Signed"
FROM (vw_utility_purchase_physical_contract pc
LEFT JOIN valuation_info vi ON ((pc."intPurchaseLineId" = vi."intContractLineId")))
WHERE (1 = 1)
UNION ALL
SELECT 'Sale'::text AS "TradeType",
pc."intSaleLineId" AS "TradeLineId",
pc."dblQuantity" AS "Quantity",
pc."dblTheoreticalQuantity" AS "TheoriticalQuantity",
pc."dblTheoreticalQuantity" AS "Contract Quantity",
pc."dblInstructedQuantity" AS "InstructedQuantity",
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoreticalQuantity")::double precision > pc."dblInstructedQuantity") THEN (((pc."dblTheoreticalQuantity")::double precision - pc."dblInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END AS "Open Quantity",
pc."dblUnitPrice" AS "Price",
COALESCE(pc."dtmEstimatedBLDate", pc."dtmDeliveryDateFrom") AS "DeliveryDate"
FROM vw_utility_sale_physical_contract pc
COALESCE(pc."dtmEstimatedBLDate", pc."dtmDeliveryDateFrom") AS "Delivery Date",
COALESCE(vi."strState", 'Unknown'::text) AS "Price Fixing Status",
COALESCE(vi."avgPrice", (0)::numeric) AS "Avg Price",
COALESCE(vi."avgMtmPrice", (0)::numeric) AS "Avg Mtm Price",
(pc."dblTheoreticalQuantity" * ('-1'::integer)::numeric) AS "Contract Quantity Signed",
(pc."dblInstructedQuantity" * (('-1'::integer)::numeric)::double precision) AS "Instructed Quantity Signed"
FROM (vw_utility_sale_physical_contract pc
LEFT JOIN valuation_info vi ON ((pc."intSaleLineId" = vi."intContractLineId")))
WHERE (1 = 1);;

View File

@@ -0,0 +1,65 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_fct_full_pnl AS
WITH trade AS (
SELECT pc."intPurchaseLineId" AS "intTradeId",
(pc."intPurchaseLineId" || '_0'::text) AS strtradeid
FROM vw_utility_dim_physical_purchase_contract pc
WHERE ((1 = 1) AND (pc."intPurchaseLineId" > 0))
UNION ALL
SELECT sc."intSaleLineId" AS "intTradeId",
('0_'::text || sc."intSaleLineId") AS strtradeid
FROM vw_utility_dim_physical_sale_contract sc
WHERE ((1 = 1) AND (sc."intSaleLineId" > 0))
)
SELECT 2 AS "intPnlTypeId",
trade.strtradeid AS "strConformedReferenceId",
contracts."intPriceGroupId",
contracts."Line Description",
contracts."Open Quantity Signed",
contracts."Price",
contracts."Open Cost Amount" AS amount,
contracts."Estimated BL Date" AS "Delivery Date"
FROM (vw_bi_itsa_physical_open_costs contracts
JOIN trade trade ON ((contracts."intTradeLineId" = trade."intTradeId")))
UNION ALL
SELECT 3 AS "intPnlTypeId",
((shipment."intPurchaseLineId" || '_'::text) || shipment."intSaleLineId") AS "strConformedReferenceId",
1 AS "intPriceGroupId",
'Purchase'::character varying AS "Line Description",
shipment."Shipped Quantity" AS "Open Quantity Signed",
shipment."Purchase Price" AS "Price",
(shipment."Shipped Quantity" * (shipment."Purchase Price")::double precision) AS amount,
shipment."BL Date" AS "Delivery Date"
FROM vw_bi_itsa_fct_shipments shipment
UNION ALL
SELECT 3 AS "intPnlTypeId",
((shipment."intPurchaseLineId" || '_'::text) || shipment."intSaleLineId") AS "strConformedReferenceId",
1 AS "intPriceGroupId",
'Sale'::character varying AS "Line Description",
shipment."Shipped Quantity" AS "Open Quantity Signed",
shipment."Sale Price" AS "Price",
(shipment."Shipped Quantity" * (shipment."Sale Price")::double precision) AS amount,
shipment."BL Date" AS "Delivery Date"
FROM vw_bi_itsa_fct_shipments shipment
UNION ALL
SELECT 3 AS "intPnlTypeId",
((shipment."intPurchaseLineId" || '_'::text) || shipment."intSaleLineId") AS "strConformedReferenceId",
2 AS "intPriceGroupId",
fees."Fee" AS "Line Description",
shipment."Shipped Quantity" AS "Open Quantity Signed",
fees."Price",
(shipment."Shipped Quantity" * (fees."Price")::double precision) AS amount,
shipment."BL Date" AS "Delivery Date"
FROM (vw_bi_itsa_fct_shipment_fees fees
JOIN vw_bi_itsa_fct_shipments shipment ON ((fees."intShipmentId" = shipment."intShipmentId")))
UNION ALL
SELECT 1 AS "intPnlTypeId",
trade."strTradeId" AS "strConformedReferenceId",
1 AS "intPriceGroupId",
'Expected Price'::character varying AS "Line Description",
ctr."Contract Quantity" AS "Open Quantity Signed",
ctr."Avg Price" AS "Price",
(ctr."Contract Quantity" * ctr."Avg Price") AS amount,
ctr."Delivery Date"
FROM (vw_bi_itsa_fct_contract ctr
JOIN vw_bi_dim_trade trade ON ((ctr."TradeLineId" = trade."intTradeId")))
WHERE ((trade."Book")::text ~~ '%Projection%'::text);;

View File

@@ -10,7 +10,9 @@ CREATE OR REPLACE VIEW public.vw_bi_itsa_fct_shipments AS
sm."dblQuantity" AS "Shipped Quantity",
sm."strUnit" AS "Quantity Unit",
COALESCE(p."dblUnitPrice", (0)::numeric) AS "Purchase Price",
COALESCE(s."dblUnitPrice", (0)::numeric) AS "Sale Price"
FROM ((vw_utility_stock_movements sm
COALESCE(s."dblUnitPrice", (0)::numeric) AS "Sale Price",
shipment."dtmBillOfLadingDate" AS "BL Date"
FROM (((vw_utility_stock_movements sm
JOIN vw_utility_shipment_in shipment ON ((sm."intShipmentId" = shipment."intShipmentId")))
LEFT JOIN vw_utility_purchase_physical_contract p ON ((sm."intPurchaseLineId" = p."intPurchaseLineId")))
LEFT JOIN vw_utility_sale_physical_contract s ON ((sm."intSaleLineId" = s."intSaleLineId")));;

View File

@@ -0,0 +1,7 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_monthly_trade_ifrs_adjustments AS
SELECT "intAdjustmentId",
"dtmAdjustmentDate" AS "Adjustment Date",
"dblAmount" AS "Amount",
"strCurrency" AS "Currency",
"strComments" AS "Comments"
FROM vw_utility_monthly_trade_ifrs_adjustments;;

View File

@@ -0,0 +1,148 @@
CREATE OR REPLACE VIEW public.vw_bi_itsa_physical_open_costs AS
WITH valuation_info AS (
SELECT pvl."intContractId",
pvl."intContractLineId",
pvl."strState",
avg(pvl."dblPrice") AS "avgPrice",
(avg(pvl."dblMtmPrice"))::numeric(18,2) AS "avgMtmPrice"
FROM vw_utility_physical_valuation_line pvl
GROUP BY pvl."intContractId", pvl."intContractLineId", pvl."strState"
), contract_open_quantity AS (
SELECT 'Purchase'::text AS "TradeType",
pc."intPurchaseLineId" AS "TradeLineId",
pc."dblTheoriticalQuantity" AS "TheoriticalQuantity",
pc."dblInInstructedQuantity" AS "InstructedQuantity",
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoriticalQuantity")::double precision > pc."dblInInstructedQuantity") THEN (((pc."dblTheoriticalQuantity")::double precision - pc."dblInInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END AS "OpenQuantity",
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoriticalQuantity")::double precision > pc."dblInInstructedQuantity") THEN (((pc."dblTheoriticalQuantity")::double precision - pc."dblInInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END AS "OpenQuantitySigned",
COALESCE(vi."avgMtmPrice", (0)::numeric(18,2)) AS "AvgMtmPrice",
pc."dblTheoriticalQuantity" AS "TheoriticalQuantitySigned"
FROM (vw_utility_purchase_physical_contract pc
LEFT JOIN valuation_info vi ON ((pc."intPurchaseLineId" = vi."intContractLineId")))
WHERE (1 = 1)
UNION ALL
SELECT 'Sale'::text AS "TradeType",
pc."intSaleLineId" AS "TradeLineId",
pc."dblTheoreticalQuantity" AS "TheoriticalQuantity",
pc."dblInstructedQuantity" AS "InstructedQuantity",
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoreticalQuantity")::double precision > pc."dblInstructedQuantity") THEN (((pc."dblTheoreticalQuantity")::double precision - pc."dblInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END AS "OpenQuantity",
(
CASE
WHEN (pc."ysnFinished" = true) THEN (0)::numeric(18,3)
WHEN ((pc."dblTheoreticalQuantity")::double precision > pc."dblInstructedQuantity") THEN (((pc."dblTheoreticalQuantity")::double precision - pc."dblInstructedQuantity"))::numeric(18,3)
ELSE (0)::numeric(18,3)
END * ('-1'::integer)::numeric) AS "OpenQuantitySigned",
COALESCE(vi."avgMtmPrice", (0)::numeric(18,2)) AS "AvgMtmPrice",
(pc."dblTheoreticalQuantity" * ('-1'::integer)::numeric) AS "TheoriticalQuantitySigned"
FROM (vw_utility_sale_physical_contract pc
LEFT JOIN valuation_info vi ON ((pc."intSaleLineId" = vi."intContractLineId")))
WHERE (1 = 1)
)
SELECT 1 AS "Group Order",
'Price'::text AS "Group Type",
ctr."intPurchaseLineId" AS "intTradeLineId",
'Fixed Price'::character varying AS "Line Description",
pur."dblUnitPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
((opq."OpenQuantitySigned" * pur."dblUnitPrice") * ('-1'::integer)::numeric) AS "Open Cost Amount",
1 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_dim_physical_purchase_contract ctr
JOIN vw_utility_purchase_physical_contract pur ON ((ctr."intPurchaseLineId" = pur."intPurchaseLineId")))
JOIN contract_open_quantity opq ON (((ctr."intPurchaseLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Purchase'::text))))
WHERE (((ctr."strPricingType")::text = 'priced'::text) AND (opq."OpenQuantity" <> (0)::numeric))
UNION ALL
SELECT 2 AS "Group Order",
'MTM'::text AS "Group Type",
ctr."intPurchaseLineId" AS "intTradeLineId",
mtm."strComponentCurve" AS "Line Description",
opq."AvgMtmPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
(opq."OpenQuantitySigned" * opq."AvgMtmPrice") AS "Open Cost Amount",
3 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_physical_mtm_definition mtm
JOIN vw_utility_dim_physical_purchase_contract ctr ON ((mtm."intContractLineId" = ctr."intPurchaseLineId")))
JOIN contract_open_quantity opq ON (((ctr."intPurchaseLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Purchase'::text))))
WHERE ((mtm."strContractType" = 'Purchase'::text) AND (opq."OpenQuantity" <> (0)::numeric))
UNION ALL
SELECT 3 AS "Group Order",
'Fee'::text AS "Group Type",
fees."intContractLineId" AS "intTradeLineId",
fees."strProduct" AS "Line Description",
fees."dblPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
((((
CASE
WHEN ((fees."strPayOrRec")::text = 'pay'::text) THEN 1
ELSE '-1'::integer
END)::numeric * opq."OpenQuantity") * fees."dblPrice") * ('-1'::integer)::numeric) AS "Open Cost Amount",
2 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_contract_fees fees
JOIN vw_utility_dim_physical_purchase_contract ctr ON ((fees."intContractLineId" = ctr."intPurchaseLineId")))
JOIN contract_open_quantity opq ON (((ctr."intPurchaseLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Purchase'::text))))
WHERE ((fees."strContractType" = 'Purchase'::text) AND (opq."OpenQuantity" <> (0)::numeric))
UNION ALL
SELECT 1 AS "Group Order",
'Price'::text AS "Group Type",
ctr."intSaleLineId" AS "intTradeLineId",
'Fixed Price'::character varying AS "Line Description",
sale."dblUnitPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
((opq."OpenQuantitySigned" * sale."dblUnitPrice") * ('-1'::integer)::numeric) AS "Open Cost Amount",
1 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_dim_physical_sale_contract ctr
JOIN vw_utility_sale_physical_contract sale ON ((ctr."intSaleLineId" = sale."intSaleLineId")))
JOIN contract_open_quantity opq ON (((ctr."intSaleLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Sale'::text))))
WHERE (((ctr."strPricingType")::text = 'priced'::text) AND (opq."OpenQuantity" <> (0)::numeric))
UNION ALL
SELECT 2 AS "Group Order",
'MTM'::text AS "Group Type",
ctr."intSaleLineId" AS "intTradeLineId",
mtm."strComponentCurve" AS "Line Description",
opq."AvgMtmPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
(opq."OpenQuantitySigned" * opq."AvgMtmPrice") AS "Open Cost Amount",
3 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_physical_mtm_definition mtm
JOIN vw_utility_dim_physical_sale_contract ctr ON ((mtm."intContractLineId" = ctr."intSaleLineId")))
JOIN contract_open_quantity opq ON (((ctr."intSaleLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Sale'::text))))
WHERE ((mtm."strContractType" = 'Sale'::text) AND (opq."OpenQuantity" <> (0)::numeric))
UNION ALL
SELECT 3 AS "Group Order",
'Fee'::text AS "Group Type",
fees."intContractLineId" AS "intTradeLineId",
fees."strProduct" AS "Line Description",
fees."dblPrice" AS "Price",
opq."OpenQuantitySigned" AS "Open Quantity Signed",
((((
CASE
WHEN ((fees."strPayOrRec")::text = 'pay'::text) THEN 1
ELSE '-1'::integer
END)::numeric * opq."OpenQuantity") * fees."dblPrice") * ('-1'::integer)::numeric) AS "Open Cost Amount",
2 AS "intPriceGroupId",
ctr."dtmEstimatedBLDate" AS "Estimated BL Date",
opq."TheoriticalQuantitySigned" AS "Contract Quantity Signed"
FROM ((vw_utility_contract_fees fees
JOIN vw_utility_dim_physical_sale_contract ctr ON ((fees."intContractLineId" = ctr."intSaleLineId")))
JOIN contract_open_quantity opq ON (((ctr."intSaleLineId" = opq."TradeLineId") AND (opq."TradeType" = 'Sale'::text))))
WHERE ((fees."strContractType" = 'Sale'::text) AND (opq."OpenQuantity" <> (0)::numeric));;

View File

@@ -27,7 +27,9 @@ CREATE OR REPLACE VIEW public.vw_utility_dim_physical_purchase_contract AS
''::character varying AS "strBookName",
''::character varying AS "strQuantityUom",
''::character varying AS "strIncotermCode",
NULL::date AS "dtmEstimatedBLDate"
NULL::date AS "dtmEstimatedBLDate",
''::character varying AS "strPricingType",
''::character varying AS "strCounterpartyCountry"
UNION ALL
SELECT pl.id AS "intPurchaseLineId",
pc.number AS "strContractNb",
@@ -62,7 +64,9 @@ UNION ALL
book."strValueName" AS "strBookName",
pu1.name AS "strQuantityUom",
COALESCE(inc.code, ''::character varying) AS "strIncotermCode",
COALESCE(bl.estimated_date, pl.to_del) AS "dtmEstimatedBLDate"
COALESCE(bl.estimated_date, pl.to_del) AS "dtmEstimatedBLDate",
pl.price_type AS "strPricingType",
COALESCE(ad."strCountry", 'Undefined'::character varying) AS "strCounterpartyCountry"
FROM (((((((((((((((((((purchase_line pl
JOIN purchase_purchase pc ON ((pl.purchase = pc.id)))
JOIN party_party pty ON ((pc.party = pty.id)))

View File

@@ -27,7 +27,9 @@ CREATE OR REPLACE VIEW public.vw_utility_dim_physical_sale_contract AS
''::character varying AS "strStrategyName",
''::character varying AS "strBookName",
''::character varying AS "strIncotermCode",
NULL::date AS "dtmEstimatedBLDate"
NULL::date AS "dtmEstimatedBLDate",
''::character varying AS "strPricingType",
''::character varying AS "strCounterpartyCountry"
UNION ALL
SELECT sl.id AS "intSaleLineId",
sc.number AS "strContractNb",
@@ -57,7 +59,9 @@ UNION ALL
strategy."strValueName" AS "strStrategyName",
book."strValueName" AS "strBookName",
COALESCE(inc.code, ''::character varying) AS "strIncotermCode",
COALESCE(bl.estimated_date, sl.to_del) AS "dtmEstimatedBLDate"
COALESCE(bl.estimated_date, sl.to_del) AS "dtmEstimatedBLDate",
sl.price_type AS "strPricingType",
COALESCE(ad."strCountry", 'Undefined'::character varying) AS "strCounterpartyCountry"
FROM (((((((((((((((((((sale_line sl
JOIN sale_sale sc ON ((sl.sale = sc.id)))
JOIN party_party pty ON ((sc.party = pty.id)))
@@ -77,5 +81,5 @@ UNION ALL
LEFT JOIN vw_utility_last_counterparty_address ad ON ((pty.id = ad."intPartyId")))
LEFT JOIN vw_utility_strategy_dimension strategy ON (((sl.id = strategy."intTradeLineId") AND (strategy."strTradeCategory" = 'Physical'::text) AND (strategy."strTradeType" = 'Sale'::text))))
LEFT JOIN vw_utility_book_dimension book ON (((sl.id = book."intTradeLineId") AND (book."strTradeCategory" = 'Physical'::text) AND (book."strTradeType" = 'Sale'::text))))
LEFT JOIN pricing_estimated bl ON (((sl.id = bl.line) AND ((bl.trigger)::text = 'bldate'::text))))
LEFT JOIN pricing_estimated bl ON (((sl.id = bl.sale_line) AND ((bl.trigger)::text = 'bldate'::text))))
WHERE ((1 = 1) AND ((sl.type)::text = 'line'::text));;

View File

@@ -0,0 +1,8 @@
CREATE OR REPLACE VIEW public.vw_utility_monthly_trade_ifrs_adjustments AS
SELECT apti.id AS "intAdjustmentId",
apti.date AS "dtmAdjustmentDate",
apti.amount AS "dblAmount",
cur.name AS "strCurrency",
apti.comment AS "strComments"
FROM (account_physical_trade_ifrs apti
JOIN currency_currency cur ON ((cur.id = apti.currency)));;

View File

@@ -0,0 +1,46 @@
CREATE OR REPLACE VIEW public.vw_utility_physical_mtm_definition AS
SELECT 'Purchase'::text AS "strContractType",
pp.id AS "intContractId",
pl.id AS "intContractLineId",
pl.quantity AS "dblLineQuantity",
ms.name AS "strStrategy",
msc.name AS "strScenario",
cur.symbol AS "strStrategyCurrency",
pc_mtm.price_source_type AS "strComponentPriceSource",
pc_mtm.ratio AS "strComponentRatioPct",
ft.name AS "strComponentFixType",
pi.price_desc AS "strComponentCurve",
pc_cal.name AS "strComponentCalendar"
FROM (((((((((purchase_strategy ps
JOIN purchase_line pl ON ((pl.id = ps.line)))
JOIN purchase_purchase pp ON ((pp.id = pl.purchase)))
JOIN mtm_strategy ms ON ((ms.id = ps.strategy)))
JOIN mtm_scenario msc ON ((msc.id = ms.scenario)))
JOIN currency_currency cur ON ((cur.id = ms.currency)))
LEFT JOIN pricing_component pc_mtm ON ((pc_mtm.strategy = ms.id)))
LEFT JOIN price_fixtype ft ON ((ft.id = pc_mtm.fix_type)))
LEFT JOIN price_price pi ON ((pi.id = pc_mtm.price_index)))
LEFT JOIN price_calendar pc_cal ON ((pc_cal.id = pc_mtm.calendar)))
UNION ALL
SELECT 'Sale'::text AS "strContractType",
ss.id AS "intContractId",
sl.id AS "intContractLineId",
sl.quantity AS "dblLineQuantity",
ms.name AS "strStrategy",
msc.name AS "strScenario",
cur.symbol AS "strStrategyCurrency",
pc_mtm.price_source_type AS "strComponentPriceSource",
pc_mtm.ratio AS "strComponentRatioPct",
ft.name AS "strComponentFixType",
pi.price_desc AS "strComponentCurve",
pc_cal.name AS "strComponentCalendar"
FROM (((((((((sale_strategy sa
JOIN sale_line sl ON ((sl.id = sa.sale_line)))
JOIN sale_sale ss ON ((ss.id = sl.sale)))
JOIN mtm_strategy ms ON ((ms.id = sa.strategy)))
JOIN mtm_scenario msc ON ((msc.id = ms.scenario)))
JOIN currency_currency cur ON ((cur.id = ms.currency)))
LEFT JOIN pricing_component pc_mtm ON ((pc_mtm.strategy = ms.id)))
LEFT JOIN price_fixtype ft ON ((ft.id = pc_mtm.fix_type)))
LEFT JOIN price_price pi ON ((pi.id = pc_mtm.price_index)))
LEFT JOIN price_calendar pc_cal ON ((pc_cal.id = pc_mtm.calendar)));;

View File

@@ -0,0 +1,30 @@
CREATE OR REPLACE VIEW public.vw_utility_physical_valuation_line AS
SELECT 'Purchase'::text AS "strContractType",
vvl.date AS "dtmValuationDate",
vvl.reference AS "strReference",
vvl.purchase AS "intContractId",
vvl.line AS "intContractLineId",
vvl.lot AS "intLotId",
vvl.quantity AS "dblQuantity",
initcap((vvl.state)::text) AS "strState",
vvl.price AS "dblPrice",
COALESCE(vvl.mtm_price, (0)::numeric) AS "dblMtmPrice",
vvl.amount AS "dblAmount",
vvl.base_amount AS "dblBaseAmount"
FROM valuation_valuation_line vvl
WHERE ((1 = 1) AND ((vvl.type)::text = 'pur. priced'::text) AND (COALESCE(vvl.lot, 0) > 0) AND (COALESCE(vvl.purchase, 0) > 0) AND (COALESCE(vvl.line, 0) > 0))
UNION ALL
SELECT 'Sale'::text AS "strContractType",
vvl.date AS "dtmValuationDate",
vvl.reference AS "strReference",
vvl.sale AS "intContractId",
vvl.sale_line AS "intContractLineId",
vvl.lot AS "intLotId",
vvl.quantity AS "dblQuantity",
initcap((vvl.state)::text) AS "strState",
vvl.price AS "dblPrice",
COALESCE(vvl.mtm_price, (0)::numeric) AS "dblMtmPrice",
vvl.amount AS "dblAmount",
vvl.base_amount AS "dblBaseAmount"
FROM valuation_valuation_line vvl
WHERE ((1 = 1) AND ((vvl.type)::text = 'sale priced'::text) AND (COALESCE(vvl.lot, 0) > 0) AND (COALESCE(vvl.sale, 0) > 0) AND (COALESCE(vvl.sale_line, 0) > 0));;

View File

@@ -628,7 +628,7 @@ WHERE 1=1
AND D.Status <> 'Cancelled'
AND D.BuyOrSell = 1 -- Purchase contracts
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
AND B.Description LIKE '%2025%'
AND B.Description LIKE '%2026%'
ORDER BY 3,1
@@ -831,8 +831,7 @@ WHERE 1=1
AND D.Status <> 'Cancelled'
AND D.BuyOrSell = -1 -- Sale contracts
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
--AND D.Reference = 2112
AND (B.Description LIKE '%2026%')
ORDER BY 3,1
@@ -862,7 +861,7 @@ SELECT
'Per qt' AS mode,
ROUND (
(IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue),
2 ) AS price,
3 ) AS price,
ER.UnitReference AS unit
FROM dbo.Deal AS D
@@ -875,14 +874,42 @@ WHERE 1=1
AND D.Status <> 'Cancelled'
AND D.BuyOrSell = 1 -- Purchase contracts
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
--AND (B.Description LIKE '%2025%')
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
AND (B.Description LIKE '%2026%')
AND ER.FormulaGroup NOT IN (1,2) -- Not Price or MtM
ORDER BY 1
SELECT PC.ContractNumber
, ER.FormulaGroup AS FormulaGroup
, er.Formula
, er.FormulaGroup
, s.[Description]
, CASE
WHEN ER.FormulaGroup IN (1, 2) THEN ISNULL(S.Description, IIF(PFE.FormulaType='Adjustment', PFE.FormulaType, IIF(PFE.IsDiscount = 0, 'Fixed Price ', 'Discount ' + ISNULL(PFE.Comment, ''))) )
ELSE BD.Description
END AS CostDescription
, (IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue) AS Price
, CASE
WHEN ER.FormulaGroup = 4 THEN -1 * CASE WHEN ER.IsRevenue = 1 THEN -1 ELSE 1 END
WHEN ER.FormulaGroup = 1 THEN -1 * CASE WHEN PFE.IsDiscount = 1 THEN -1 ELSE 1 END * PC.ContractMultiplier --Need to invert sign for the good amount vs qty
ELSE PC.ContractMultiplier
END * PC.CtrRemainingQty * (IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue) AS OpenCostAmount
FROM [singa].VW_REP_DIM_PHYSICAL_CTR PC
INNER JOIN dbo.Deal AS D ON D.Reference = PC.ContractNumber
INNER JOIN dbo.ExpenseRevenue AS ER ON ER.DealId = D.Id
INNER JOIN dbo.ExpenseRevenueValue AS ERV ON ER.EstimatedId = ERV.Id
INNER JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id
LEFT JOIN dbo.BaseDefinition AS BD ON ER.CostTypeId = BD.Id
LEFT JOIN price.Maturity AS M ON PFE.MaturityId = M.Id
LEFT JOIN price.Symbol AS S ON M.SymbolId = S.Id
WHERE 1=1
AND (PFE.IsManuallySet = 0 OR ER.FormulaGroup != 1 OR (S.Description IS NULL AND ER.FormulaGroup = 1)) --we want only price at contract level, so not manually set
AND ER.FormulaGroup = 2
-- Sale contract costs
SELECT
@@ -921,7 +948,7 @@ WHERE 1=1
AND D.Status <> 'Cancelled'
AND D.BuyOrSell <> 1 -- Sale contracts
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
AND (B.Description LIKE '%2026%')
AND ER.FormulaGroup NOT IN (1,2) -- Not Price or MtM
ORDER BY 1
@@ -957,12 +984,6 @@ AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
ORDER BY 1,2
SELECT DISTINCT formulaType FROM PriceFormulaElement
Trigger, RangeDate
-- Run that script to generate CSV for price_curve MTM used in physical contract in 2025 and 2026
SELECT DISTINCT

View File

@@ -9,12 +9,12 @@ SUPPLIER_STOCK_LOCATIONS_CSV = 'loaders/supplier_stock_locations.csv'
SERVICES_CSV = 'loaders/services.csv'
VESSELS_CSV = 'loaders/vessels.csv'
PURCHASE_CONTRACTS_CSV = 'C:/Users/SylvainDUVERNAY/Open Squared/Production - Documents/TRADON Implementation/ITSA/Reference Data/python_project/loaders/Purchase_Contracts_with_mapping.csv'
PURCHASE_CONTRACTS_CSV = 'Reference Data\python_project\loaders\Purchase_Contracts_with_mapping.csv'
PURCHASE_FEES_CSV = 'Reference Data\python_project\loaders\Purchase_Fees 2.csv'
SALE_CONTRACTS_CSV = 'Reference Data\python_project\loaders\Sale_Contracts_with_mapping.csv'
SALE_FEES_CSV = 'loaders/sale_fees.csv'
PRICES_CSV = 'loaders/Prices_6.csv'
SALE_FEES_CSV = 'Reference Data\python_project\loaders\sale_fees.csv'
PRICES_CSV = 'Reference Data\python_project\loaders\Prices.csv'
# XML-RPC Configuration (for Proteus interaction)

View File

@@ -0,0 +1,60 @@
ContractType,ContractNumber,EstimatedBlDate
P,2086,2026-04-01
S,2081,2026-04-01
S,2102,2026-04-01
S,2179,2026-04-01
P,2133,2026-04-08
S,2134,2026-04-08
P,2061,2026-04-15
P,2128,2026-04-27
S,2170,2026-04-27
P,2095,2026-05-01
P,2111,2026-05-01
P,2135,2026-05-01
S,2112,2026-05-01
S,2120,2026-05-01
S,2136,2026-05-01
S,2168,2026-05-01
P,2087,2026-06-01
P,2137,2026-06-01
S,2068,2026-06-01
S,2103,2026-06-01
S,2138,2026-06-01
P,2065,2026-06-03
S,2066,2026-06-03
P,2063,2026-06-12
S,2064,2026-06-12
P,2067,2026-07-01
P,2113,2026-07-01
P,2139,2026-07-01
S,2079,2026-07-01
S,2114,2026-07-01
S,2140,2026-07-01
P,2090,2026-07-12
P,2088,2026-08-01
P,2141,2026-08-01
S,2082,2026-08-01
S,2142,2026-08-01
P,2073,2026-08-05
P,2094,2026-09-01
P,2115,2026-09-01
P,2129,2026-09-01
P,2143,2026-09-01
S,2116,2026-09-01
S,2121,2026-09-01
S,2144,2026-09-01
P,2069,2026-09-05
S,2070,2026-09-05
P,2145,2026-10-01
S,2080,2026-10-01
S,2146,2026-10-01
P,2062,2026-10-05
P,2096,2026-11-01
P,2117,2026-11-01
P,2147,2026-11-01
S,2083,2026-11-01
S,2118,2026-11-01
S,2148,2026-11-01
P,2149,2026-12-01
S,2104,2026-12-01
S,2150,2026-12-01
1 ContractType ContractNumber EstimatedBlDate
2 P 2086 2026-04-01
3 S 2081 2026-04-01
4 S 2102 2026-04-01
5 S 2179 2026-04-01
6 P 2133 2026-04-08
7 S 2134 2026-04-08
8 P 2061 2026-04-15
9 P 2128 2026-04-27
10 S 2170 2026-04-27
11 P 2095 2026-05-01
12 P 2111 2026-05-01
13 P 2135 2026-05-01
14 S 2112 2026-05-01
15 S 2120 2026-05-01
16 S 2136 2026-05-01
17 S 2168 2026-05-01
18 P 2087 2026-06-01
19 P 2137 2026-06-01
20 S 2068 2026-06-01
21 S 2103 2026-06-01
22 S 2138 2026-06-01
23 P 2065 2026-06-03
24 S 2066 2026-06-03
25 P 2063 2026-06-12
26 S 2064 2026-06-12
27 P 2067 2026-07-01
28 P 2113 2026-07-01
29 P 2139 2026-07-01
30 S 2079 2026-07-01
31 S 2114 2026-07-01
32 S 2140 2026-07-01
33 P 2090 2026-07-12
34 P 2088 2026-08-01
35 P 2141 2026-08-01
36 S 2082 2026-08-01
37 S 2142 2026-08-01
38 P 2073 2026-08-05
39 P 2094 2026-09-01
40 P 2115 2026-09-01
41 P 2129 2026-09-01
42 P 2143 2026-09-01
43 S 2116 2026-09-01
44 S 2121 2026-09-01
45 S 2144 2026-09-01
46 P 2069 2026-09-05
47 S 2070 2026-09-05
48 P 2145 2026-10-01
49 S 2080 2026-10-01
50 S 2146 2026-10-01
51 P 2062 2026-10-05
52 P 2096 2026-11-01
53 P 2117 2026-11-01
54 P 2147 2026-11-01
55 S 2083 2026-11-01
56 S 2118 2026-11-01
57 S 2148 2026-11-01
58 P 2149 2026-12-01
59 S 2104 2026-12-01
60 S 2150 2026-12-01

View File

@@ -0,0 +1,60 @@
ContractType,ContractNumber,EstimatedBlDate
P,2086,4/1/2026
S,2081,4/1/2026
S,2102,4/1/2026
S,2179,4/1/2026
P,2133,4/8/2026
S,2134,4/8/2026
P,2061,4/15/2026
P,2128,4/27/2026
S,2170,4/27/2026
P,2095,5/1/2026
P,2111,5/1/2026
P,2135,5/1/2026
S,2112,5/1/2026
S,2120,5/1/2026
S,2136,5/1/2026
S,2168,5/1/2026
P,2087,6/1/2026
P,2137,6/1/2026
S,2068,6/1/2026
S,2103,6/1/2026
S,2138,6/1/2026
P,2065,6/3/2026
S,2066,6/3/2026
P,2063,6/12/2026
S,2064,6/12/2026
P,2067,7/1/2026
P,2113,7/1/2026
P,2139,7/1/2026
S,2079,7/1/2026
S,2114,7/1/2026
S,2140,7/1/2026
P,2090,7/12/2026
P,2088,8/1/2026
P,2141,8/1/2026
S,2082,8/1/2026
S,2142,8/1/2026
P,2073,8/5/2026
P,2094,9/1/2026
P,2115,9/1/2026
P,2129,9/1/2026
P,2143,9/1/2026
S,2116,9/1/2026
S,2121,9/1/2026
S,2144,9/1/2026
P,2069,9/5/2026
S,2070,9/5/2026
P,2145,10/1/2026
S,2080,10/1/2026
S,2146,10/1/2026
P,2062,10/5/2026
P,2096,11/1/2026
P,2117,11/1/2026
P,2147,11/1/2026
S,2083,11/1/2026
S,2118,11/1/2026
S,2148,11/1/2026
P,2149,12/1/2026
S,2104,12/1/2026
S,2150,12/1/2026
1 ContractType ContractNumber EstimatedBlDate
2 P 2086 4/1/2026
3 S 2081 4/1/2026
4 S 2102 4/1/2026
5 S 2179 4/1/2026
6 P 2133 4/8/2026
7 S 2134 4/8/2026
8 P 2061 4/15/2026
9 P 2128 4/27/2026
10 S 2170 4/27/2026
11 P 2095 5/1/2026
12 P 2111 5/1/2026
13 P 2135 5/1/2026
14 S 2112 5/1/2026
15 S 2120 5/1/2026
16 S 2136 5/1/2026
17 S 2168 5/1/2026
18 P 2087 6/1/2026
19 P 2137 6/1/2026
20 S 2068 6/1/2026
21 S 2103 6/1/2026
22 S 2138 6/1/2026
23 P 2065 6/3/2026
24 S 2066 6/3/2026
25 P 2063 6/12/2026
26 S 2064 6/12/2026
27 P 2067 7/1/2026
28 P 2113 7/1/2026
29 P 2139 7/1/2026
30 S 2079 7/1/2026
31 S 2114 7/1/2026
32 S 2140 7/1/2026
33 P 2090 7/12/2026
34 P 2088 8/1/2026
35 P 2141 8/1/2026
36 S 2082 8/1/2026
37 S 2142 8/1/2026
38 P 2073 8/5/2026
39 P 2094 9/1/2026
40 P 2115 9/1/2026
41 P 2129 9/1/2026
42 P 2143 9/1/2026
43 S 2116 9/1/2026
44 S 2121 9/1/2026
45 S 2144 9/1/2026
46 P 2069 9/5/2026
47 S 2070 9/5/2026
48 P 2145 10/1/2026
49 S 2080 10/1/2026
50 S 2146 10/1/2026
51 P 2062 10/5/2026
52 P 2096 11/1/2026
53 P 2117 11/1/2026
54 P 2147 11/1/2026
55 S 2083 11/1/2026
56 S 2118 11/1/2026
57 S 2148 11/1/2026
58 P 2149 12/1/2026
59 S 2104 12/1/2026
60 S 2150 12/1/2026

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,53 +0,0 @@
price_index,price_date,high_price,low_price,open_price,price_value
CFR Chile 2025-04,2024-04-05,123,123,123,123
CFR Chile 2025-04,2024-04-12,123,123,123,123
CFR Chile 2025-04,2024-04-19,123,123,123,123
CFR Chile 2025-04,2024-04-26,123,123,123,123
CFR Chile 2025-04,2024-05-03,123,123,123,123
CFR Chile 2025-04,2024-05-10,123,123,123,123
CFR Chile 2025-04,2024-05-16,123,123,123,123
CFR Chile 2025-04,2024-05-24,123,123,123,123
CFR Chile 2025-04,2024-05-31,123,123,123,123
CFR Chile 2025-04,2024-06-07,123,123,123,123
CFR Chile 2025-04,2024-06-14,126,126,126,126
CFR Chile 2025-04,2024-06-21,130,130,130,130
CFR Chile 2025-04,2024-06-28,130,130,130,130
CFR Chile 2025-04,2024-07-05,130,130,130,130
CFR Chile 2025-04,2024-07-12,130,130,130,130
CFR Chile 2025-04,2024-07-19,140,140,140,140
CFR Chile 2025-04,2024-07-23,140,140,140,140
CFR Chile 2025-04,2024-07-26,147,147,147,147
CFR Chile 2025-04,2024-08-02,147,147,147,147
CFR Chile 2025-04,2024-08-09,149,149,149,149
CFR Chile 2025-04,2024-08-16,150,150,150,150
CFR Chile 2025-04,2024-08-23,153,153,153,153
CFR Chile 2025-04,2024-08-30,153,153,153,153
CFR Chile 2025-04,2024-09-06,153,153,153,153
CFR Chile 2025-04,2024-09-13,153,153,153,153
CFR Chile 2025-04,2024-09-20,157,157,157,157
CFR Chile 2025-04,2024-09-27,159,159,159,159
CFR Chile 2025-04,2024-10-04,161,161,161,161
CFR Chile 2025-04,2024-10-11,161,161,161,161
CFR Chile 2025-04,2024-10-18,162,162,162,162
CFR Chile 2025-04,2024-10-25,162,162,162,162
CFR Chile 2025-04,2024-11-01,160,160,160,160
CFR Chile 2025-04,2024-11-08,154,154,154,154
CFR Chile 2025-04,2024-11-15,151,151,151,151
CFR Chile 2025-04,2024-11-22,151,151,151,151
CFR Chile 2025-04,2024-11-29,151,151,151,151
CFR Chile 2025-04,2024-12-06,152,152,152,152
CFR Chile 2025-04,2024-12-13,151,151,151,151
CFR Chile 2025-04,2024-12-20,150,150,150,150
CFR Chile 2025-04,2025-01-10,149,149,149,149
CFR Chile 2025-04,2025-01-17,150,150,150,150
CFR Chile 2025-04,2025-01-24,150,150,150,150
CFR Chile 2025-04,2025-01-31,149,149,149,149
CFR Chile 2025-04,2025-02-03,149,149,149,149
CFR Chile 2025-04,2025-02-07,145,145,145,145
CFR Chile 2025-04,2025-02-14,144,144,144,144
CFR Chile 2025-04,2025-02-21,144,144,144,144
CFR Chile 2025-04,2025-02-28,142,142,142,142
CFR Chile 2025-04,2025-03-07,142,142,142,142
CFR Chile 2025-04,2025-03-14,145,145,145,145
CFR Chile 2025-04,2025-03-21,150,150,150,150
CFR Chile 2025-04,2025-03-28,160,160,160,160
1 price_index price_date high_price low_price open_price price_value
2 CFR Chile 2025-04 2024-04-05 123 123 123 123
3 CFR Chile 2025-04 2024-04-12 123 123 123 123
4 CFR Chile 2025-04 2024-04-19 123 123 123 123
5 CFR Chile 2025-04 2024-04-26 123 123 123 123
6 CFR Chile 2025-04 2024-05-03 123 123 123 123
7 CFR Chile 2025-04 2024-05-10 123 123 123 123
8 CFR Chile 2025-04 2024-05-16 123 123 123 123
9 CFR Chile 2025-04 2024-05-24 123 123 123 123
10 CFR Chile 2025-04 2024-05-31 123 123 123 123
11 CFR Chile 2025-04 2024-06-07 123 123 123 123
12 CFR Chile 2025-04 2024-06-14 126 126 126 126
13 CFR Chile 2025-04 2024-06-21 130 130 130 130
14 CFR Chile 2025-04 2024-06-28 130 130 130 130
15 CFR Chile 2025-04 2024-07-05 130 130 130 130
16 CFR Chile 2025-04 2024-07-12 130 130 130 130
17 CFR Chile 2025-04 2024-07-19 140 140 140 140
18 CFR Chile 2025-04 2024-07-23 140 140 140 140
19 CFR Chile 2025-04 2024-07-26 147 147 147 147
20 CFR Chile 2025-04 2024-08-02 147 147 147 147
21 CFR Chile 2025-04 2024-08-09 149 149 149 149
22 CFR Chile 2025-04 2024-08-16 150 150 150 150
23 CFR Chile 2025-04 2024-08-23 153 153 153 153
24 CFR Chile 2025-04 2024-08-30 153 153 153 153
25 CFR Chile 2025-04 2024-09-06 153 153 153 153
26 CFR Chile 2025-04 2024-09-13 153 153 153 153
27 CFR Chile 2025-04 2024-09-20 157 157 157 157
28 CFR Chile 2025-04 2024-09-27 159 159 159 159
29 CFR Chile 2025-04 2024-10-04 161 161 161 161
30 CFR Chile 2025-04 2024-10-11 161 161 161 161
31 CFR Chile 2025-04 2024-10-18 162 162 162 162
32 CFR Chile 2025-04 2024-10-25 162 162 162 162
33 CFR Chile 2025-04 2024-11-01 160 160 160 160
34 CFR Chile 2025-04 2024-11-08 154 154 154 154
35 CFR Chile 2025-04 2024-11-15 151 151 151 151
36 CFR Chile 2025-04 2024-11-22 151 151 151 151
37 CFR Chile 2025-04 2024-11-29 151 151 151 151
38 CFR Chile 2025-04 2024-12-06 152 152 152 152
39 CFR Chile 2025-04 2024-12-13 151 151 151 151
40 CFR Chile 2025-04 2024-12-20 150 150 150 150
41 CFR Chile 2025-04 2025-01-10 149 149 149 149
42 CFR Chile 2025-04 2025-01-17 150 150 150 150
43 CFR Chile 2025-04 2025-01-24 150 150 150 150
44 CFR Chile 2025-04 2025-01-31 149 149 149 149
45 CFR Chile 2025-04 2025-02-03 149 149 149 149
46 CFR Chile 2025-04 2025-02-07 145 145 145 145
47 CFR Chile 2025-04 2025-02-14 144 144 144 144
48 CFR Chile 2025-04 2025-02-21 144 144 144 144
49 CFR Chile 2025-04 2025-02-28 142 142 142 142
50 CFR Chile 2025-04 2025-03-07 142 142 142 142
51 CFR Chile 2025-04 2025-03-14 145 145 145 145
52 CFR Chile 2025-04 2025-03-21 150 150 150 150
53 CFR Chile 2025-04 2025-03-28 160 160 160 160

View File

@@ -1,559 +0,0 @@
price_index,price_date,high_price,low_price,open_price,price_value
Sulphuric acid fob South Korea/Japan spot,2026-02-26,135,135,135,135
Sulphuric acid fob South Korea/Japan spot,2026-02-19,135,135,135,135
Sulphuric acid fob South Korea/Japan spot,2026-02-12,130,130,130,130
CFR Gladstone 2026-03,2026-02-06,217,217,217,217
CFR India 2026-04,2026-02-06,165,165,165,165
FOB China 2026-03,2026-02-06,130,130,130,130
FOB NWE 2026-03,2026-02-06,127.5,127.5,127.5,127.5
Sulphuric acid fob South Korea/Japan spot,2026-02-05,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2026-01-29,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2026-01-22,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2026-01-15,108,108,108,108
CFR Gladstone 2026-03,2026-01-09,202,202,202,202
CFR India 2026-04,2026-01-09,154,154,154,154
FOB China 2026-03,2026-01-09,125,125,125,125
FOB NWE 2026-03,2026-01-09,122,122,122,122
Sulphuric acid fob South Korea/Japan spot,2026-01-08,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2026-01-02,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-12-18,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-12-11,108,108,108,108
CFR Gladstone 2026-03,2025-12-05,192,192,192,192
CFR India 2026-04,2025-12-05,134,134,134,134
CFR LXML Fixed price 2026-01,2025-12-05,82.4,82.4,82.4,82.4
FOB China 2026-03,2025-12-05,105,105,105,105
FOB NWE 2026-03,2025-12-05,102,102,102,102
Sulphuric acid fob South Korea/Japan spot,2025-12-04,108,108,108,108
CFR Gladstone 2026-03,2025-12-01,192,192,192,192
CFR India 2026-04,2025-12-01,134,134,134,134
CFR LXML Fixed price 2026-01,2025-12-01,105,105,105,105
FOB China 2026-03,2025-12-01,105,105,105,105
FOB NWE 2026-03,2025-12-01,102,102,102,102
Sulphuric acid fob South Korea/Japan spot,2025-11-27,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-20,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-13,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-06,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-10-30,83,83,83,83
Sulphuric acid fob South Korea/Japan spot,2025-10-23,78,78,78,78
Sulphuric acid fob South Korea/Japan spot,2025-10-16,73,73,73,73
Sulphuric acid fob South Korea/Japan spot,2025-10-09,61,61,61,61
CFR Gladstone 2025-12,2025-10-03,155,155,155,155
CFR Gladstone 2026-03,2025-10-03,152,152,152,152
CFR India 2026-04,2025-10-03,99,99,99,99
CFR LXML Fixed price 2026-01,2025-10-03,75,75,75,75
FOB China 2026-03,2025-10-03,65,65,65,65
FOB NWE 2026-03,2025-10-03,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-10-02,61,61,61,61
Sulphuric acid fob South Korea/Japan spot,2025-09-25,61,61,61,61
Sulphuric acid fob South Korea/Japan spot,2025-09-18,63,63,63,63
CFR Chile 2025-10,2025-09-12,155,155,155,155
CFR Gladstone 2025-12,2025-09-12,157,157,157,157
CFR Gladstone 2026-03,2025-09-12,157,157,157,157
CFR India 2026-04,2025-09-12,104,104,104,104
CFR LXML Fixed price 2026-01,2025-09-12,75,75,75,75
FOB China 2026-03,2025-09-12,70,70,70,70
FOB Japan/South Korea 2025-10,2025-09-12,70,70,70,70
FOB NWE 2026-03,2025-09-12,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2025-09-11,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-09-04,74,74,74,74
Sulphuric acid fob South Korea/Japan spot,2025-08-28,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-08-21,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-08-14,80,80,80,80
CFR Chile 2025-10,2025-08-11,175,175,175,175
CFR Gladstone 2025-12,2025-08-11,177,177,177,177
CFR Gladstone 2026-03,2025-08-11,167,167,167,167
CFR India 2026-04,2025-08-11,119,119,119,119
CFR LXML Fixed price 2026-01,2025-08-11,75,75,75,75
FOB China 2026-03,2025-08-11,80,80,80,80
FOB Japan/South Korea 2025-10,2025-08-11,88,88,88,88
FOB NWE 2026-03,2025-08-11,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2025-08-07,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-31,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-24,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-17,80,80,80,80
CFR Chile 2025-10,2025-07-11,179,179,179,179
FOB Japan/South Korea 2025-10,2025-07-11,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2025-07-10,80,80,80,80
CFR Chile 2025-10,2025-07-04,179,179,179,179
CFR Gladstone 2025-12,2025-07-04,172,172,172,172
CFR Gladstone 2026-03,2025-07-04,167,167,167,167
CFR India 2026-04,2025-07-04,114,114,114,114
CFR LXML Fixed price 2026-01,2025-07-04,75,75,75,75
FOB China 2026-03,2025-07-04,80,80,80,80
FOB Japan/South Korea 2025-10,2025-07-04,90,90,90,90
FOB NWE 2026-03,2025-07-04,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2025-07-03,80,80,80,80
CFR Gladstone 2026-03,2025-07-02,167,167,167,167
CFR India 2026-04,2025-07-02,114,114,114,114
FOB China 2026-03,2025-07-02,80,80,80,80
FOB NWE 2026-03,2025-07-02,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2025-06-26,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-06-19,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-06-12,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-06-05,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-05-29,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-05-22,67,67,67,67
Sulphuric acid fob South Korea/Japan spot,2025-05-15,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-05-08,65,65,65,65
CFR Chile 2025-10,2025-05-02,150,150,150,150
CFR Gladstone 2025-12,2025-05-02,139,139,139,139
CFR Gladstone 2026-03,2025-05-02,139,139,139,139
CFR India 2026-04,2025-05-02,90,90,90,90
CFR LXML Fixed price 2026-01,2025-05-02,75,75,75,75
FOB China 2026-03,2025-05-02,50,50,50,50
FOB Japan/South Korea 2025-10,2025-05-02,50,50,50,50
FOB NWE 2026-03,2025-05-02,82,82,82,82
Sulphuric acid fob South Korea/Japan spot,2025-05-01,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-04-24,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-04-17,65,65,65,65
CFR Chile 2025-05,2025-04-11,165,165,165,165
CFR Chile 2025-10,2025-04-11,148,148,148,148
CFR Gladstone 2025-12,2025-04-11,136,136,136,136
CFR Gladstone 2026-03,2025-04-11,136,136,136,136
CFR India 2026-04,2025-04-11,88,88,88,88
CFR LXML Fixed price 2026-01,2025-04-11,75,75,75,75
FOB China 2026-03,2025-04-11,46,46,46,46
FOB Japan/South Korea 2025-10,2025-04-11,50,50,50,50
FOB NWE 2026-03,2025-04-11,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-04-10,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2025-04-03,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2025-03-27,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2025-03-20,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2025-03-13,50,50,50,50
CFR Chile 2025-05,2025-03-07,142,142,142,142
CFR Chile 2025-10,2025-03-07,140,140,140,140
CFR Gladstone 2025-12,2025-03-07,136,136,136,136
CFR Gladstone 2026-03,2025-03-07,136,136,136,136
CFR LXML Fixed price 2026-01,2025-03-07,75,75,75,75
CFR US Gulf 2025-04,2025-03-07,120,120,120,120
FOB China 2026-03,2025-03-07,46,46,46,46
FOB Japan/South Korea 2025-10,2025-03-07,42,42,42,42
FOB NWE 2026-03,2025-03-07,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-03-06,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2025-02-27,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2025-02-20,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-02-13,43,43,43,43
CFR Chile 2025-05,2025-02-07,145,145,145,145
CFR SEA 2025-03,2025-02-07,78.68,78.68,78.68,78.68
CFR US Gulf 2025-04,2025-02-07,135,135,135,135
Sulphuric acid fob South Korea/Japan spot,2025-02-06,43,43,43,43
CFR Chile 2025-05,2025-02-03,149,149,149,149
CFR Chile 2025-10,2025-02-03,149,149,149,149
CFR Gladstone 2025-12,2025-02-03,136,136,136,136
CFR LXML Fixed price 2026-01,2025-02-03,75,75,75,75
CFR SEA 2025-03,2025-02-03,82.68,82.68,82.68,82.68
CFR US Gulf 2025-04,2025-02-03,136,136,136,136
FOB Japan/South Korea 2025-10,2025-02-03,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2025-01-30,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-01-23,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-01-16,45,45,45,45
CFR Chile 2025-05,2025-01-10,149,149,149,149
CFR Chile 2025-10,2025-01-10,149,149,149,149
CFR Gladstone 2025-12,2025-01-10,135,135,135,135
CFR LXML Fixed price 2026-01,2025-01-10,75,75,75,75
CFR SEA 2025-03,2025-01-10,82.68,82.68,82.68,82.68
CFR US Gulf 2025-04,2025-01-10,139,139,139,139
FOB Japan/South Korea 2025-10,2025-01-10,41,41,41,41
Sulphuric acid fob South Korea/Japan spot,2025-01-09,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2025-01-03,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-12-19,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-12-12,44,44,44,44
CFR Chile 2025-05,2024-12-06,152,152,152,152
CFR Chile 2025-10,2024-12-06,152,152,152,152
CFR Gladstone 2025-12,2024-12-06,136,136,136,136
CFR SEA 2025-03,2024-12-06,80.68,80.68,80.68,80.68
CFR US Gulf 2025-04,2024-12-06,134,134,134,134
FOB Japan/South Korea 2025-10,2024-12-06,41,41,41,41
Sulphuric acid fob South Korea/Japan spot,2024-12-05,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2024-11-28,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2024-11-21,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-11-14,48,48,48,48
CFR Chile 2025-05,2024-11-08,154,154,154,154
CFR Chile 2025-10,2024-11-08,154,154,154,154
CFR SEA 2025-03,2024-11-08,75.68,75.68,75.68,75.68
CFR US Gulf 2025-04,2024-11-08,131,131,131,131
FOB Japan/South Korea 2025-10,2024-11-08,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2024-11-07,48,48,48,48
CFR Chile 2025-05,2024-11-01,160,160,160,160
CFR Chile 2025-10,2024-11-01,160,160,160,160
CFR SEA 2025-03,2024-11-01,76.68,76.68,76.68,76.68
CFR US Gulf 2025-04,2024-11-01,131,131,131,131
FOB Japan/South Korea 2025-10,2024-11-01,41,41,41,41
Sulphuric acid fob South Korea/Japan spot,2024-10-31,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-10-24,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-10-17,48,48,48,48
CFR Chile 2025-05,2024-10-11,161,161,161,161
CFR Chile 2025-10,2024-10-11,161,161,161,161
CFR SEA 2025-03,2024-10-11,77.68,77.68,77.68,77.68
CFR US Gulf 2025-04,2024-10-11,132,132,132,132
FOB Japan/South Korea 2025-10,2024-10-11,39,39,39,39
Sulphuric acid fob South Korea/Japan spot,2024-10-10,45,45,45,45
CFR Chile 2025-05,2024-10-04,161,161,161,161
CFR Chile 2025-10,2024-10-04,161,161,161,161
CFR SEA 2025-03,2024-10-04,75.68,75.68,75.68,75.68
CFR US Gulf 2025-04,2024-10-04,128,128,128,128
FOB Japan/South Korea 2025-10,2024-10-04,39,39,39,39
Sulphuric acid fob South Korea/Japan spot,2024-10-03,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-09-26,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-09-19,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-09-12,44,44,44,44
CFR Chile 2025-05,2024-09-06,153,153,153,153
CFR SEA 2025-03,2024-09-06,69.18,69.18,69.18,69.18
CFR US Gulf 2025-04,2024-09-06,109,109,109,109
Sulphuric acid fob South Korea/Japan spot,2024-09-05,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-08-29,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2024-08-22,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-08-15,40,40,40,40
CFR Chile 2025-05,2024-08-09,149,149,149,149
CFR SEA 2025-03,2024-08-09,67.75,67.75,67.75,67.75
CFR US Gulf 2025-04,2024-08-09,96,96,96,96
Sulphuric acid fob South Korea/Japan spot,2024-08-08,40,40,40,40
CFR Chile 2025-05,2024-08-02,147,147,147,147
CFR SEA 2025-03,2024-08-02,65.25,65.25,65.25,65.25
CFR US Gulf 2025-04,2024-08-02,96,96,96,96
Sulphuric acid fob South Korea/Japan spot,2024-08-01,37,37,37,37
Sulphuric acid fob South Korea/Japan spot,2024-07-25,37,37,37,37
Sulphuric acid fob South Korea/Japan spot,2024-07-18,30,30,30,30
CFR Chile 2025-05,2024-07-12,130,130,130,130
CFR SEA 2025-03,2024-07-12,58.25,58.25,58.25,58.25
CFR US Gulf 2025-04,2024-07-12,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2024-07-11,28,28,28,28
CFR Chile 2025-05,2024-07-05,130,130,130,130
CFR SEA 2025-03,2024-07-05,58.25,58.25,58.25,58.25
CFR US Gulf 2025-04,2024-07-05,92,92,92,92
Sulphuric acid fob South Korea/Japan spot,2024-07-04,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2024-06-27,22,22,22,22
Sulphuric acid fob South Korea/Japan spot,2024-06-20,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2024-06-13,15,15,15,15
CFR Chile 2025-05,2024-06-07,123,123,123,123
CFR SEA 2025-03,2024-06-07,51.58,51.58,51.58,51.58
CFR US Gulf 2025-04,2024-06-07,92,92,92,92
Sulphuric acid fob South Korea/Japan spot,2024-06-06,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-30,12,12,12,12
Sulphuric acid fob South Korea/Japan spot,2024-05-23,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-16,15,15,15,15
CFR Chile 2025-05,2024-05-10,123,123,123,123
CFR SEA 2025-03,2024-05-10,51.08,51.08,51.08,51.08
CFR US Gulf 2025-04,2024-05-10,92,92,92,92
Sulphuric acid fob South Korea/Japan spot,2024-05-09,15,15,15,15
CFR Chile 2025-05,2024-05-03,123,123,123,123
CFR SEA 2025-03,2024-05-03,51.08,51.08,51.08,51.08
CFR US Gulf 2025-04,2024-05-03,92,92,92,92
Sulphuric acid fob South Korea/Japan spot,2024-05-02,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-04-25,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-04-18,15,15,15,15
CFR SEA 2025-03,2024-04-12,51.08,51.08,51.08,51.08
CFR US Gulf 2025-04,2024-04-12,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2024-04-11,10,10,10,10
CFR SEA 2025-03,2024-04-05,51.08,51.08,51.08,51.08
CFR US Gulf 2025-04,2024-04-05,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2024-04-04,6,6,6,6
Sulphuric acid fob South Korea/Japan spot,2024-03-28,2,2,2,2
Sulphuric acid fob South Korea/Japan spot,2024-03-21,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2024-03-14,5,5,5,5
CFR SEA 2025-03,2024-03-08,46.08,46.08,46.08,46.08
Sulphuric acid fob South Korea/Japan spot,2024-03-07,2,2,2,2
CFR SEA 2025-03,2024-03-01,48.08,48.08,48.08,48.08
Sulphuric acid fob South Korea/Japan spot,2024-02-29,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-02-22,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-02-15,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-02-08,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-02-01,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-01-25,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-18,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-11,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-04,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-12-21,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-12-14,12,12,12,12
Sulphuric acid fob South Korea/Japan spot,2023-12-07,16,16,16,16
Sulphuric acid fob South Korea/Japan spot,2023-11-30,23,23,23,23
Sulphuric acid fob South Korea/Japan spot,2023-11-23,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2023-11-16,27,27,27,27
Sulphuric acid fob South Korea/Japan spot,2023-11-09,32,32,32,32
Sulphuric acid fob South Korea/Japan spot,2023-11-02,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2023-10-26,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-10-19,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2023-10-12,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-10-05,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-09-28,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-09-21,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-09-14,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-09-07,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2023-08-31,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2023-08-24,18,18,18,18
Sulphuric acid fob South Korea/Japan spot,2023-08-17,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-08-10,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-08-03,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-07-27,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2023-07-20,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2023-07-13,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-07-06,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-06-29,-7,-7,-7,-7
Sulphuric acid fob South Korea/Japan spot,2023-06-22,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-06-15,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-08,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-01,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-05-25,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-05-18,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-11,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-04,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-27,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-20,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-13,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-06,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-03-30,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-03-23,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-03-16,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-03-09,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-03-02,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-02-23,-18,-18,-18,-18
Sulphuric acid fob South Korea/Japan spot,2023-02-16,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2023-02-09,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2023-02-02,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-01-26,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-19,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-12,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-05,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-22,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-15,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-08,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-01,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-24,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-17,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-10,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-03,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-10-27,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-10-20,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-10-13,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2022-10-06,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2022-09-29,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-22,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-15,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-08,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-01,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2022-08-25,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2022-08-18,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2022-08-11,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2022-08-04,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-07-28,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-07-21,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-07-14,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-07-07,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-06-30,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-23,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-16,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-09,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-01,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-26,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-19,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-12,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-05,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-04-28,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-04-21,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-04-14,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-04-07,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-03-31,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-03-24,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-03-17,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-03-10,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-03-03,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2022-02-24,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-17,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-10,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-03,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-27,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-20,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-13,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-06,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-12-23,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-12-16,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-12-09,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-12-02,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-11-25,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-11-18,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-11-11,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-11-04,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-28,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-21,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-14,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-07,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-09-30,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-09-23,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-16,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-09,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-02,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-08-26,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-08-19,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-08-12,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2021-08-05,105,105,105,105
Sulphuric acid fob South Korea/Japan spot,2021-07-29,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2021-07-22,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-15,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-08,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-01,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-06-24,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-06-17,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-06-10,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-06-03,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-27,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-20,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-13,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-06,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-04-29,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2021-04-22,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2021-04-15,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-08,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-01,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-03-25,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-03-18,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-03-11,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2021-03-04,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2021-02-25,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2021-02-18,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2021-02-11,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-02-04,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-01-28,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-01-21,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2021-01-14,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2021-01-07,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-23,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-17,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-10,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-03,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2020-11-26,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2020-11-19,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-11-12,-4,-4,-4,-4
Sulphuric acid fob South Korea/Japan spot,2020-11-05,-6,-6,-6,-6
Sulphuric acid fob South Korea/Japan spot,2020-10-29,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-10-22,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-10-15,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-10-08,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2020-10-01,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2020-09-24,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-09-17,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-09-10,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-09-03,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2020-08-27,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-08-20,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-08-13,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-08-06,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-30,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-23,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-16,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-09,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-02,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-25,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-18,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-11,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-04,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-05-28,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-05-21,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-05-14,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-05-07,-25,-25,-25,-25
Sulphuric acid fob South Korea/Japan spot,2020-04-30,-35,-35,-35,-35
Sulphuric acid fob South Korea/Japan spot,2020-04-23,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-04-16,-45,-45,-45,-45
Sulphuric acid fob South Korea/Japan spot,2020-04-09,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-04-02,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-03-26,-30,-30,-30,-30
Sulphuric acid fob South Korea/Japan spot,2020-03-19,-30,-30,-30,-30
Sulphuric acid fob South Korea/Japan spot,2020-03-12,-25,-25,-25,-25
Sulphuric acid fob South Korea/Japan spot,2020-03-05,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-02-27,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-02-20,-11,-11,-11,-11
Sulphuric acid fob South Korea/Japan spot,2020-02-13,-11,-11,-11,-11
Sulphuric acid fob South Korea/Japan spot,2020-02-06,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2020-01-30,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-01-23,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-01-16,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-01-09,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2020-01-03,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2019-12-19,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2019-12-12,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-12-05,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-28,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-21,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-14,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-07,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-10-31,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-10-24,8,8,8,8
Sulphuric acid fob South Korea/Japan spot,2019-10-17,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-10,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-03,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-09-26,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-09-19,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-12,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-05,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-29,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-22,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-15,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-08,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-08-01,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-25,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-18,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-11,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-04,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-27,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-20,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-13,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-06,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-05-30,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2019-05-23,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2019-05-16,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2019-05-09,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2019-05-02,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2019-04-25,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2019-04-18,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2019-04-11,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2019-04-04,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2019-03-28,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-21,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-14,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-07,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-02-28,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-02-21,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-02-14,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-02-07,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2019-01-31,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2019-01-24,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2019-01-17,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-10,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-03,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-20,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-13,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-06,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-29,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-22,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-15,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-08,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-01,67,67,67,67
Sulphuric acid fob South Korea/Japan spot,2018-10-25,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2018-10-18,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2018-10-11,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-10-04,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-09-27,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-09-20,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2018-09-13,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2018-09-06,52,52,52,52
Sulphuric acid fob South Korea/Japan spot,2018-08-30,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-23,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-16,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-09,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-02,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-07-26,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-07-19,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2018-07-12,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2018-07-05,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2018-06-28,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-21,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-14,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-07,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-05-31,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-05-24,30,30,30,30
Sulphuric acid fob South Korea/Japan spot,2018-05-17,30,30,30,30
Sulphuric acid fob South Korea/Japan spot,2018-05-10,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-05-03,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-26,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-19,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-12,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-05,25,25,25,25
1 price_index price_date high_price low_price open_price price_value
2 Sulphuric acid fob South Korea/Japan spot 2026-02-26 135 135 135 135
3 Sulphuric acid fob South Korea/Japan spot 2026-02-19 135 135 135 135
4 Sulphuric acid fob South Korea/Japan spot 2026-02-12 130 130 130 130
5 CFR Gladstone 2026-03 2026-02-06 217 217 217 217
6 CFR India 2026-04 2026-02-06 165 165 165 165
7 FOB China 2026-03 2026-02-06 130 130 130 130
8 FOB NWE 2026-03 2026-02-06 127.5 127.5 127.5 127.5
9 Sulphuric acid fob South Korea/Japan spot 2026-02-05 130 130 130 130
10 Sulphuric acid fob South Korea/Japan spot 2026-01-29 125 125 125 125
11 Sulphuric acid fob South Korea/Japan spot 2026-01-22 115 115 115 115
12 Sulphuric acid fob South Korea/Japan spot 2026-01-15 108 108 108 108
13 CFR Gladstone 2026-03 2026-01-09 202 202 202 202
14 CFR India 2026-04 2026-01-09 154 154 154 154
15 FOB China 2026-03 2026-01-09 125 125 125 125
16 FOB NWE 2026-03 2026-01-09 122 122 122 122
17 Sulphuric acid fob South Korea/Japan spot 2026-01-08 108 108 108 108
18 Sulphuric acid fob South Korea/Japan spot 2026-01-02 108 108 108 108
19 Sulphuric acid fob South Korea/Japan spot 2025-12-18 108 108 108 108
20 Sulphuric acid fob South Korea/Japan spot 2025-12-11 108 108 108 108
21 CFR Gladstone 2026-03 2025-12-05 192 192 192 192
22 CFR India 2026-04 2025-12-05 134 134 134 134
23 CFR LXML Fixed price 2026-01 2025-12-05 82.4 82.4 82.4 82.4
24 FOB China 2026-03 2025-12-05 105 105 105 105
25 FOB NWE 2026-03 2025-12-05 102 102 102 102
26 Sulphuric acid fob South Korea/Japan spot 2025-12-04 108 108 108 108
27 CFR Gladstone 2026-03 2025-12-01 192 192 192 192
28 CFR India 2026-04 2025-12-01 134 134 134 134
29 CFR LXML Fixed price 2026-01 2025-12-01 105 105 105 105
30 FOB China 2026-03 2025-12-01 105 105 105 105
31 FOB NWE 2026-03 2025-12-01 102 102 102 102
32 Sulphuric acid fob South Korea/Japan spot 2025-11-27 108 108 108 108
33 Sulphuric acid fob South Korea/Japan spot 2025-11-20 108 108 108 108
34 Sulphuric acid fob South Korea/Japan spot 2025-11-13 108 108 108 108
35 Sulphuric acid fob South Korea/Japan spot 2025-11-06 108 108 108 108
36 Sulphuric acid fob South Korea/Japan spot 2025-10-30 83 83 83 83
37 Sulphuric acid fob South Korea/Japan spot 2025-10-23 78 78 78 78
38 Sulphuric acid fob South Korea/Japan spot 2025-10-16 73 73 73 73
39 Sulphuric acid fob South Korea/Japan spot 2025-10-09 61 61 61 61
40 CFR Gladstone 2025-12 2025-10-03 155 155 155 155
41 CFR Gladstone 2026-03 2025-10-03 152 152 152 152
42 CFR India 2026-04 2025-10-03 99 99 99 99
43 CFR LXML Fixed price 2026-01 2025-10-03 75 75 75 75
44 FOB China 2026-03 2025-10-03 65 65 65 65
45 FOB NWE 2026-03 2025-10-03 75 75 75 75
46 Sulphuric acid fob South Korea/Japan spot 2025-10-02 61 61 61 61
47 Sulphuric acid fob South Korea/Japan spot 2025-09-25 61 61 61 61
48 Sulphuric acid fob South Korea/Japan spot 2025-09-18 63 63 63 63
49 CFR Chile 2025-10 2025-09-12 155 155 155 155
50 CFR Gladstone 2025-12 2025-09-12 157 157 157 157
51 CFR Gladstone 2026-03 2025-09-12 157 157 157 157
52 CFR India 2026-04 2025-09-12 104 104 104 104
53 CFR LXML Fixed price 2026-01 2025-09-12 75 75 75 75
54 FOB China 2026-03 2025-09-12 70 70 70 70
55 FOB Japan/South Korea 2025-10 2025-09-12 70 70 70 70
56 FOB NWE 2026-03 2025-09-12 60 60 60 60
57 Sulphuric acid fob South Korea/Japan spot 2025-09-11 70 70 70 70
58 Sulphuric acid fob South Korea/Japan spot 2025-09-04 74 74 74 74
59 Sulphuric acid fob South Korea/Japan spot 2025-08-28 75 75 75 75
60 Sulphuric acid fob South Korea/Japan spot 2025-08-21 75 75 75 75
61 Sulphuric acid fob South Korea/Japan spot 2025-08-14 80 80 80 80
62 CFR Chile 2025-10 2025-08-11 175 175 175 175
63 CFR Gladstone 2025-12 2025-08-11 177 177 177 177
64 CFR Gladstone 2026-03 2025-08-11 167 167 167 167
65 CFR India 2026-04 2025-08-11 119 119 119 119
66 CFR LXML Fixed price 2026-01 2025-08-11 75 75 75 75
67 FOB China 2026-03 2025-08-11 80 80 80 80
68 FOB Japan/South Korea 2025-10 2025-08-11 88 88 88 88
69 FOB NWE 2026-03 2025-08-11 100 100 100 100
70 Sulphuric acid fob South Korea/Japan spot 2025-08-07 80 80 80 80
71 Sulphuric acid fob South Korea/Japan spot 2025-07-31 80 80 80 80
72 Sulphuric acid fob South Korea/Japan spot 2025-07-24 80 80 80 80
73 Sulphuric acid fob South Korea/Japan spot 2025-07-17 80 80 80 80
74 CFR Chile 2025-10 2025-07-11 179 179 179 179
75 FOB Japan/South Korea 2025-10 2025-07-11 90 90 90 90
76 Sulphuric acid fob South Korea/Japan spot 2025-07-10 80 80 80 80
77 CFR Chile 2025-10 2025-07-04 179 179 179 179
78 CFR Gladstone 2025-12 2025-07-04 172 172 172 172
79 CFR Gladstone 2026-03 2025-07-04 167 167 167 167
80 CFR India 2026-04 2025-07-04 114 114 114 114
81 CFR LXML Fixed price 2026-01 2025-07-04 75 75 75 75
82 FOB China 2026-03 2025-07-04 80 80 80 80
83 FOB Japan/South Korea 2025-10 2025-07-04 90 90 90 90
84 FOB NWE 2026-03 2025-07-04 100 100 100 100
85 Sulphuric acid fob South Korea/Japan spot 2025-07-03 80 80 80 80
86 CFR Gladstone 2026-03 2025-07-02 167 167 167 167
87 CFR India 2026-04 2025-07-02 114 114 114 114
88 FOB China 2026-03 2025-07-02 80 80 80 80
89 FOB NWE 2026-03 2025-07-02 100 100 100 100
90 Sulphuric acid fob South Korea/Japan spot 2025-06-26 80 80 80 80
91 Sulphuric acid fob South Korea/Japan spot 2025-06-19 75 75 75 75
92 Sulphuric acid fob South Korea/Japan spot 2025-06-12 75 75 75 75
93 Sulphuric acid fob South Korea/Japan spot 2025-06-05 70 70 70 70
94 Sulphuric acid fob South Korea/Japan spot 2025-05-29 70 70 70 70
95 Sulphuric acid fob South Korea/Japan spot 2025-05-22 67 67 67 67
96 Sulphuric acid fob South Korea/Japan spot 2025-05-15 65 65 65 65
97 Sulphuric acid fob South Korea/Japan spot 2025-05-08 65 65 65 65
98 CFR Chile 2025-10 2025-05-02 150 150 150 150
99 CFR Gladstone 2025-12 2025-05-02 139 139 139 139
100 CFR Gladstone 2026-03 2025-05-02 139 139 139 139
101 CFR India 2026-04 2025-05-02 90 90 90 90
102 CFR LXML Fixed price 2026-01 2025-05-02 75 75 75 75
103 FOB China 2026-03 2025-05-02 50 50 50 50
104 FOB Japan/South Korea 2025-10 2025-05-02 50 50 50 50
105 FOB NWE 2026-03 2025-05-02 82 82 82 82
106 Sulphuric acid fob South Korea/Japan spot 2025-05-01 65 65 65 65
107 Sulphuric acid fob South Korea/Japan spot 2025-04-24 65 65 65 65
108 Sulphuric acid fob South Korea/Japan spot 2025-04-17 65 65 65 65
109 CFR Chile 2025-05 2025-04-11 165 165 165 165
110 CFR Chile 2025-10 2025-04-11 148 148 148 148
111 CFR Gladstone 2025-12 2025-04-11 136 136 136 136
112 CFR Gladstone 2026-03 2025-04-11 136 136 136 136
113 CFR India 2026-04 2025-04-11 88 88 88 88
114 CFR LXML Fixed price 2026-01 2025-04-11 75 75 75 75
115 FOB China 2026-03 2025-04-11 46 46 46 46
116 FOB Japan/South Korea 2025-10 2025-04-11 50 50 50 50
117 FOB NWE 2026-03 2025-04-11 80 80 80 80
118 Sulphuric acid fob South Korea/Japan spot 2025-04-10 60 60 60 60
119 Sulphuric acid fob South Korea/Japan spot 2025-04-03 55 55 55 55
120 Sulphuric acid fob South Korea/Japan spot 2025-03-27 55 55 55 55
121 Sulphuric acid fob South Korea/Japan spot 2025-03-20 50 50 50 50
122 Sulphuric acid fob South Korea/Japan spot 2025-03-13 50 50 50 50
123 CFR Chile 2025-05 2025-03-07 142 142 142 142
124 CFR Chile 2025-10 2025-03-07 140 140 140 140
125 CFR Gladstone 2025-12 2025-03-07 136 136 136 136
126 CFR Gladstone 2026-03 2025-03-07 136 136 136 136
127 CFR LXML Fixed price 2026-01 2025-03-07 75 75 75 75
128 CFR US Gulf 2025-04 2025-03-07 120 120 120 120
129 FOB China 2026-03 2025-03-07 46 46 46 46
130 FOB Japan/South Korea 2025-10 2025-03-07 42 42 42 42
131 FOB NWE 2026-03 2025-03-07 75 75 75 75
132 Sulphuric acid fob South Korea/Japan spot 2025-03-06 45 45 45 45
133 Sulphuric acid fob South Korea/Japan spot 2025-02-27 45 45 45 45
134 Sulphuric acid fob South Korea/Japan spot 2025-02-20 43 43 43 43
135 Sulphuric acid fob South Korea/Japan spot 2025-02-13 43 43 43 43
136 CFR Chile 2025-05 2025-02-07 145 145 145 145
137 CFR SEA 2025-03 2025-02-07 78.68 78.68 78.68 78.68
138 CFR US Gulf 2025-04 2025-02-07 135 135 135 135
139 Sulphuric acid fob South Korea/Japan spot 2025-02-06 43 43 43 43
140 CFR Chile 2025-05 2025-02-03 149 149 149 149
141 CFR Chile 2025-10 2025-02-03 149 149 149 149
142 CFR Gladstone 2025-12 2025-02-03 136 136 136 136
143 CFR LXML Fixed price 2026-01 2025-02-03 75 75 75 75
144 CFR SEA 2025-03 2025-02-03 82.68 82.68 82.68 82.68
145 CFR US Gulf 2025-04 2025-02-03 136 136 136 136
146 FOB Japan/South Korea 2025-10 2025-02-03 42 42 42 42
147 Sulphuric acid fob South Korea/Japan spot 2025-01-30 43 43 43 43
148 Sulphuric acid fob South Korea/Japan spot 2025-01-23 43 43 43 43
149 Sulphuric acid fob South Korea/Japan spot 2025-01-16 45 45 45 45
150 CFR Chile 2025-05 2025-01-10 149 149 149 149
151 CFR Chile 2025-10 2025-01-10 149 149 149 149
152 CFR Gladstone 2025-12 2025-01-10 135 135 135 135
153 CFR LXML Fixed price 2026-01 2025-01-10 75 75 75 75
154 CFR SEA 2025-03 2025-01-10 82.68 82.68 82.68 82.68
155 CFR US Gulf 2025-04 2025-01-10 139 139 139 139
156 FOB Japan/South Korea 2025-10 2025-01-10 41 41 41 41
157 Sulphuric acid fob South Korea/Japan spot 2025-01-09 44 44 44 44
158 Sulphuric acid fob South Korea/Japan spot 2025-01-03 44 44 44 44
159 Sulphuric acid fob South Korea/Japan spot 2024-12-19 44 44 44 44
160 Sulphuric acid fob South Korea/Japan spot 2024-12-12 44 44 44 44
161 CFR Chile 2025-05 2024-12-06 152 152 152 152
162 CFR Chile 2025-10 2024-12-06 152 152 152 152
163 CFR Gladstone 2025-12 2024-12-06 136 136 136 136
164 CFR SEA 2025-03 2024-12-06 80.68 80.68 80.68 80.68
165 CFR US Gulf 2025-04 2024-12-06 134 134 134 134
166 FOB Japan/South Korea 2025-10 2024-12-06 41 41 41 41
167 Sulphuric acid fob South Korea/Japan spot 2024-12-05 45 45 45 45
168 Sulphuric acid fob South Korea/Japan spot 2024-11-28 45 45 45 45
169 Sulphuric acid fob South Korea/Japan spot 2024-11-21 48 48 48 48
170 Sulphuric acid fob South Korea/Japan spot 2024-11-14 48 48 48 48
171 CFR Chile 2025-05 2024-11-08 154 154 154 154
172 CFR Chile 2025-10 2024-11-08 154 154 154 154
173 CFR SEA 2025-03 2024-11-08 75.68 75.68 75.68 75.68
174 CFR US Gulf 2025-04 2024-11-08 131 131 131 131
175 FOB Japan/South Korea 2025-10 2024-11-08 40 40 40 40
176 Sulphuric acid fob South Korea/Japan spot 2024-11-07 48 48 48 48
177 CFR Chile 2025-05 2024-11-01 160 160 160 160
178 CFR Chile 2025-10 2024-11-01 160 160 160 160
179 CFR SEA 2025-03 2024-11-01 76.68 76.68 76.68 76.68
180 CFR US Gulf 2025-04 2024-11-01 131 131 131 131
181 FOB Japan/South Korea 2025-10 2024-11-01 41 41 41 41
182 Sulphuric acid fob South Korea/Japan spot 2024-10-31 48 48 48 48
183 Sulphuric acid fob South Korea/Japan spot 2024-10-24 48 48 48 48
184 Sulphuric acid fob South Korea/Japan spot 2024-10-17 48 48 48 48
185 CFR Chile 2025-05 2024-10-11 161 161 161 161
186 CFR Chile 2025-10 2024-10-11 161 161 161 161
187 CFR SEA 2025-03 2024-10-11 77.68 77.68 77.68 77.68
188 CFR US Gulf 2025-04 2024-10-11 132 132 132 132
189 FOB Japan/South Korea 2025-10 2024-10-11 39 39 39 39
190 Sulphuric acid fob South Korea/Japan spot 2024-10-10 45 45 45 45
191 CFR Chile 2025-05 2024-10-04 161 161 161 161
192 CFR Chile 2025-10 2024-10-04 161 161 161 161
193 CFR SEA 2025-03 2024-10-04 75.68 75.68 75.68 75.68
194 CFR US Gulf 2025-04 2024-10-04 128 128 128 128
195 FOB Japan/South Korea 2025-10 2024-10-04 39 39 39 39
196 Sulphuric acid fob South Korea/Japan spot 2024-10-03 42 42 42 42
197 Sulphuric acid fob South Korea/Japan spot 2024-09-26 42 42 42 42
198 Sulphuric acid fob South Korea/Japan spot 2024-09-19 42 42 42 42
199 Sulphuric acid fob South Korea/Japan spot 2024-09-12 44 44 44 44
200 CFR Chile 2025-05 2024-09-06 153 153 153 153
201 CFR SEA 2025-03 2024-09-06 69.18 69.18 69.18 69.18
202 CFR US Gulf 2025-04 2024-09-06 109 109 109 109
203 Sulphuric acid fob South Korea/Japan spot 2024-09-05 44 44 44 44
204 Sulphuric acid fob South Korea/Japan spot 2024-08-29 40 40 40 40
205 Sulphuric acid fob South Korea/Japan spot 2024-08-22 42 42 42 42
206 Sulphuric acid fob South Korea/Japan spot 2024-08-15 40 40 40 40
207 CFR Chile 2025-05 2024-08-09 149 149 149 149
208 CFR SEA 2025-03 2024-08-09 67.75 67.75 67.75 67.75
209 CFR US Gulf 2025-04 2024-08-09 96 96 96 96
210 Sulphuric acid fob South Korea/Japan spot 2024-08-08 40 40 40 40
211 CFR Chile 2025-05 2024-08-02 147 147 147 147
212 CFR SEA 2025-03 2024-08-02 65.25 65.25 65.25 65.25
213 CFR US Gulf 2025-04 2024-08-02 96 96 96 96
214 Sulphuric acid fob South Korea/Japan spot 2024-08-01 37 37 37 37
215 Sulphuric acid fob South Korea/Japan spot 2024-07-25 37 37 37 37
216 Sulphuric acid fob South Korea/Japan spot 2024-07-18 30 30 30 30
217 CFR Chile 2025-05 2024-07-12 130 130 130 130
218 CFR SEA 2025-03 2024-07-12 58.25 58.25 58.25 58.25
219 CFR US Gulf 2025-04 2024-07-12 95 95 95 95
220 Sulphuric acid fob South Korea/Japan spot 2024-07-11 28 28 28 28
221 CFR Chile 2025-05 2024-07-05 130 130 130 130
222 CFR SEA 2025-03 2024-07-05 58.25 58.25 58.25 58.25
223 CFR US Gulf 2025-04 2024-07-05 92 92 92 92
224 Sulphuric acid fob South Korea/Japan spot 2024-07-04 25 25 25 25
225 Sulphuric acid fob South Korea/Japan spot 2024-06-27 22 22 22 22
226 Sulphuric acid fob South Korea/Japan spot 2024-06-20 20 20 20 20
227 Sulphuric acid fob South Korea/Japan spot 2024-06-13 15 15 15 15
228 CFR Chile 2025-05 2024-06-07 123 123 123 123
229 CFR SEA 2025-03 2024-06-07 51.58 51.58 51.58 51.58
230 CFR US Gulf 2025-04 2024-06-07 92 92 92 92
231 Sulphuric acid fob South Korea/Japan spot 2024-06-06 15 15 15 15
232 Sulphuric acid fob South Korea/Japan spot 2024-05-30 12 12 12 12
233 Sulphuric acid fob South Korea/Japan spot 2024-05-23 15 15 15 15
234 Sulphuric acid fob South Korea/Japan spot 2024-05-16 15 15 15 15
235 CFR Chile 2025-05 2024-05-10 123 123 123 123
236 CFR SEA 2025-03 2024-05-10 51.08 51.08 51.08 51.08
237 CFR US Gulf 2025-04 2024-05-10 92 92 92 92
238 Sulphuric acid fob South Korea/Japan spot 2024-05-09 15 15 15 15
239 CFR Chile 2025-05 2024-05-03 123 123 123 123
240 CFR SEA 2025-03 2024-05-03 51.08 51.08 51.08 51.08
241 CFR US Gulf 2025-04 2024-05-03 92 92 92 92
242 Sulphuric acid fob South Korea/Japan spot 2024-05-02 15 15 15 15
243 Sulphuric acid fob South Korea/Japan spot 2024-04-25 15 15 15 15
244 Sulphuric acid fob South Korea/Japan spot 2024-04-18 15 15 15 15
245 CFR SEA 2025-03 2024-04-12 51.08 51.08 51.08 51.08
246 CFR US Gulf 2025-04 2024-04-12 95 95 95 95
247 Sulphuric acid fob South Korea/Japan spot 2024-04-11 10 10 10 10
248 CFR SEA 2025-03 2024-04-05 51.08 51.08 51.08 51.08
249 CFR US Gulf 2025-04 2024-04-05 95 95 95 95
250 Sulphuric acid fob South Korea/Japan spot 2024-04-04 6 6 6 6
251 Sulphuric acid fob South Korea/Japan spot 2024-03-28 2 2 2 2
252 Sulphuric acid fob South Korea/Japan spot 2024-03-21 10 10 10 10
253 Sulphuric acid fob South Korea/Japan spot 2024-03-14 5 5 5 5
254 CFR SEA 2025-03 2024-03-08 46.08 46.08 46.08 46.08
255 Sulphuric acid fob South Korea/Japan spot 2024-03-07 2 2 2 2
256 CFR SEA 2025-03 2024-03-01 48.08 48.08 48.08 48.08
257 Sulphuric acid fob South Korea/Japan spot 2024-02-29 5 5 5 5
258 Sulphuric acid fob South Korea/Japan spot 2024-02-22 5 5 5 5
259 Sulphuric acid fob South Korea/Japan spot 2024-02-15 4 4 4 4
260 Sulphuric acid fob South Korea/Japan spot 2024-02-08 4 4 4 4
261 Sulphuric acid fob South Korea/Japan spot 2024-02-01 4 4 4 4
262 Sulphuric acid fob South Korea/Japan spot 2024-01-25 5 5 5 5
263 Sulphuric acid fob South Korea/Japan spot 2024-01-18 5 5 5 5
264 Sulphuric acid fob South Korea/Japan spot 2024-01-11 5 5 5 5
265 Sulphuric acid fob South Korea/Japan spot 2024-01-04 5 5 5 5
266 Sulphuric acid fob South Korea/Japan spot 2023-12-21 10 10 10 10
267 Sulphuric acid fob South Korea/Japan spot 2023-12-14 12 12 12 12
268 Sulphuric acid fob South Korea/Japan spot 2023-12-07 16 16 16 16
269 Sulphuric acid fob South Korea/Japan spot 2023-11-30 23 23 23 23
270 Sulphuric acid fob South Korea/Japan spot 2023-11-23 25 25 25 25
271 Sulphuric acid fob South Korea/Japan spot 2023-11-16 27 27 27 27
272 Sulphuric acid fob South Korea/Japan spot 2023-11-09 32 32 32 32
273 Sulphuric acid fob South Korea/Japan spot 2023-11-02 35 35 35 35
274 Sulphuric acid fob South Korea/Japan spot 2023-10-26 38 38 38 38
275 Sulphuric acid fob South Korea/Japan spot 2023-10-19 40 40 40 40
276 Sulphuric acid fob South Korea/Japan spot 2023-10-12 38 38 38 38
277 Sulphuric acid fob South Korea/Japan spot 2023-10-05 43 43 43 43
278 Sulphuric acid fob South Korea/Japan spot 2023-09-28 43 43 43 43
279 Sulphuric acid fob South Korea/Japan spot 2023-09-21 43 43 43 43
280 Sulphuric acid fob South Korea/Japan spot 2023-09-14 38 38 38 38
281 Sulphuric acid fob South Korea/Japan spot 2023-09-07 28 28 28 28
282 Sulphuric acid fob South Korea/Japan spot 2023-08-31 28 28 28 28
283 Sulphuric acid fob South Korea/Japan spot 2023-08-24 18 18 18 18
284 Sulphuric acid fob South Korea/Japan spot 2023-08-17 0 0 0 0
285 Sulphuric acid fob South Korea/Japan spot 2023-08-10 0 0 0 0
286 Sulphuric acid fob South Korea/Japan spot 2023-08-03 -5 -5 -5 -5
287 Sulphuric acid fob South Korea/Japan spot 2023-07-27 -15 -15 -15 -15
288 Sulphuric acid fob South Korea/Japan spot 2023-07-20 -15 -15 -15 -15
289 Sulphuric acid fob South Korea/Japan spot 2023-07-13 -10 -10 -10 -10
290 Sulphuric acid fob South Korea/Japan spot 2023-07-06 -10 -10 -10 -10
291 Sulphuric acid fob South Korea/Japan spot 2023-06-29 -7 -7 -7 -7
292 Sulphuric acid fob South Korea/Japan spot 2023-06-22 -5 -5 -5 -5
293 Sulphuric acid fob South Korea/Japan spot 2023-06-15 0 0 0 0
294 Sulphuric acid fob South Korea/Japan spot 2023-06-08 0 0 0 0
295 Sulphuric acid fob South Korea/Japan spot 2023-06-01 0 0 0 0
296 Sulphuric acid fob South Korea/Japan spot 2023-05-25 0 0 0 0
297 Sulphuric acid fob South Korea/Japan spot 2023-05-18 5 5 5 5
298 Sulphuric acid fob South Korea/Japan spot 2023-05-11 5 5 5 5
299 Sulphuric acid fob South Korea/Japan spot 2023-05-04 5 5 5 5
300 Sulphuric acid fob South Korea/Japan spot 2023-04-27 5 5 5 5
301 Sulphuric acid fob South Korea/Japan spot 2023-04-20 5 5 5 5
302 Sulphuric acid fob South Korea/Japan spot 2023-04-13 5 5 5 5
303 Sulphuric acid fob South Korea/Japan spot 2023-04-06 5 5 5 5
304 Sulphuric acid fob South Korea/Japan spot 2023-03-30 0 0 0 0
305 Sulphuric acid fob South Korea/Japan spot 2023-03-23 -5 -5 -5 -5
306 Sulphuric acid fob South Korea/Japan spot 2023-03-16 -10 -10 -10 -10
307 Sulphuric acid fob South Korea/Japan spot 2023-03-09 -10 -10 -10 -10
308 Sulphuric acid fob South Korea/Japan spot 2023-03-02 -10 -10 -10 -10
309 Sulphuric acid fob South Korea/Japan spot 2023-02-23 -18 -18 -18 -18
310 Sulphuric acid fob South Korea/Japan spot 2023-02-16 1 1 1 1
311 Sulphuric acid fob South Korea/Japan spot 2023-02-09 1 1 1 1
312 Sulphuric acid fob South Korea/Japan spot 2023-02-02 5 5 5 5
313 Sulphuric acid fob South Korea/Japan spot 2023-01-26 10 10 10 10
314 Sulphuric acid fob South Korea/Japan spot 2023-01-19 10 10 10 10
315 Sulphuric acid fob South Korea/Japan spot 2023-01-12 10 10 10 10
316 Sulphuric acid fob South Korea/Japan spot 2023-01-05 10 10 10 10
317 Sulphuric acid fob South Korea/Japan spot 2022-12-22 10 10 10 10
318 Sulphuric acid fob South Korea/Japan spot 2022-12-15 10 10 10 10
319 Sulphuric acid fob South Korea/Japan spot 2022-12-08 10 10 10 10
320 Sulphuric acid fob South Korea/Japan spot 2022-12-01 20 20 20 20
321 Sulphuric acid fob South Korea/Japan spot 2022-11-24 20 20 20 20
322 Sulphuric acid fob South Korea/Japan spot 2022-11-17 20 20 20 20
323 Sulphuric acid fob South Korea/Japan spot 2022-11-10 20 20 20 20
324 Sulphuric acid fob South Korea/Japan spot 2022-11-03 10 10 10 10
325 Sulphuric acid fob South Korea/Japan spot 2022-10-27 10 10 10 10
326 Sulphuric acid fob South Korea/Japan spot 2022-10-20 10 10 10 10
327 Sulphuric acid fob South Korea/Japan spot 2022-10-13 3 3 3 3
328 Sulphuric acid fob South Korea/Japan spot 2022-10-06 3 3 3 3
329 Sulphuric acid fob South Korea/Japan spot 2022-09-29 1 1 1 1
330 Sulphuric acid fob South Korea/Japan spot 2022-09-22 1 1 1 1
331 Sulphuric acid fob South Korea/Japan spot 2022-09-15 1 1 1 1
332 Sulphuric acid fob South Korea/Japan spot 2022-09-08 1 1 1 1
333 Sulphuric acid fob South Korea/Japan spot 2022-09-01 40 40 40 40
334 Sulphuric acid fob South Korea/Japan spot 2022-08-25 40 40 40 40
335 Sulphuric acid fob South Korea/Japan spot 2022-08-18 95 95 95 95
336 Sulphuric acid fob South Korea/Japan spot 2022-08-11 100 100 100 100
337 Sulphuric acid fob South Korea/Japan spot 2022-08-04 110 110 110 110
338 Sulphuric acid fob South Korea/Japan spot 2022-07-28 110 110 110 110
339 Sulphuric acid fob South Korea/Japan spot 2022-07-21 110 110 110 110
340 Sulphuric acid fob South Korea/Japan spot 2022-07-14 120 120 120 120
341 Sulphuric acid fob South Korea/Japan spot 2022-07-07 130 130 130 130
342 Sulphuric acid fob South Korea/Japan spot 2022-06-30 133 133 133 133
343 Sulphuric acid fob South Korea/Japan spot 2022-06-23 133 133 133 133
344 Sulphuric acid fob South Korea/Japan spot 2022-06-16 133 133 133 133
345 Sulphuric acid fob South Korea/Japan spot 2022-06-09 133 133 133 133
346 Sulphuric acid fob South Korea/Japan spot 2022-06-01 133 133 133 133
347 Sulphuric acid fob South Korea/Japan spot 2022-05-26 133 133 133 133
348 Sulphuric acid fob South Korea/Japan spot 2022-05-19 133 133 133 133
349 Sulphuric acid fob South Korea/Japan spot 2022-05-12 133 133 133 133
350 Sulphuric acid fob South Korea/Japan spot 2022-05-05 133 133 133 133
351 Sulphuric acid fob South Korea/Japan spot 2022-04-28 133 133 133 133
352 Sulphuric acid fob South Korea/Japan spot 2022-04-21 130 130 130 130
353 Sulphuric acid fob South Korea/Japan spot 2022-04-14 130 130 130 130
354 Sulphuric acid fob South Korea/Japan spot 2022-04-07 130 130 130 130
355 Sulphuric acid fob South Korea/Japan spot 2022-03-31 125 125 125 125
356 Sulphuric acid fob South Korea/Japan spot 2022-03-24 125 125 125 125
357 Sulphuric acid fob South Korea/Japan spot 2022-03-17 120 120 120 120
358 Sulphuric acid fob South Korea/Japan spot 2022-03-10 120 120 120 120
359 Sulphuric acid fob South Korea/Japan spot 2022-03-03 115 115 115 115
360 Sulphuric acid fob South Korea/Japan spot 2022-02-24 125 125 125 125
361 Sulphuric acid fob South Korea/Japan spot 2022-02-17 125 125 125 125
362 Sulphuric acid fob South Korea/Japan spot 2022-02-10 125 125 125 125
363 Sulphuric acid fob South Korea/Japan spot 2022-02-03 125 125 125 125
364 Sulphuric acid fob South Korea/Japan spot 2022-01-27 125 125 125 125
365 Sulphuric acid fob South Korea/Japan spot 2022-01-20 125 125 125 125
366 Sulphuric acid fob South Korea/Japan spot 2022-01-13 125 125 125 125
367 Sulphuric acid fob South Korea/Japan spot 2022-01-06 125 125 125 125
368 Sulphuric acid fob South Korea/Japan spot 2021-12-23 125 125 125 125
369 Sulphuric acid fob South Korea/Japan spot 2021-12-16 125 125 125 125
370 Sulphuric acid fob South Korea/Japan spot 2021-12-09 120 120 120 120
371 Sulphuric acid fob South Korea/Japan spot 2021-12-02 120 120 120 120
372 Sulphuric acid fob South Korea/Japan spot 2021-11-25 120 120 120 120
373 Sulphuric acid fob South Korea/Japan spot 2021-11-18 120 120 120 120
374 Sulphuric acid fob South Korea/Japan spot 2021-11-11 125 125 125 125
375 Sulphuric acid fob South Korea/Japan spot 2021-11-04 125 125 125 125
376 Sulphuric acid fob South Korea/Japan spot 2021-10-28 125 125 125 125
377 Sulphuric acid fob South Korea/Japan spot 2021-10-21 125 125 125 125
378 Sulphuric acid fob South Korea/Japan spot 2021-10-14 125 125 125 125
379 Sulphuric acid fob South Korea/Japan spot 2021-10-07 125 125 125 125
380 Sulphuric acid fob South Korea/Japan spot 2021-09-30 125 125 125 125
381 Sulphuric acid fob South Korea/Japan spot 2021-09-23 115 115 115 115
382 Sulphuric acid fob South Korea/Japan spot 2021-09-16 115 115 115 115
383 Sulphuric acid fob South Korea/Japan spot 2021-09-09 115 115 115 115
384 Sulphuric acid fob South Korea/Japan spot 2021-09-02 115 115 115 115
385 Sulphuric acid fob South Korea/Japan spot 2021-08-26 115 115 115 115
386 Sulphuric acid fob South Korea/Japan spot 2021-08-19 115 115 115 115
387 Sulphuric acid fob South Korea/Japan spot 2021-08-12 110 110 110 110
388 Sulphuric acid fob South Korea/Japan spot 2021-08-05 105 105 105 105
389 Sulphuric acid fob South Korea/Japan spot 2021-07-29 100 100 100 100
390 Sulphuric acid fob South Korea/Japan spot 2021-07-22 95 95 95 95
391 Sulphuric acid fob South Korea/Japan spot 2021-07-15 95 95 95 95
392 Sulphuric acid fob South Korea/Japan spot 2021-07-08 95 95 95 95
393 Sulphuric acid fob South Korea/Japan spot 2021-07-01 90 90 90 90
394 Sulphuric acid fob South Korea/Japan spot 2021-06-24 90 90 90 90
395 Sulphuric acid fob South Korea/Japan spot 2021-06-17 90 90 90 90
396 Sulphuric acid fob South Korea/Japan spot 2021-06-10 77 77 77 77
397 Sulphuric acid fob South Korea/Japan spot 2021-06-03 77 77 77 77
398 Sulphuric acid fob South Korea/Japan spot 2021-05-27 77 77 77 77
399 Sulphuric acid fob South Korea/Japan spot 2021-05-20 77 77 77 77
400 Sulphuric acid fob South Korea/Japan spot 2021-05-13 77 77 77 77
401 Sulphuric acid fob South Korea/Japan spot 2021-05-06 77 77 77 77
402 Sulphuric acid fob South Korea/Japan spot 2021-04-29 75 75 75 75
403 Sulphuric acid fob South Korea/Japan spot 2021-04-22 75 75 75 75
404 Sulphuric acid fob South Korea/Japan spot 2021-04-15 70 70 70 70
405 Sulphuric acid fob South Korea/Japan spot 2021-04-08 70 70 70 70
406 Sulphuric acid fob South Korea/Japan spot 2021-04-01 70 70 70 70
407 Sulphuric acid fob South Korea/Japan spot 2021-03-25 70 70 70 70
408 Sulphuric acid fob South Korea/Japan spot 2021-03-18 70 70 70 70
409 Sulphuric acid fob South Korea/Japan spot 2021-03-11 60 60 60 60
410 Sulphuric acid fob South Korea/Japan spot 2021-03-04 60 60 60 60
411 Sulphuric acid fob South Korea/Japan spot 2021-02-25 50 50 50 50
412 Sulphuric acid fob South Korea/Japan spot 2021-02-18 50 50 50 50
413 Sulphuric acid fob South Korea/Japan spot 2021-02-11 40 40 40 40
414 Sulphuric acid fob South Korea/Japan spot 2021-02-04 40 40 40 40
415 Sulphuric acid fob South Korea/Japan spot 2021-01-28 40 40 40 40
416 Sulphuric acid fob South Korea/Japan spot 2021-01-21 20 20 20 20
417 Sulphuric acid fob South Korea/Japan spot 2021-01-14 15 15 15 15
418 Sulphuric acid fob South Korea/Japan spot 2021-01-07 10 10 10 10
419 Sulphuric acid fob South Korea/Japan spot 2020-12-23 10 10 10 10
420 Sulphuric acid fob South Korea/Japan spot 2020-12-17 10 10 10 10
421 Sulphuric acid fob South Korea/Japan spot 2020-12-10 10 10 10 10
422 Sulphuric acid fob South Korea/Japan spot 2020-12-03 3 3 3 3
423 Sulphuric acid fob South Korea/Japan spot 2020-11-26 3 3 3 3
424 Sulphuric acid fob South Korea/Japan spot 2020-11-19 0 0 0 0
425 Sulphuric acid fob South Korea/Japan spot 2020-11-12 -4 -4 -4 -4
426 Sulphuric acid fob South Korea/Japan spot 2020-11-05 -6 -6 -6 -6
427 Sulphuric acid fob South Korea/Japan spot 2020-10-29 -8 -8 -8 -8
428 Sulphuric acid fob South Korea/Japan spot 2020-10-22 -8 -8 -8 -8
429 Sulphuric acid fob South Korea/Japan spot 2020-10-15 -8 -8 -8 -8
430 Sulphuric acid fob South Korea/Japan spot 2020-10-08 -10 -10 -10 -10
431 Sulphuric acid fob South Korea/Japan spot 2020-10-01 -10 -10 -10 -10
432 Sulphuric acid fob South Korea/Japan spot 2020-09-24 -14 -14 -14 -14
433 Sulphuric acid fob South Korea/Japan spot 2020-09-17 -14 -14 -14 -14
434 Sulphuric acid fob South Korea/Japan spot 2020-09-10 -14 -14 -14 -14
435 Sulphuric acid fob South Korea/Japan spot 2020-09-03 -15 -15 -15 -15
436 Sulphuric acid fob South Korea/Japan spot 2020-08-27 -20 -20 -20 -20
437 Sulphuric acid fob South Korea/Japan spot 2020-08-20 -20 -20 -20 -20
438 Sulphuric acid fob South Korea/Japan spot 2020-08-13 -22 -22 -22 -22
439 Sulphuric acid fob South Korea/Japan spot 2020-08-06 -22 -22 -22 -22
440 Sulphuric acid fob South Korea/Japan spot 2020-07-30 -22 -22 -22 -22
441 Sulphuric acid fob South Korea/Japan spot 2020-07-23 -22 -22 -22 -22
442 Sulphuric acid fob South Korea/Japan spot 2020-07-16 -22 -22 -22 -22
443 Sulphuric acid fob South Korea/Japan spot 2020-07-09 -22 -22 -22 -22
444 Sulphuric acid fob South Korea/Japan spot 2020-07-02 -17 -17 -17 -17
445 Sulphuric acid fob South Korea/Japan spot 2020-06-25 -17 -17 -17 -17
446 Sulphuric acid fob South Korea/Japan spot 2020-06-18 -17 -17 -17 -17
447 Sulphuric acid fob South Korea/Japan spot 2020-06-11 -17 -17 -17 -17
448 Sulphuric acid fob South Korea/Japan spot 2020-06-04 -17 -17 -17 -17
449 Sulphuric acid fob South Korea/Japan spot 2020-05-28 -17 -17 -17 -17
450 Sulphuric acid fob South Korea/Japan spot 2020-05-21 -17 -17 -17 -17
451 Sulphuric acid fob South Korea/Japan spot 2020-05-14 -20 -20 -20 -20
452 Sulphuric acid fob South Korea/Japan spot 2020-05-07 -25 -25 -25 -25
453 Sulphuric acid fob South Korea/Japan spot 2020-04-30 -35 -35 -35 -35
454 Sulphuric acid fob South Korea/Japan spot 2020-04-23 -40 -40 -40 -40
455 Sulphuric acid fob South Korea/Japan spot 2020-04-16 -45 -45 -45 -45
456 Sulphuric acid fob South Korea/Japan spot 2020-04-09 -40 -40 -40 -40
457 Sulphuric acid fob South Korea/Japan spot 2020-04-02 -40 -40 -40 -40
458 Sulphuric acid fob South Korea/Japan spot 2020-03-26 -30 -30 -30 -30
459 Sulphuric acid fob South Korea/Japan spot 2020-03-19 -30 -30 -30 -30
460 Sulphuric acid fob South Korea/Japan spot 2020-03-12 -25 -25 -25 -25
461 Sulphuric acid fob South Korea/Japan spot 2020-03-05 -20 -20 -20 -20
462 Sulphuric acid fob South Korea/Japan spot 2020-02-27 -20 -20 -20 -20
463 Sulphuric acid fob South Korea/Japan spot 2020-02-20 -11 -11 -11 -11
464 Sulphuric acid fob South Korea/Japan spot 2020-02-13 -11 -11 -11 -11
465 Sulphuric acid fob South Korea/Japan spot 2020-02-06 -5 -5 -5 -5
466 Sulphuric acid fob South Korea/Japan spot 2020-01-30 0 0 0 0
467 Sulphuric acid fob South Korea/Japan spot 2020-01-23 0 0 0 0
468 Sulphuric acid fob South Korea/Japan spot 2020-01-16 0 0 0 0
469 Sulphuric acid fob South Korea/Japan spot 2020-01-09 4 4 4 4
470 Sulphuric acid fob South Korea/Japan spot 2020-01-03 4 4 4 4
471 Sulphuric acid fob South Korea/Japan spot 2019-12-19 4 4 4 4
472 Sulphuric acid fob South Korea/Japan spot 2019-12-12 5 5 5 5
473 Sulphuric acid fob South Korea/Japan spot 2019-12-05 5 5 5 5
474 Sulphuric acid fob South Korea/Japan spot 2019-11-28 5 5 5 5
475 Sulphuric acid fob South Korea/Japan spot 2019-11-21 5 5 5 5
476 Sulphuric acid fob South Korea/Japan spot 2019-11-14 5 5 5 5
477 Sulphuric acid fob South Korea/Japan spot 2019-11-07 5 5 5 5
478 Sulphuric acid fob South Korea/Japan spot 2019-10-31 5 5 5 5
479 Sulphuric acid fob South Korea/Japan spot 2019-10-24 8 8 8 8
480 Sulphuric acid fob South Korea/Japan spot 2019-10-17 9 9 9 9
481 Sulphuric acid fob South Korea/Japan spot 2019-10-10 9 9 9 9
482 Sulphuric acid fob South Korea/Japan spot 2019-10-03 9 9 9 9
483 Sulphuric acid fob South Korea/Japan spot 2019-09-26 9 9 9 9
484 Sulphuric acid fob South Korea/Japan spot 2019-09-19 10 10 10 10
485 Sulphuric acid fob South Korea/Japan spot 2019-09-12 10 10 10 10
486 Sulphuric acid fob South Korea/Japan spot 2019-09-05 10 10 10 10
487 Sulphuric acid fob South Korea/Japan spot 2019-08-29 10 10 10 10
488 Sulphuric acid fob South Korea/Japan spot 2019-08-22 10 10 10 10
489 Sulphuric acid fob South Korea/Japan spot 2019-08-15 10 10 10 10
490 Sulphuric acid fob South Korea/Japan spot 2019-08-08 15 15 15 15
491 Sulphuric acid fob South Korea/Japan spot 2019-08-01 15 15 15 15
492 Sulphuric acid fob South Korea/Japan spot 2019-07-25 15 15 15 15
493 Sulphuric acid fob South Korea/Japan spot 2019-07-18 15 15 15 15
494 Sulphuric acid fob South Korea/Japan spot 2019-07-11 15 15 15 15
495 Sulphuric acid fob South Korea/Japan spot 2019-07-04 15 15 15 15
496 Sulphuric acid fob South Korea/Japan spot 2019-06-27 15 15 15 15
497 Sulphuric acid fob South Korea/Japan spot 2019-06-20 15 15 15 15
498 Sulphuric acid fob South Korea/Japan spot 2019-06-13 15 15 15 15
499 Sulphuric acid fob South Korea/Japan spot 2019-06-06 15 15 15 15
500 Sulphuric acid fob South Korea/Japan spot 2019-05-30 25 25 25 25
501 Sulphuric acid fob South Korea/Japan spot 2019-05-23 28 28 28 28
502 Sulphuric acid fob South Korea/Japan spot 2019-05-16 28 28 28 28
503 Sulphuric acid fob South Korea/Japan spot 2019-05-09 40 40 40 40
504 Sulphuric acid fob South Korea/Japan spot 2019-05-02 40 40 40 40
505 Sulphuric acid fob South Korea/Japan spot 2019-04-25 45 45 45 45
506 Sulphuric acid fob South Korea/Japan spot 2019-04-18 45 45 45 45
507 Sulphuric acid fob South Korea/Japan spot 2019-04-11 50 50 50 50
508 Sulphuric acid fob South Korea/Japan spot 2019-04-04 50 50 50 50
509 Sulphuric acid fob South Korea/Japan spot 2019-03-28 55 55 55 55
510 Sulphuric acid fob South Korea/Japan spot 2019-03-21 55 55 55 55
511 Sulphuric acid fob South Korea/Japan spot 2019-03-14 55 55 55 55
512 Sulphuric acid fob South Korea/Japan spot 2019-03-07 55 55 55 55
513 Sulphuric acid fob South Korea/Japan spot 2019-02-28 58 58 58 58
514 Sulphuric acid fob South Korea/Japan spot 2019-02-21 58 58 58 58
515 Sulphuric acid fob South Korea/Japan spot 2019-02-14 58 58 58 58
516 Sulphuric acid fob South Korea/Japan spot 2019-02-07 62 62 62 62
517 Sulphuric acid fob South Korea/Japan spot 2019-01-31 62 62 62 62
518 Sulphuric acid fob South Korea/Japan spot 2019-01-24 65 65 65 65
519 Sulphuric acid fob South Korea/Japan spot 2019-01-17 70 70 70 70
520 Sulphuric acid fob South Korea/Japan spot 2019-01-10 70 70 70 70
521 Sulphuric acid fob South Korea/Japan spot 2019-01-03 70 70 70 70
522 Sulphuric acid fob South Korea/Japan spot 2018-12-20 70 70 70 70
523 Sulphuric acid fob South Korea/Japan spot 2018-12-13 70 70 70 70
524 Sulphuric acid fob South Korea/Japan spot 2018-12-06 70 70 70 70
525 Sulphuric acid fob South Korea/Japan spot 2018-11-29 70 70 70 70
526 Sulphuric acid fob South Korea/Japan spot 2018-11-22 70 70 70 70
527 Sulphuric acid fob South Korea/Japan spot 2018-11-15 70 70 70 70
528 Sulphuric acid fob South Korea/Japan spot 2018-11-08 70 70 70 70
529 Sulphuric acid fob South Korea/Japan spot 2018-11-01 67 67 67 67
530 Sulphuric acid fob South Korea/Japan spot 2018-10-25 65 65 65 65
531 Sulphuric acid fob South Korea/Japan spot 2018-10-18 65 65 65 65
532 Sulphuric acid fob South Korea/Japan spot 2018-10-11 62 62 62 62
533 Sulphuric acid fob South Korea/Japan spot 2018-10-04 62 62 62 62
534 Sulphuric acid fob South Korea/Japan spot 2018-09-27 62 62 62 62
535 Sulphuric acid fob South Korea/Japan spot 2018-09-20 55 55 55 55
536 Sulphuric acid fob South Korea/Japan spot 2018-09-13 55 55 55 55
537 Sulphuric acid fob South Korea/Japan spot 2018-09-06 52 52 52 52
538 Sulphuric acid fob South Korea/Japan spot 2018-08-30 50 50 50 50
539 Sulphuric acid fob South Korea/Japan spot 2018-08-23 50 50 50 50
540 Sulphuric acid fob South Korea/Japan spot 2018-08-16 50 50 50 50
541 Sulphuric acid fob South Korea/Japan spot 2018-08-09 50 50 50 50
542 Sulphuric acid fob South Korea/Japan spot 2018-08-02 50 50 50 50
543 Sulphuric acid fob South Korea/Japan spot 2018-07-26 50 50 50 50
544 Sulphuric acid fob South Korea/Japan spot 2018-07-19 45 45 45 45
545 Sulphuric acid fob South Korea/Japan spot 2018-07-12 45 45 45 45
546 Sulphuric acid fob South Korea/Japan spot 2018-07-05 40 40 40 40
547 Sulphuric acid fob South Korea/Japan spot 2018-06-28 35 35 35 35
548 Sulphuric acid fob South Korea/Japan spot 2018-06-21 35 35 35 35
549 Sulphuric acid fob South Korea/Japan spot 2018-06-14 35 35 35 35
550 Sulphuric acid fob South Korea/Japan spot 2018-06-07 35 35 35 35
551 Sulphuric acid fob South Korea/Japan spot 2018-05-31 35 35 35 35
552 Sulphuric acid fob South Korea/Japan spot 2018-05-24 30 30 30 30
553 Sulphuric acid fob South Korea/Japan spot 2018-05-17 30 30 30 30
554 Sulphuric acid fob South Korea/Japan spot 2018-05-10 25 25 25 25
555 Sulphuric acid fob South Korea/Japan spot 2018-05-03 25 25 25 25
556 Sulphuric acid fob South Korea/Japan spot 2018-04-26 25 25 25 25
557 Sulphuric acid fob South Korea/Japan spot 2018-04-19 25 25 25 25
558 Sulphuric acid fob South Korea/Japan spot 2018-04-12 25 25 25 25
559 Sulphuric acid fob South Korea/Japan spot 2018-04-05 25 25 25 25

View File

@@ -1,406 +0,0 @@
price_index,price_date,high_price,low_price,open_price,price_value
Sulphuric acid fob South Korea/Japan spot,2018-04-05,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-12,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-19,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-04-26,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-05-03,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-05-10,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2018-05-17,30,30,30,30
Sulphuric acid fob South Korea/Japan spot,2018-05-24,30,30,30,30
Sulphuric acid fob South Korea/Japan spot,2018-05-31,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-07,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-14,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-21,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-06-28,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2018-07-05,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2018-07-12,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2018-07-19,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2018-07-26,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-02,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-09,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-16,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-23,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-08-30,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2018-09-06,52,52,52,52
Sulphuric acid fob South Korea/Japan spot,2018-09-13,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2018-09-20,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2018-09-27,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-10-04,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-10-11,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2018-10-18,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2018-10-25,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2018-11-01,67,67,67,67
Sulphuric acid fob South Korea/Japan spot,2018-11-08,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-15,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-22,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-11-29,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-06,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-13,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2018-12-20,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-03,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-10,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-17,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2019-01-24,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2019-01-31,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2019-02-07,62,62,62,62
Sulphuric acid fob South Korea/Japan spot,2019-02-14,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-02-21,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-02-28,58,58,58,58
Sulphuric acid fob South Korea/Japan spot,2019-03-07,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-14,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-21,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-03-28,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2019-04-04,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2019-04-11,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2019-04-18,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2019-04-25,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2019-05-02,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2019-05-09,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2019-05-16,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2019-05-23,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2019-05-30,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2019-06-06,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-13,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-20,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-06-27,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-04,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-11,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-18,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-07-25,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-08-01,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-08-08,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2019-08-15,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-22,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-08-29,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-05,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-12,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-19,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2019-09-26,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-03,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-10,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-17,9,9,9,9
Sulphuric acid fob South Korea/Japan spot,2019-10-24,8,8,8,8
Sulphuric acid fob South Korea/Japan spot,2019-10-31,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-07,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-14,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-21,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-11-28,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-12-05,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-12-12,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2019-12-19,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2020-01-03,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2020-01-09,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2020-01-16,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-01-23,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-01-30,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-02-06,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2020-02-13,-11,-11,-11,-11
Sulphuric acid fob South Korea/Japan spot,2020-02-20,-11,-11,-11,-11
Sulphuric acid fob South Korea/Japan spot,2020-02-27,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-03-05,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-03-12,-25,-25,-25,-25
Sulphuric acid fob South Korea/Japan spot,2020-03-19,-30,-30,-30,-30
Sulphuric acid fob South Korea/Japan spot,2020-03-26,-30,-30,-30,-30
Sulphuric acid fob South Korea/Japan spot,2020-04-02,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-04-09,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-04-16,-45,-45,-45,-45
Sulphuric acid fob South Korea/Japan spot,2020-04-23,-40,-40,-40,-40
Sulphuric acid fob South Korea/Japan spot,2020-04-30,-35,-35,-35,-35
Sulphuric acid fob South Korea/Japan spot,2020-05-07,-25,-25,-25,-25
Sulphuric acid fob South Korea/Japan spot,2020-05-14,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-05-21,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-05-28,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-04,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-11,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-18,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-06-25,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-07-02,-17,-17,-17,-17
Sulphuric acid fob South Korea/Japan spot,2020-07-09,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-16,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-23,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-07-30,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-08-06,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-08-13,-22,-22,-22,-22
Sulphuric acid fob South Korea/Japan spot,2020-08-20,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-08-27,-20,-20,-20,-20
Sulphuric acid fob South Korea/Japan spot,2020-09-03,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2020-09-10,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-09-17,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-09-24,-14,-14,-14,-14
Sulphuric acid fob South Korea/Japan spot,2020-10-01,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2020-10-08,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2020-10-15,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-10-22,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-10-29,-8,-8,-8,-8
Sulphuric acid fob South Korea/Japan spot,2020-11-05,-6,-6,-6,-6
Sulphuric acid fob South Korea/Japan spot,2020-11-12,-4,-4,-4,-4
Sulphuric acid fob South Korea/Japan spot,2020-11-19,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2020-11-26,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2020-12-03,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2020-12-10,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-17,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2020-12-23,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2021-01-07,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2021-01-14,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2021-01-21,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2021-01-28,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-02-04,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-02-11,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2021-02-18,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2021-02-25,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2021-03-04,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2021-03-11,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2021-03-18,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-03-25,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-01,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-08,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-15,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2021-04-22,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2021-04-29,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2021-05-06,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-13,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-20,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-05-27,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-06-03,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-06-10,77,77,77,77
Sulphuric acid fob South Korea/Japan spot,2021-06-17,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-06-24,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-07-01,90,90,90,90
Sulphuric acid fob South Korea/Japan spot,2021-07-08,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-15,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-22,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2021-07-29,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2021-08-05,105,105,105,105
Sulphuric acid fob South Korea/Japan spot,2021-08-12,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2021-08-19,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-08-26,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-02,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-09,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-16,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-23,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2021-09-30,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-07,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-14,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-21,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-10-28,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-11-04,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-11-11,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-11-18,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-11-25,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-12-02,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-12-09,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2021-12-16,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2021-12-23,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-06,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-13,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-20,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-01-27,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-03,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-10,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-17,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-02-24,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-03-03,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2022-03-10,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-03-17,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-03-24,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-03-31,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2022-04-07,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-04-14,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-04-21,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-04-28,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-05,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-12,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-19,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-05-26,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-01,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-09,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-16,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-23,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-06-30,133,133,133,133
Sulphuric acid fob South Korea/Japan spot,2022-07-07,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2022-07-14,120,120,120,120
Sulphuric acid fob South Korea/Japan spot,2022-07-21,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-07-28,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-08-04,110,110,110,110
Sulphuric acid fob South Korea/Japan spot,2022-08-11,100,100,100,100
Sulphuric acid fob South Korea/Japan spot,2022-08-18,95,95,95,95
Sulphuric acid fob South Korea/Japan spot,2022-08-25,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2022-09-01,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2022-09-08,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-15,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-22,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-09-29,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2022-10-06,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2022-10-13,3,3,3,3
Sulphuric acid fob South Korea/Japan spot,2022-10-20,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-10-27,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-11-03,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-11-10,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-17,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-11-24,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-12-01,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2022-12-08,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-15,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2022-12-22,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-05,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-12,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-19,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-01-26,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2023-02-02,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-02-09,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2023-02-16,1,1,1,1
Sulphuric acid fob South Korea/Japan spot,2023-02-23,-18,-18,-18,-18
Sulphuric acid fob South Korea/Japan spot,2023-03-02,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-03-09,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-03-16,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-03-23,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-03-30,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-04-06,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-13,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-20,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-04-27,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-04,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-11,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-18,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2023-05-25,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-01,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-08,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-15,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-06-22,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-06-29,-7,-7,-7,-7
Sulphuric acid fob South Korea/Japan spot,2023-07-06,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-07-13,-10,-10,-10,-10
Sulphuric acid fob South Korea/Japan spot,2023-07-20,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2023-07-27,-15,-15,-15,-15
Sulphuric acid fob South Korea/Japan spot,2023-08-03,-5,-5,-5,-5
Sulphuric acid fob South Korea/Japan spot,2023-08-10,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-08-17,0,0,0,0
Sulphuric acid fob South Korea/Japan spot,2023-08-24,18,18,18,18
Sulphuric acid fob South Korea/Japan spot,2023-08-31,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2023-09-07,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2023-09-14,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-09-21,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-09-28,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-10-05,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2023-10-12,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-10-19,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2023-10-26,38,38,38,38
Sulphuric acid fob South Korea/Japan spot,2023-11-02,35,35,35,35
Sulphuric acid fob South Korea/Japan spot,2023-11-09,32,32,32,32
Sulphuric acid fob South Korea/Japan spot,2023-11-16,27,27,27,27
Sulphuric acid fob South Korea/Japan spot,2023-11-23,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2023-11-30,23,23,23,23
Sulphuric acid fob South Korea/Japan spot,2023-12-07,16,16,16,16
Sulphuric acid fob South Korea/Japan spot,2023-12-14,12,12,12,12
Sulphuric acid fob South Korea/Japan spot,2023-12-21,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2024-01-04,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-11,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-18,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-01-25,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-02-01,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-02-08,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-02-15,4,4,4,4
Sulphuric acid fob South Korea/Japan spot,2024-02-22,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-02-29,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-03-07,2,2,2,2
Sulphuric acid fob South Korea/Japan spot,2024-03-14,5,5,5,5
Sulphuric acid fob South Korea/Japan spot,2024-03-21,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2024-03-28,2,2,2,2
Sulphuric acid fob South Korea/Japan spot,2024-04-04,6,6,6,6
Sulphuric acid fob South Korea/Japan spot,2024-04-11,10,10,10,10
Sulphuric acid fob South Korea/Japan spot,2024-04-18,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-04-25,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-02,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-09,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-16,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-23,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-05-30,12,12,12,12
Sulphuric acid fob South Korea/Japan spot,2024-06-06,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-06-13,15,15,15,15
Sulphuric acid fob South Korea/Japan spot,2024-06-20,20,20,20,20
Sulphuric acid fob South Korea/Japan spot,2024-06-27,22,22,22,22
Sulphuric acid fob South Korea/Japan spot,2024-07-04,25,25,25,25
Sulphuric acid fob South Korea/Japan spot,2024-07-11,28,28,28,28
Sulphuric acid fob South Korea/Japan spot,2024-07-18,30,30,30,30
Sulphuric acid fob South Korea/Japan spot,2024-07-25,37,37,37,37
Sulphuric acid fob South Korea/Japan spot,2024-08-01,37,37,37,37
Sulphuric acid fob South Korea/Japan spot,2024-08-08,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2024-08-15,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2024-08-22,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-08-29,40,40,40,40
Sulphuric acid fob South Korea/Japan spot,2024-09-05,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-09-12,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-09-19,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-09-26,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-10-03,42,42,42,42
Sulphuric acid fob South Korea/Japan spot,2024-10-10,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2024-10-17,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-10-24,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-10-31,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-11-07,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-11-14,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-11-21,48,48,48,48
Sulphuric acid fob South Korea/Japan spot,2024-11-28,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2024-12-05,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2024-12-12,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2024-12-19,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2025-01-03,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2025-01-09,44,44,44,44
Sulphuric acid fob South Korea/Japan spot,2025-01-16,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2025-01-23,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-01-30,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-02-06,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-02-13,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-02-20,43,43,43,43
Sulphuric acid fob South Korea/Japan spot,2025-02-27,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2025-03-06,45,45,45,45
Sulphuric acid fob South Korea/Japan spot,2025-03-13,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2025-03-20,50,50,50,50
Sulphuric acid fob South Korea/Japan spot,2025-03-27,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2025-04-03,55,55,55,55
Sulphuric acid fob South Korea/Japan spot,2025-04-10,60,60,60,60
Sulphuric acid fob South Korea/Japan spot,2025-04-17,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-04-24,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-05-01,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-05-08,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-05-15,65,65,65,65
Sulphuric acid fob South Korea/Japan spot,2025-05-22,67,67,67,67
Sulphuric acid fob South Korea/Japan spot,2025-05-29,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-06-05,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-06-12,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-06-19,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-06-26,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-03,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-10,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-17,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-24,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-07-31,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-08-07,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-08-14,80,80,80,80
Sulphuric acid fob South Korea/Japan spot,2025-08-21,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-08-28,75,75,75,75
Sulphuric acid fob South Korea/Japan spot,2025-09-04,74,74,74,74
Sulphuric acid fob South Korea/Japan spot,2025-09-11,70,70,70,70
Sulphuric acid fob South Korea/Japan spot,2025-09-18,63,63,63,63
Sulphuric acid fob South Korea/Japan spot,2025-09-25,61,61,61,61
Sulphuric acid fob South Korea/Japan spot,2025-10-02,61,61,61,61
Sulphuric acid fob South Korea/Japan spot,2025-10-09,61,61,61,61
Sulphuric acid fob South Korea/Japan spot,2025-10-16,73,73,73,73
Sulphuric acid fob South Korea/Japan spot,2025-10-23,78,78,78,78
Sulphuric acid fob South Korea/Japan spot,2025-10-30,83,83,83,83
Sulphuric acid fob South Korea/Japan spot,2025-11-06,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-13,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-20,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-11-27,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-12-04,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-12-11,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2025-12-18,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2026-01-02,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2026-01-08,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2026-01-15,108,108,108,108
Sulphuric acid fob South Korea/Japan spot,2026-01-22,115,115,115,115
Sulphuric acid fob South Korea/Japan spot,2026-01-29,125,125,125,125
Sulphuric acid fob South Korea/Japan spot,2026-02-05,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2026-02-12,130,130,130,130
Sulphuric acid fob South Korea/Japan spot,2026-02-19,135,135,135,135
Sulphuric acid fob South Korea/Japan spot,2026-02-26,135,135,135,135
1 price_index price_date high_price low_price open_price price_value
2 Sulphuric acid fob South Korea/Japan spot 2018-04-05 25 25 25 25
3 Sulphuric acid fob South Korea/Japan spot 2018-04-12 25 25 25 25
4 Sulphuric acid fob South Korea/Japan spot 2018-04-19 25 25 25 25
5 Sulphuric acid fob South Korea/Japan spot 2018-04-26 25 25 25 25
6 Sulphuric acid fob South Korea/Japan spot 2018-05-03 25 25 25 25
7 Sulphuric acid fob South Korea/Japan spot 2018-05-10 25 25 25 25
8 Sulphuric acid fob South Korea/Japan spot 2018-05-17 30 30 30 30
9 Sulphuric acid fob South Korea/Japan spot 2018-05-24 30 30 30 30
10 Sulphuric acid fob South Korea/Japan spot 2018-05-31 35 35 35 35
11 Sulphuric acid fob South Korea/Japan spot 2018-06-07 35 35 35 35
12 Sulphuric acid fob South Korea/Japan spot 2018-06-14 35 35 35 35
13 Sulphuric acid fob South Korea/Japan spot 2018-06-21 35 35 35 35
14 Sulphuric acid fob South Korea/Japan spot 2018-06-28 35 35 35 35
15 Sulphuric acid fob South Korea/Japan spot 2018-07-05 40 40 40 40
16 Sulphuric acid fob South Korea/Japan spot 2018-07-12 45 45 45 45
17 Sulphuric acid fob South Korea/Japan spot 2018-07-19 45 45 45 45
18 Sulphuric acid fob South Korea/Japan spot 2018-07-26 50 50 50 50
19 Sulphuric acid fob South Korea/Japan spot 2018-08-02 50 50 50 50
20 Sulphuric acid fob South Korea/Japan spot 2018-08-09 50 50 50 50
21 Sulphuric acid fob South Korea/Japan spot 2018-08-16 50 50 50 50
22 Sulphuric acid fob South Korea/Japan spot 2018-08-23 50 50 50 50
23 Sulphuric acid fob South Korea/Japan spot 2018-08-30 50 50 50 50
24 Sulphuric acid fob South Korea/Japan spot 2018-09-06 52 52 52 52
25 Sulphuric acid fob South Korea/Japan spot 2018-09-13 55 55 55 55
26 Sulphuric acid fob South Korea/Japan spot 2018-09-20 55 55 55 55
27 Sulphuric acid fob South Korea/Japan spot 2018-09-27 62 62 62 62
28 Sulphuric acid fob South Korea/Japan spot 2018-10-04 62 62 62 62
29 Sulphuric acid fob South Korea/Japan spot 2018-10-11 62 62 62 62
30 Sulphuric acid fob South Korea/Japan spot 2018-10-18 65 65 65 65
31 Sulphuric acid fob South Korea/Japan spot 2018-10-25 65 65 65 65
32 Sulphuric acid fob South Korea/Japan spot 2018-11-01 67 67 67 67
33 Sulphuric acid fob South Korea/Japan spot 2018-11-08 70 70 70 70
34 Sulphuric acid fob South Korea/Japan spot 2018-11-15 70 70 70 70
35 Sulphuric acid fob South Korea/Japan spot 2018-11-22 70 70 70 70
36 Sulphuric acid fob South Korea/Japan spot 2018-11-29 70 70 70 70
37 Sulphuric acid fob South Korea/Japan spot 2018-12-06 70 70 70 70
38 Sulphuric acid fob South Korea/Japan spot 2018-12-13 70 70 70 70
39 Sulphuric acid fob South Korea/Japan spot 2018-12-20 70 70 70 70
40 Sulphuric acid fob South Korea/Japan spot 2019-01-03 70 70 70 70
41 Sulphuric acid fob South Korea/Japan spot 2019-01-10 70 70 70 70
42 Sulphuric acid fob South Korea/Japan spot 2019-01-17 70 70 70 70
43 Sulphuric acid fob South Korea/Japan spot 2019-01-24 65 65 65 65
44 Sulphuric acid fob South Korea/Japan spot 2019-01-31 62 62 62 62
45 Sulphuric acid fob South Korea/Japan spot 2019-02-07 62 62 62 62
46 Sulphuric acid fob South Korea/Japan spot 2019-02-14 58 58 58 58
47 Sulphuric acid fob South Korea/Japan spot 2019-02-21 58 58 58 58
48 Sulphuric acid fob South Korea/Japan spot 2019-02-28 58 58 58 58
49 Sulphuric acid fob South Korea/Japan spot 2019-03-07 55 55 55 55
50 Sulphuric acid fob South Korea/Japan spot 2019-03-14 55 55 55 55
51 Sulphuric acid fob South Korea/Japan spot 2019-03-21 55 55 55 55
52 Sulphuric acid fob South Korea/Japan spot 2019-03-28 55 55 55 55
53 Sulphuric acid fob South Korea/Japan spot 2019-04-04 50 50 50 50
54 Sulphuric acid fob South Korea/Japan spot 2019-04-11 50 50 50 50
55 Sulphuric acid fob South Korea/Japan spot 2019-04-18 45 45 45 45
56 Sulphuric acid fob South Korea/Japan spot 2019-04-25 45 45 45 45
57 Sulphuric acid fob South Korea/Japan spot 2019-05-02 40 40 40 40
58 Sulphuric acid fob South Korea/Japan spot 2019-05-09 40 40 40 40
59 Sulphuric acid fob South Korea/Japan spot 2019-05-16 28 28 28 28
60 Sulphuric acid fob South Korea/Japan spot 2019-05-23 28 28 28 28
61 Sulphuric acid fob South Korea/Japan spot 2019-05-30 25 25 25 25
62 Sulphuric acid fob South Korea/Japan spot 2019-06-06 15 15 15 15
63 Sulphuric acid fob South Korea/Japan spot 2019-06-13 15 15 15 15
64 Sulphuric acid fob South Korea/Japan spot 2019-06-20 15 15 15 15
65 Sulphuric acid fob South Korea/Japan spot 2019-06-27 15 15 15 15
66 Sulphuric acid fob South Korea/Japan spot 2019-07-04 15 15 15 15
67 Sulphuric acid fob South Korea/Japan spot 2019-07-11 15 15 15 15
68 Sulphuric acid fob South Korea/Japan spot 2019-07-18 15 15 15 15
69 Sulphuric acid fob South Korea/Japan spot 2019-07-25 15 15 15 15
70 Sulphuric acid fob South Korea/Japan spot 2019-08-01 15 15 15 15
71 Sulphuric acid fob South Korea/Japan spot 2019-08-08 15 15 15 15
72 Sulphuric acid fob South Korea/Japan spot 2019-08-15 10 10 10 10
73 Sulphuric acid fob South Korea/Japan spot 2019-08-22 10 10 10 10
74 Sulphuric acid fob South Korea/Japan spot 2019-08-29 10 10 10 10
75 Sulphuric acid fob South Korea/Japan spot 2019-09-05 10 10 10 10
76 Sulphuric acid fob South Korea/Japan spot 2019-09-12 10 10 10 10
77 Sulphuric acid fob South Korea/Japan spot 2019-09-19 10 10 10 10
78 Sulphuric acid fob South Korea/Japan spot 2019-09-26 9 9 9 9
79 Sulphuric acid fob South Korea/Japan spot 2019-10-03 9 9 9 9
80 Sulphuric acid fob South Korea/Japan spot 2019-10-10 9 9 9 9
81 Sulphuric acid fob South Korea/Japan spot 2019-10-17 9 9 9 9
82 Sulphuric acid fob South Korea/Japan spot 2019-10-24 8 8 8 8
83 Sulphuric acid fob South Korea/Japan spot 2019-10-31 5 5 5 5
84 Sulphuric acid fob South Korea/Japan spot 2019-11-07 5 5 5 5
85 Sulphuric acid fob South Korea/Japan spot 2019-11-14 5 5 5 5
86 Sulphuric acid fob South Korea/Japan spot 2019-11-21 5 5 5 5
87 Sulphuric acid fob South Korea/Japan spot 2019-11-28 5 5 5 5
88 Sulphuric acid fob South Korea/Japan spot 2019-12-05 5 5 5 5
89 Sulphuric acid fob South Korea/Japan spot 2019-12-12 5 5 5 5
90 Sulphuric acid fob South Korea/Japan spot 2019-12-19 4 4 4 4
91 Sulphuric acid fob South Korea/Japan spot 2020-01-03 4 4 4 4
92 Sulphuric acid fob South Korea/Japan spot 2020-01-09 4 4 4 4
93 Sulphuric acid fob South Korea/Japan spot 2020-01-16 0 0 0 0
94 Sulphuric acid fob South Korea/Japan spot 2020-01-23 0 0 0 0
95 Sulphuric acid fob South Korea/Japan spot 2020-01-30 0 0 0 0
96 Sulphuric acid fob South Korea/Japan spot 2020-02-06 -5 -5 -5 -5
97 Sulphuric acid fob South Korea/Japan spot 2020-02-13 -11 -11 -11 -11
98 Sulphuric acid fob South Korea/Japan spot 2020-02-20 -11 -11 -11 -11
99 Sulphuric acid fob South Korea/Japan spot 2020-02-27 -20 -20 -20 -20
100 Sulphuric acid fob South Korea/Japan spot 2020-03-05 -20 -20 -20 -20
101 Sulphuric acid fob South Korea/Japan spot 2020-03-12 -25 -25 -25 -25
102 Sulphuric acid fob South Korea/Japan spot 2020-03-19 -30 -30 -30 -30
103 Sulphuric acid fob South Korea/Japan spot 2020-03-26 -30 -30 -30 -30
104 Sulphuric acid fob South Korea/Japan spot 2020-04-02 -40 -40 -40 -40
105 Sulphuric acid fob South Korea/Japan spot 2020-04-09 -40 -40 -40 -40
106 Sulphuric acid fob South Korea/Japan spot 2020-04-16 -45 -45 -45 -45
107 Sulphuric acid fob South Korea/Japan spot 2020-04-23 -40 -40 -40 -40
108 Sulphuric acid fob South Korea/Japan spot 2020-04-30 -35 -35 -35 -35
109 Sulphuric acid fob South Korea/Japan spot 2020-05-07 -25 -25 -25 -25
110 Sulphuric acid fob South Korea/Japan spot 2020-05-14 -20 -20 -20 -20
111 Sulphuric acid fob South Korea/Japan spot 2020-05-21 -17 -17 -17 -17
112 Sulphuric acid fob South Korea/Japan spot 2020-05-28 -17 -17 -17 -17
113 Sulphuric acid fob South Korea/Japan spot 2020-06-04 -17 -17 -17 -17
114 Sulphuric acid fob South Korea/Japan spot 2020-06-11 -17 -17 -17 -17
115 Sulphuric acid fob South Korea/Japan spot 2020-06-18 -17 -17 -17 -17
116 Sulphuric acid fob South Korea/Japan spot 2020-06-25 -17 -17 -17 -17
117 Sulphuric acid fob South Korea/Japan spot 2020-07-02 -17 -17 -17 -17
118 Sulphuric acid fob South Korea/Japan spot 2020-07-09 -22 -22 -22 -22
119 Sulphuric acid fob South Korea/Japan spot 2020-07-16 -22 -22 -22 -22
120 Sulphuric acid fob South Korea/Japan spot 2020-07-23 -22 -22 -22 -22
121 Sulphuric acid fob South Korea/Japan spot 2020-07-30 -22 -22 -22 -22
122 Sulphuric acid fob South Korea/Japan spot 2020-08-06 -22 -22 -22 -22
123 Sulphuric acid fob South Korea/Japan spot 2020-08-13 -22 -22 -22 -22
124 Sulphuric acid fob South Korea/Japan spot 2020-08-20 -20 -20 -20 -20
125 Sulphuric acid fob South Korea/Japan spot 2020-08-27 -20 -20 -20 -20
126 Sulphuric acid fob South Korea/Japan spot 2020-09-03 -15 -15 -15 -15
127 Sulphuric acid fob South Korea/Japan spot 2020-09-10 -14 -14 -14 -14
128 Sulphuric acid fob South Korea/Japan spot 2020-09-17 -14 -14 -14 -14
129 Sulphuric acid fob South Korea/Japan spot 2020-09-24 -14 -14 -14 -14
130 Sulphuric acid fob South Korea/Japan spot 2020-10-01 -10 -10 -10 -10
131 Sulphuric acid fob South Korea/Japan spot 2020-10-08 -10 -10 -10 -10
132 Sulphuric acid fob South Korea/Japan spot 2020-10-15 -8 -8 -8 -8
133 Sulphuric acid fob South Korea/Japan spot 2020-10-22 -8 -8 -8 -8
134 Sulphuric acid fob South Korea/Japan spot 2020-10-29 -8 -8 -8 -8
135 Sulphuric acid fob South Korea/Japan spot 2020-11-05 -6 -6 -6 -6
136 Sulphuric acid fob South Korea/Japan spot 2020-11-12 -4 -4 -4 -4
137 Sulphuric acid fob South Korea/Japan spot 2020-11-19 0 0 0 0
138 Sulphuric acid fob South Korea/Japan spot 2020-11-26 3 3 3 3
139 Sulphuric acid fob South Korea/Japan spot 2020-12-03 3 3 3 3
140 Sulphuric acid fob South Korea/Japan spot 2020-12-10 10 10 10 10
141 Sulphuric acid fob South Korea/Japan spot 2020-12-17 10 10 10 10
142 Sulphuric acid fob South Korea/Japan spot 2020-12-23 10 10 10 10
143 Sulphuric acid fob South Korea/Japan spot 2021-01-07 10 10 10 10
144 Sulphuric acid fob South Korea/Japan spot 2021-01-14 15 15 15 15
145 Sulphuric acid fob South Korea/Japan spot 2021-01-21 20 20 20 20
146 Sulphuric acid fob South Korea/Japan spot 2021-01-28 40 40 40 40
147 Sulphuric acid fob South Korea/Japan spot 2021-02-04 40 40 40 40
148 Sulphuric acid fob South Korea/Japan spot 2021-02-11 40 40 40 40
149 Sulphuric acid fob South Korea/Japan spot 2021-02-18 50 50 50 50
150 Sulphuric acid fob South Korea/Japan spot 2021-02-25 50 50 50 50
151 Sulphuric acid fob South Korea/Japan spot 2021-03-04 60 60 60 60
152 Sulphuric acid fob South Korea/Japan spot 2021-03-11 60 60 60 60
153 Sulphuric acid fob South Korea/Japan spot 2021-03-18 70 70 70 70
154 Sulphuric acid fob South Korea/Japan spot 2021-03-25 70 70 70 70
155 Sulphuric acid fob South Korea/Japan spot 2021-04-01 70 70 70 70
156 Sulphuric acid fob South Korea/Japan spot 2021-04-08 70 70 70 70
157 Sulphuric acid fob South Korea/Japan spot 2021-04-15 70 70 70 70
158 Sulphuric acid fob South Korea/Japan spot 2021-04-22 75 75 75 75
159 Sulphuric acid fob South Korea/Japan spot 2021-04-29 75 75 75 75
160 Sulphuric acid fob South Korea/Japan spot 2021-05-06 77 77 77 77
161 Sulphuric acid fob South Korea/Japan spot 2021-05-13 77 77 77 77
162 Sulphuric acid fob South Korea/Japan spot 2021-05-20 77 77 77 77
163 Sulphuric acid fob South Korea/Japan spot 2021-05-27 77 77 77 77
164 Sulphuric acid fob South Korea/Japan spot 2021-06-03 77 77 77 77
165 Sulphuric acid fob South Korea/Japan spot 2021-06-10 77 77 77 77
166 Sulphuric acid fob South Korea/Japan spot 2021-06-17 90 90 90 90
167 Sulphuric acid fob South Korea/Japan spot 2021-06-24 90 90 90 90
168 Sulphuric acid fob South Korea/Japan spot 2021-07-01 90 90 90 90
169 Sulphuric acid fob South Korea/Japan spot 2021-07-08 95 95 95 95
170 Sulphuric acid fob South Korea/Japan spot 2021-07-15 95 95 95 95
171 Sulphuric acid fob South Korea/Japan spot 2021-07-22 95 95 95 95
172 Sulphuric acid fob South Korea/Japan spot 2021-07-29 100 100 100 100
173 Sulphuric acid fob South Korea/Japan spot 2021-08-05 105 105 105 105
174 Sulphuric acid fob South Korea/Japan spot 2021-08-12 110 110 110 110
175 Sulphuric acid fob South Korea/Japan spot 2021-08-19 115 115 115 115
176 Sulphuric acid fob South Korea/Japan spot 2021-08-26 115 115 115 115
177 Sulphuric acid fob South Korea/Japan spot 2021-09-02 115 115 115 115
178 Sulphuric acid fob South Korea/Japan spot 2021-09-09 115 115 115 115
179 Sulphuric acid fob South Korea/Japan spot 2021-09-16 115 115 115 115
180 Sulphuric acid fob South Korea/Japan spot 2021-09-23 115 115 115 115
181 Sulphuric acid fob South Korea/Japan spot 2021-09-30 125 125 125 125
182 Sulphuric acid fob South Korea/Japan spot 2021-10-07 125 125 125 125
183 Sulphuric acid fob South Korea/Japan spot 2021-10-14 125 125 125 125
184 Sulphuric acid fob South Korea/Japan spot 2021-10-21 125 125 125 125
185 Sulphuric acid fob South Korea/Japan spot 2021-10-28 125 125 125 125
186 Sulphuric acid fob South Korea/Japan spot 2021-11-04 125 125 125 125
187 Sulphuric acid fob South Korea/Japan spot 2021-11-11 125 125 125 125
188 Sulphuric acid fob South Korea/Japan spot 2021-11-18 120 120 120 120
189 Sulphuric acid fob South Korea/Japan spot 2021-11-25 120 120 120 120
190 Sulphuric acid fob South Korea/Japan spot 2021-12-02 120 120 120 120
191 Sulphuric acid fob South Korea/Japan spot 2021-12-09 120 120 120 120
192 Sulphuric acid fob South Korea/Japan spot 2021-12-16 125 125 125 125
193 Sulphuric acid fob South Korea/Japan spot 2021-12-23 125 125 125 125
194 Sulphuric acid fob South Korea/Japan spot 2022-01-06 125 125 125 125
195 Sulphuric acid fob South Korea/Japan spot 2022-01-13 125 125 125 125
196 Sulphuric acid fob South Korea/Japan spot 2022-01-20 125 125 125 125
197 Sulphuric acid fob South Korea/Japan spot 2022-01-27 125 125 125 125
198 Sulphuric acid fob South Korea/Japan spot 2022-02-03 125 125 125 125
199 Sulphuric acid fob South Korea/Japan spot 2022-02-10 125 125 125 125
200 Sulphuric acid fob South Korea/Japan spot 2022-02-17 125 125 125 125
201 Sulphuric acid fob South Korea/Japan spot 2022-02-24 125 125 125 125
202 Sulphuric acid fob South Korea/Japan spot 2022-03-03 115 115 115 115
203 Sulphuric acid fob South Korea/Japan spot 2022-03-10 120 120 120 120
204 Sulphuric acid fob South Korea/Japan spot 2022-03-17 120 120 120 120
205 Sulphuric acid fob South Korea/Japan spot 2022-03-24 125 125 125 125
206 Sulphuric acid fob South Korea/Japan spot 2022-03-31 125 125 125 125
207 Sulphuric acid fob South Korea/Japan spot 2022-04-07 130 130 130 130
208 Sulphuric acid fob South Korea/Japan spot 2022-04-14 130 130 130 130
209 Sulphuric acid fob South Korea/Japan spot 2022-04-21 130 130 130 130
210 Sulphuric acid fob South Korea/Japan spot 2022-04-28 133 133 133 133
211 Sulphuric acid fob South Korea/Japan spot 2022-05-05 133 133 133 133
212 Sulphuric acid fob South Korea/Japan spot 2022-05-12 133 133 133 133
213 Sulphuric acid fob South Korea/Japan spot 2022-05-19 133 133 133 133
214 Sulphuric acid fob South Korea/Japan spot 2022-05-26 133 133 133 133
215 Sulphuric acid fob South Korea/Japan spot 2022-06-01 133 133 133 133
216 Sulphuric acid fob South Korea/Japan spot 2022-06-09 133 133 133 133
217 Sulphuric acid fob South Korea/Japan spot 2022-06-16 133 133 133 133
218 Sulphuric acid fob South Korea/Japan spot 2022-06-23 133 133 133 133
219 Sulphuric acid fob South Korea/Japan spot 2022-06-30 133 133 133 133
220 Sulphuric acid fob South Korea/Japan spot 2022-07-07 130 130 130 130
221 Sulphuric acid fob South Korea/Japan spot 2022-07-14 120 120 120 120
222 Sulphuric acid fob South Korea/Japan spot 2022-07-21 110 110 110 110
223 Sulphuric acid fob South Korea/Japan spot 2022-07-28 110 110 110 110
224 Sulphuric acid fob South Korea/Japan spot 2022-08-04 110 110 110 110
225 Sulphuric acid fob South Korea/Japan spot 2022-08-11 100 100 100 100
226 Sulphuric acid fob South Korea/Japan spot 2022-08-18 95 95 95 95
227 Sulphuric acid fob South Korea/Japan spot 2022-08-25 40 40 40 40
228 Sulphuric acid fob South Korea/Japan spot 2022-09-01 40 40 40 40
229 Sulphuric acid fob South Korea/Japan spot 2022-09-08 1 1 1 1
230 Sulphuric acid fob South Korea/Japan spot 2022-09-15 1 1 1 1
231 Sulphuric acid fob South Korea/Japan spot 2022-09-22 1 1 1 1
232 Sulphuric acid fob South Korea/Japan spot 2022-09-29 1 1 1 1
233 Sulphuric acid fob South Korea/Japan spot 2022-10-06 3 3 3 3
234 Sulphuric acid fob South Korea/Japan spot 2022-10-13 3 3 3 3
235 Sulphuric acid fob South Korea/Japan spot 2022-10-20 10 10 10 10
236 Sulphuric acid fob South Korea/Japan spot 2022-10-27 10 10 10 10
237 Sulphuric acid fob South Korea/Japan spot 2022-11-03 10 10 10 10
238 Sulphuric acid fob South Korea/Japan spot 2022-11-10 20 20 20 20
239 Sulphuric acid fob South Korea/Japan spot 2022-11-17 20 20 20 20
240 Sulphuric acid fob South Korea/Japan spot 2022-11-24 20 20 20 20
241 Sulphuric acid fob South Korea/Japan spot 2022-12-01 20 20 20 20
242 Sulphuric acid fob South Korea/Japan spot 2022-12-08 10 10 10 10
243 Sulphuric acid fob South Korea/Japan spot 2022-12-15 10 10 10 10
244 Sulphuric acid fob South Korea/Japan spot 2022-12-22 10 10 10 10
245 Sulphuric acid fob South Korea/Japan spot 2023-01-05 10 10 10 10
246 Sulphuric acid fob South Korea/Japan spot 2023-01-12 10 10 10 10
247 Sulphuric acid fob South Korea/Japan spot 2023-01-19 10 10 10 10
248 Sulphuric acid fob South Korea/Japan spot 2023-01-26 10 10 10 10
249 Sulphuric acid fob South Korea/Japan spot 2023-02-02 5 5 5 5
250 Sulphuric acid fob South Korea/Japan spot 2023-02-09 1 1 1 1
251 Sulphuric acid fob South Korea/Japan spot 2023-02-16 1 1 1 1
252 Sulphuric acid fob South Korea/Japan spot 2023-02-23 -18 -18 -18 -18
253 Sulphuric acid fob South Korea/Japan spot 2023-03-02 -10 -10 -10 -10
254 Sulphuric acid fob South Korea/Japan spot 2023-03-09 -10 -10 -10 -10
255 Sulphuric acid fob South Korea/Japan spot 2023-03-16 -10 -10 -10 -10
256 Sulphuric acid fob South Korea/Japan spot 2023-03-23 -5 -5 -5 -5
257 Sulphuric acid fob South Korea/Japan spot 2023-03-30 0 0 0 0
258 Sulphuric acid fob South Korea/Japan spot 2023-04-06 5 5 5 5
259 Sulphuric acid fob South Korea/Japan spot 2023-04-13 5 5 5 5
260 Sulphuric acid fob South Korea/Japan spot 2023-04-20 5 5 5 5
261 Sulphuric acid fob South Korea/Japan spot 2023-04-27 5 5 5 5
262 Sulphuric acid fob South Korea/Japan spot 2023-05-04 5 5 5 5
263 Sulphuric acid fob South Korea/Japan spot 2023-05-11 5 5 5 5
264 Sulphuric acid fob South Korea/Japan spot 2023-05-18 5 5 5 5
265 Sulphuric acid fob South Korea/Japan spot 2023-05-25 0 0 0 0
266 Sulphuric acid fob South Korea/Japan spot 2023-06-01 0 0 0 0
267 Sulphuric acid fob South Korea/Japan spot 2023-06-08 0 0 0 0
268 Sulphuric acid fob South Korea/Japan spot 2023-06-15 0 0 0 0
269 Sulphuric acid fob South Korea/Japan spot 2023-06-22 -5 -5 -5 -5
270 Sulphuric acid fob South Korea/Japan spot 2023-06-29 -7 -7 -7 -7
271 Sulphuric acid fob South Korea/Japan spot 2023-07-06 -10 -10 -10 -10
272 Sulphuric acid fob South Korea/Japan spot 2023-07-13 -10 -10 -10 -10
273 Sulphuric acid fob South Korea/Japan spot 2023-07-20 -15 -15 -15 -15
274 Sulphuric acid fob South Korea/Japan spot 2023-07-27 -15 -15 -15 -15
275 Sulphuric acid fob South Korea/Japan spot 2023-08-03 -5 -5 -5 -5
276 Sulphuric acid fob South Korea/Japan spot 2023-08-10 0 0 0 0
277 Sulphuric acid fob South Korea/Japan spot 2023-08-17 0 0 0 0
278 Sulphuric acid fob South Korea/Japan spot 2023-08-24 18 18 18 18
279 Sulphuric acid fob South Korea/Japan spot 2023-08-31 28 28 28 28
280 Sulphuric acid fob South Korea/Japan spot 2023-09-07 28 28 28 28
281 Sulphuric acid fob South Korea/Japan spot 2023-09-14 38 38 38 38
282 Sulphuric acid fob South Korea/Japan spot 2023-09-21 43 43 43 43
283 Sulphuric acid fob South Korea/Japan spot 2023-09-28 43 43 43 43
284 Sulphuric acid fob South Korea/Japan spot 2023-10-05 43 43 43 43
285 Sulphuric acid fob South Korea/Japan spot 2023-10-12 38 38 38 38
286 Sulphuric acid fob South Korea/Japan spot 2023-10-19 40 40 40 40
287 Sulphuric acid fob South Korea/Japan spot 2023-10-26 38 38 38 38
288 Sulphuric acid fob South Korea/Japan spot 2023-11-02 35 35 35 35
289 Sulphuric acid fob South Korea/Japan spot 2023-11-09 32 32 32 32
290 Sulphuric acid fob South Korea/Japan spot 2023-11-16 27 27 27 27
291 Sulphuric acid fob South Korea/Japan spot 2023-11-23 25 25 25 25
292 Sulphuric acid fob South Korea/Japan spot 2023-11-30 23 23 23 23
293 Sulphuric acid fob South Korea/Japan spot 2023-12-07 16 16 16 16
294 Sulphuric acid fob South Korea/Japan spot 2023-12-14 12 12 12 12
295 Sulphuric acid fob South Korea/Japan spot 2023-12-21 10 10 10 10
296 Sulphuric acid fob South Korea/Japan spot 2024-01-04 5 5 5 5
297 Sulphuric acid fob South Korea/Japan spot 2024-01-11 5 5 5 5
298 Sulphuric acid fob South Korea/Japan spot 2024-01-18 5 5 5 5
299 Sulphuric acid fob South Korea/Japan spot 2024-01-25 5 5 5 5
300 Sulphuric acid fob South Korea/Japan spot 2024-02-01 4 4 4 4
301 Sulphuric acid fob South Korea/Japan spot 2024-02-08 4 4 4 4
302 Sulphuric acid fob South Korea/Japan spot 2024-02-15 4 4 4 4
303 Sulphuric acid fob South Korea/Japan spot 2024-02-22 5 5 5 5
304 Sulphuric acid fob South Korea/Japan spot 2024-02-29 5 5 5 5
305 Sulphuric acid fob South Korea/Japan spot 2024-03-07 2 2 2 2
306 Sulphuric acid fob South Korea/Japan spot 2024-03-14 5 5 5 5
307 Sulphuric acid fob South Korea/Japan spot 2024-03-21 10 10 10 10
308 Sulphuric acid fob South Korea/Japan spot 2024-03-28 2 2 2 2
309 Sulphuric acid fob South Korea/Japan spot 2024-04-04 6 6 6 6
310 Sulphuric acid fob South Korea/Japan spot 2024-04-11 10 10 10 10
311 Sulphuric acid fob South Korea/Japan spot 2024-04-18 15 15 15 15
312 Sulphuric acid fob South Korea/Japan spot 2024-04-25 15 15 15 15
313 Sulphuric acid fob South Korea/Japan spot 2024-05-02 15 15 15 15
314 Sulphuric acid fob South Korea/Japan spot 2024-05-09 15 15 15 15
315 Sulphuric acid fob South Korea/Japan spot 2024-05-16 15 15 15 15
316 Sulphuric acid fob South Korea/Japan spot 2024-05-23 15 15 15 15
317 Sulphuric acid fob South Korea/Japan spot 2024-05-30 12 12 12 12
318 Sulphuric acid fob South Korea/Japan spot 2024-06-06 15 15 15 15
319 Sulphuric acid fob South Korea/Japan spot 2024-06-13 15 15 15 15
320 Sulphuric acid fob South Korea/Japan spot 2024-06-20 20 20 20 20
321 Sulphuric acid fob South Korea/Japan spot 2024-06-27 22 22 22 22
322 Sulphuric acid fob South Korea/Japan spot 2024-07-04 25 25 25 25
323 Sulphuric acid fob South Korea/Japan spot 2024-07-11 28 28 28 28
324 Sulphuric acid fob South Korea/Japan spot 2024-07-18 30 30 30 30
325 Sulphuric acid fob South Korea/Japan spot 2024-07-25 37 37 37 37
326 Sulphuric acid fob South Korea/Japan spot 2024-08-01 37 37 37 37
327 Sulphuric acid fob South Korea/Japan spot 2024-08-08 40 40 40 40
328 Sulphuric acid fob South Korea/Japan spot 2024-08-15 40 40 40 40
329 Sulphuric acid fob South Korea/Japan spot 2024-08-22 42 42 42 42
330 Sulphuric acid fob South Korea/Japan spot 2024-08-29 40 40 40 40
331 Sulphuric acid fob South Korea/Japan spot 2024-09-05 44 44 44 44
332 Sulphuric acid fob South Korea/Japan spot 2024-09-12 44 44 44 44
333 Sulphuric acid fob South Korea/Japan spot 2024-09-19 42 42 42 42
334 Sulphuric acid fob South Korea/Japan spot 2024-09-26 42 42 42 42
335 Sulphuric acid fob South Korea/Japan spot 2024-10-03 42 42 42 42
336 Sulphuric acid fob South Korea/Japan spot 2024-10-10 45 45 45 45
337 Sulphuric acid fob South Korea/Japan spot 2024-10-17 48 48 48 48
338 Sulphuric acid fob South Korea/Japan spot 2024-10-24 48 48 48 48
339 Sulphuric acid fob South Korea/Japan spot 2024-10-31 48 48 48 48
340 Sulphuric acid fob South Korea/Japan spot 2024-11-07 48 48 48 48
341 Sulphuric acid fob South Korea/Japan spot 2024-11-14 48 48 48 48
342 Sulphuric acid fob South Korea/Japan spot 2024-11-21 48 48 48 48
343 Sulphuric acid fob South Korea/Japan spot 2024-11-28 45 45 45 45
344 Sulphuric acid fob South Korea/Japan spot 2024-12-05 45 45 45 45
345 Sulphuric acid fob South Korea/Japan spot 2024-12-12 44 44 44 44
346 Sulphuric acid fob South Korea/Japan spot 2024-12-19 44 44 44 44
347 Sulphuric acid fob South Korea/Japan spot 2025-01-03 44 44 44 44
348 Sulphuric acid fob South Korea/Japan spot 2025-01-09 44 44 44 44
349 Sulphuric acid fob South Korea/Japan spot 2025-01-16 45 45 45 45
350 Sulphuric acid fob South Korea/Japan spot 2025-01-23 43 43 43 43
351 Sulphuric acid fob South Korea/Japan spot 2025-01-30 43 43 43 43
352 Sulphuric acid fob South Korea/Japan spot 2025-02-06 43 43 43 43
353 Sulphuric acid fob South Korea/Japan spot 2025-02-13 43 43 43 43
354 Sulphuric acid fob South Korea/Japan spot 2025-02-20 43 43 43 43
355 Sulphuric acid fob South Korea/Japan spot 2025-02-27 45 45 45 45
356 Sulphuric acid fob South Korea/Japan spot 2025-03-06 45 45 45 45
357 Sulphuric acid fob South Korea/Japan spot 2025-03-13 50 50 50 50
358 Sulphuric acid fob South Korea/Japan spot 2025-03-20 50 50 50 50
359 Sulphuric acid fob South Korea/Japan spot 2025-03-27 55 55 55 55
360 Sulphuric acid fob South Korea/Japan spot 2025-04-03 55 55 55 55
361 Sulphuric acid fob South Korea/Japan spot 2025-04-10 60 60 60 60
362 Sulphuric acid fob South Korea/Japan spot 2025-04-17 65 65 65 65
363 Sulphuric acid fob South Korea/Japan spot 2025-04-24 65 65 65 65
364 Sulphuric acid fob South Korea/Japan spot 2025-05-01 65 65 65 65
365 Sulphuric acid fob South Korea/Japan spot 2025-05-08 65 65 65 65
366 Sulphuric acid fob South Korea/Japan spot 2025-05-15 65 65 65 65
367 Sulphuric acid fob South Korea/Japan spot 2025-05-22 67 67 67 67
368 Sulphuric acid fob South Korea/Japan spot 2025-05-29 70 70 70 70
369 Sulphuric acid fob South Korea/Japan spot 2025-06-05 70 70 70 70
370 Sulphuric acid fob South Korea/Japan spot 2025-06-12 75 75 75 75
371 Sulphuric acid fob South Korea/Japan spot 2025-06-19 75 75 75 75
372 Sulphuric acid fob South Korea/Japan spot 2025-06-26 80 80 80 80
373 Sulphuric acid fob South Korea/Japan spot 2025-07-03 80 80 80 80
374 Sulphuric acid fob South Korea/Japan spot 2025-07-10 80 80 80 80
375 Sulphuric acid fob South Korea/Japan spot 2025-07-17 80 80 80 80
376 Sulphuric acid fob South Korea/Japan spot 2025-07-24 80 80 80 80
377 Sulphuric acid fob South Korea/Japan spot 2025-07-31 80 80 80 80
378 Sulphuric acid fob South Korea/Japan spot 2025-08-07 80 80 80 80
379 Sulphuric acid fob South Korea/Japan spot 2025-08-14 80 80 80 80
380 Sulphuric acid fob South Korea/Japan spot 2025-08-21 75 75 75 75
381 Sulphuric acid fob South Korea/Japan spot 2025-08-28 75 75 75 75
382 Sulphuric acid fob South Korea/Japan spot 2025-09-04 74 74 74 74
383 Sulphuric acid fob South Korea/Japan spot 2025-09-11 70 70 70 70
384 Sulphuric acid fob South Korea/Japan spot 2025-09-18 63 63 63 63
385 Sulphuric acid fob South Korea/Japan spot 2025-09-25 61 61 61 61
386 Sulphuric acid fob South Korea/Japan spot 2025-10-02 61 61 61 61
387 Sulphuric acid fob South Korea/Japan spot 2025-10-09 61 61 61 61
388 Sulphuric acid fob South Korea/Japan spot 2025-10-16 73 73 73 73
389 Sulphuric acid fob South Korea/Japan spot 2025-10-23 78 78 78 78
390 Sulphuric acid fob South Korea/Japan spot 2025-10-30 83 83 83 83
391 Sulphuric acid fob South Korea/Japan spot 2025-11-06 108 108 108 108
392 Sulphuric acid fob South Korea/Japan spot 2025-11-13 108 108 108 108
393 Sulphuric acid fob South Korea/Japan spot 2025-11-20 108 108 108 108
394 Sulphuric acid fob South Korea/Japan spot 2025-11-27 108 108 108 108
395 Sulphuric acid fob South Korea/Japan spot 2025-12-04 108 108 108 108
396 Sulphuric acid fob South Korea/Japan spot 2025-12-11 108 108 108 108
397 Sulphuric acid fob South Korea/Japan spot 2025-12-18 108 108 108 108
398 Sulphuric acid fob South Korea/Japan spot 2026-01-02 108 108 108 108
399 Sulphuric acid fob South Korea/Japan spot 2026-01-08 108 108 108 108
400 Sulphuric acid fob South Korea/Japan spot 2026-01-15 108 108 108 108
401 Sulphuric acid fob South Korea/Japan spot 2026-01-22 115 115 115 115
402 Sulphuric acid fob South Korea/Japan spot 2026-01-29 125 125 125 125
403 Sulphuric acid fob South Korea/Japan spot 2026-02-05 130 130 130 130
404 Sulphuric acid fob South Korea/Japan spot 2026-02-12 130 130 130 130
405 Sulphuric acid fob South Korea/Japan spot 2026-02-19 135 135 135 135
406 Sulphuric acid fob South Korea/Japan spot 2026-02-26 135 135 135 135

View File

@@ -1,77 +1,3 @@
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,purchase_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity,,,,,,,,
53F9DE94-7002-4A19-86EC-A8C18D7AF953,53F9DE94-7002-4A19-86EC-A8C18D7AF953,2171,25030D,P25.018,SUMITOMO CORPORATION - MMC,USD,3/3/2026,NET ,,NCSW,0,0,598.977,598.977,Naoshima,Samut Prakan,FOB,manual,,2171 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,598.977,Mt,45,598.977 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
E47C4BB2-FFB0-4B96-B450-38C00AF89AB1,E47C4BB2-FFB0-4B96-B450-38C00AF89AB1,2175,25030E,P25.018,SUMITOMO CORPORATION - MMC,USD,3/11/2026,NET ,,NCSW,0,0,401.023,401.023,Naoshima,Map Ta Phut,FOB,manual,,2175 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,401.023,Mt,132.5,401.023 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
E3B8720A-2576-4249-B3D0-CF8D197DDC64,E3B8720A-2576-4249-B3D0-CF8D197DDC64,2177,25030DF,P25.018,SUMITOMO CORPORATION - MMC,USD,3/12/2026,NET 7,,NCSW,0,0,800,800,Naoshima,Samut Prakan,FOB,manual,,2177 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,800,Mt,45,800 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
5E71530B-DEF7-4E7A-9245-6C2C2901230E,5E71530B-DEF7-4E7A-9245-6C2C2901230E,2195,25036A,P26.006,SUMITOMO CORPORATION - PPC,USD,4/14/2026,NET ,,NCSW,10,10,9000,11000,Saganoseki,Stockton,FOB,manual,,2195 / H2SO4 FY 2026 / Default,line,JP-H2SO4,Japan,10000,Mt,71,10000 Mt of sulphuric acid - Tel-quel,5/13/2026,5/27/2026,bldate,5/13/2026,Stephane Monnard, ,0,H2SO4 FY 2026,Default,Laycan,,0,6,300,0,0,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 source_id source_line_id number reference our_reference party_name currency_code purchase_date payment_term warehouse_code weight_basis tol_min_pct tol_max_pct tol_min_qty tol_max_qty from_location_name to_location_name incoterm_name invoice_method description comment line_type line_product_code origin line_quantity line_unit_code line_price line_description line_from_del line_to_del pricing_trigger pricing_estimated_date trader operator concentration book strategy period_at demurrage laytime_hours nor_extra_hours pumping_rate use_only_min_max drop_remaining_quantity
2 53F9DE94-7002-4A19-86EC-A8C18D7AF953 5E71530B-DEF7-4E7A-9245-6C2C2901230E 53F9DE94-7002-4A19-86EC-A8C18D7AF953 5E71530B-DEF7-4E7A-9245-6C2C2901230E 2171 2195 25030D 25036A P25.018 P26.006 SUMITOMO CORPORATION - MMC SUMITOMO CORPORATION - PPC USD 3/3/2026 4/14/2026 NET NCSW 0 10 0 10 598.977 9000 598.977 11000 Naoshima Saganoseki Samut Prakan Stockton FOB manual 2171 / H2SO4 FY 2025 / Thailand FY25 2195 / H2SO4 FY 2026 / Default line JP-H2SO4 Japan 598.977 10000 Mt 45 71 598.977 Mt of sulphuric acid - Tel-quel 10000 Mt of sulphuric acid - Tel-quel 3/13/2026 5/13/2026 3/22/2026 5/27/2026 bldate 3/13/2026 5/13/2026 Stephane Monnard 0 H2SO4 FY 2025 H2SO4 FY 2026 Thailand FY25 Default Laycan 0 6 300 1 0 0
E47C4BB2-FFB0-4B96-B450-38C00AF89AB1 E47C4BB2-FFB0-4B96-B450-38C00AF89AB1 2175 25030E P25.018 SUMITOMO CORPORATION - MMC USD 3/11/2026 NET NCSW 0 0 401.023 401.023 Naoshima Map Ta Phut FOB manual 2175 / H2SO4 FY 2025 / Thailand FY25 line JP-H2SO4 Japan 401.023 Mt 132.5 401.023 Mt of sulphuric acid - Tel-quel 3/13/2026 3/22/2026 bldate 3/13/2026 Stephane Monnard 0 H2SO4 FY 2025 Thailand FY25 Laycan 0 6 300 1 0
E3B8720A-2576-4249-B3D0-CF8D197DDC64 E3B8720A-2576-4249-B3D0-CF8D197DDC64 2177 25030DF P25.018 SUMITOMO CORPORATION - MMC USD 3/12/2026 NET 7 NCSW 0 0 800 800 Naoshima Samut Prakan FOB manual 2177 / H2SO4 FY 2025 / Thailand FY25 line JP-H2SO4 Japan 800 Mt 45 800 Mt of sulphuric acid - Tel-quel 3/13/2026 3/22/2026 bldate 3/13/2026 Stephane Monnard 0 H2SO4 FY 2025 Thailand FY25 Laycan 0 6 300 1 0
3

View File

@@ -1,4 +1,4 @@
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,sale_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity
d5499f8c-8623-4c97-ade2-186e34dd1f31,d5499f8c-8623-4c97-ade2-186e34dd1f31,2172,25030D,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/3/2026,NET ,,NCSW,0,0,598.977,598.977,Naoshima,Samut Prakan,CFR,manual,,2172 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,598.98,Mt,130.32,598.977 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
40ccc41f-157d-40a2-9a76-60aa220e33e1,40ccc41f-157d-40a2-9a76-60aa220e33e1,2176,25030E,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/11/2026,NET 30,,NCSW,0,0,401.023,401.023,Naoshima,Samut Prakan,CFR,manual,,2176 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,401.02,Mt,130.32,401.023 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
eefcd785-af5b-4212-8b1f-a448e946c443,eefcd785-af5b-4212-8b1f-a448e946c443,2178,25030F,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/12/2026,NET 30,,NCSW,0,0,800,800,Naoshima,Samut Prakan,CFR,manual,,2178 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,800,Mt,125.77,800 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,sale_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity,,,,,,,,
4D63D146-99BF-4AC8-8967-93183E7D1649,4D63D146-99BF-4AC8-8967-93183E7D1649,2194,25036B,S26.014,"INTERACID NORTH AMERICA, INC (Stockton)",USD,4/14/2026,NET 30,,NCSW,10,10,9000,11000,Saganoseki,Santa Rosalia,CFR,manual,,2194 / H2SO4 FY 2026 / Default,line,JP-H2SO4,Japan,10000,Mt,138.5,10000 Mt of sulphuric acid - Tel-quel,5/13/2026,5/27/2026,bldate,5/13/2026,Stephane Monnard, ,0,H2SO4 FY 2026,Default,Laycan,,0,6,350,0,0,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 source_id source_line_id number reference our_reference party_name currency_code sale_date payment_term warehouse_code weight_basis tol_min_pct tol_max_pct tol_min_qty tol_max_qty from_location_name to_location_name incoterm_name invoice_method description comment line_type line_product_code origin line_quantity line_unit_code line_price line_description line_from_del line_to_del pricing_trigger pricing_estimated_date trader operator concentration book strategy period_at demurrage laytime_hours nor_extra_hours pumping_rate use_only_min_max drop_remaining_quantity
2 d5499f8c-8623-4c97-ade2-186e34dd1f31 4D63D146-99BF-4AC8-8967-93183E7D1649 d5499f8c-8623-4c97-ade2-186e34dd1f31 4D63D146-99BF-4AC8-8967-93183E7D1649 2172 2194 25030D 25036B S25.022 S26.014 SUMITOMO CORPORATION THAILAND LTD. INTERACID NORTH AMERICA, INC (Stockton) USD 3/3/2026 4/14/2026 NET NET 30 NCSW 0 10 0 10 598.977 9000 598.977 11000 Naoshima Saganoseki Samut Prakan Santa Rosalia CFR manual 2172 / H2SO4 FY 2025 / Thailand FY25 2194 / H2SO4 FY 2026 / Default line JP-H2SO4 Japan 598.98 10000 Mt 130.32 138.5 598.977 Mt of sulphuric acid - Tel-quel 10000 Mt of sulphuric acid - Tel-quel 3/13/2026 5/13/2026 3/22/2026 5/27/2026 bldate 3/13/2026 5/13/2026 Stephane Monnard 0 H2SO4 FY 2025 H2SO4 FY 2026 Thailand FY25 Default Laycan 0 6 250 350 TRUE 0 FALSE 0
3 40ccc41f-157d-40a2-9a76-60aa220e33e1 40ccc41f-157d-40a2-9a76-60aa220e33e1 2176 25030E S25.022 SUMITOMO CORPORATION THAILAND LTD. USD 3/11/2026 NET 30 NCSW 0 0 401.023 401.023 Naoshima Samut Prakan CFR manual 2176 / H2SO4 FY 2025 / Thailand FY25 line JP-H2SO4 Japan 401.02 Mt 130.32 401.023 Mt of sulphuric acid - Tel-quel 3/13/2026 3/22/2026 bldate 3/13/2026 Stephane Monnard 0 H2SO4 FY 2025 Thailand FY25 Laycan 0 6 250 TRUE FALSE
4 eefcd785-af5b-4212-8b1f-a448e946c443 eefcd785-af5b-4212-8b1f-a448e946c443 2178 25030F S25.022 SUMITOMO CORPORATION THAILAND LTD. USD 3/12/2026 NET 30 NCSW 0 0 800 800 Naoshima Samut Prakan CFR manual 2178 / H2SO4 FY 2025 / Thailand FY25 line JP-H2SO4 Japan 800 Mt 125.77 800 Mt of sulphuric acid - Tel-quel 3/13/2026 3/22/2026 bldate 3/13/2026 Stephane Monnard 0 H2SO4 FY 2025 Thailand FY25 Laycan 0 6 250 TRUE FALSE

View File

@@ -0,0 +1,179 @@
import sys
import csv
from pathlib import Path
# Add parent directory to Python path so we can import helpers
parent_dir = Path(__file__).parent.parent
sys.path.insert(0, str(parent_dir))
from helpers.config import get_db_connection
CSV_PATH = parent_dir / "loaders" / "Contract_Update.csv"
def check_contract_number_format(cur):
"""Show sample contract numbers from DB to confirm expected format."""
cur.execute("SELECT number FROM purchase_purchase ORDER BY id LIMIT 3")
pur_samples = [r[0] for r in cur.fetchall()]
cur.execute("SELECT number FROM sale_sale ORDER BY id LIMIT 3")
sale_samples = [r[0] for r in cur.fetchall()]
print(f" Sample purchase numbers : {pur_samples}")
print(f" Sample sale numbers : {sale_samples}")
print()
def update_estimated_bl_dates(dry_run=False):
conn = get_db_connection()
cur = conn.cursor()
print("=== Contract BL Date Update ===")
print(f"CSV : {CSV_PATH}")
print(f"Mode : {'DRY RUN (no changes will be saved)' if dry_run else 'LIVE UPDATE'}\n")
print("DB contract number format check:")
check_contract_number_format(cur)
# Read CSV
rows = []
with open(CSV_PATH, newline="", encoding="utf-8") as f:
reader = csv.DictReader(f)
for row in reader:
contract_type = row["ContractType"].strip().upper()
contract_number = row["ContractNumber"].strip()
bl_date = row["EstimatedBlDate"].strip()
if contract_type and contract_number and bl_date:
rows.append((contract_type, contract_number, bl_date))
print(f"Rows loaded from CSV: {len(rows)}\n")
updated_count = 0
skipped_count = 0
not_found_count = 0
for contract_type, contract_number, bl_date in rows:
if contract_type == "P":
# Resolve purchase_line IDs for this purchase number
# Try both raw number (e.g. "2086") and P- prefix (e.g. "P-2086")
cur.execute(
"""
SELECT pl.id
FROM purchase_line pl
JOIN purchase_purchase pp ON pp.id = pl.purchase
WHERE pp.number IN (%s, %s)
AND pl.type = 'line'
ORDER BY pl.id
""",
(contract_number, f"P-{contract_number}"),
)
line_ids = [r[0] for r in cur.fetchall()]
if not line_ids:
print(f" [NOT FOUND] Purchase {contract_number} — no matching purchase_line rows")
not_found_count += 1
continue
# Update pricing_estimated rows linked to those lines with trigger = bldate
cur.execute(
"""
UPDATE pricing_estimated
SET estimated_date = %s,
write_date = NOW(),
write_uid = 1
WHERE line = ANY(%s)
AND trigger = 'bldate'
RETURNING id, line, estimated_date
""",
(bl_date, line_ids),
)
updated_rows = cur.fetchall()
if updated_rows:
for pe_id, line_id, new_date in updated_rows:
print(
f" [{'DRY' if dry_run else 'OK '}] Purchase {contract_number}"
f" | purchase_line={line_id} | pricing_estimated.id={pe_id}"
f" | estimated_date -> {new_date}"
)
updated_count += len(updated_rows)
else:
print(
f" [SKIP] Purchase {contract_number} — lines {line_ids} found"
f" but no pricing_estimated row with trigger='bldate'"
)
skipped_count += 1
elif contract_type == "S":
# Resolve sale_line IDs for this sale number
# Try both raw number (e.g. "2086") and S- prefix (e.g. "S-2086")
cur.execute(
"""
SELECT sl.id
FROM sale_line sl
JOIN sale_sale ss ON ss.id = sl.sale
WHERE ss.number IN (%s, %s)
AND sl.type = 'line'
ORDER BY sl.id
""",
(contract_number, f"S-{contract_number}"),
)
line_ids = [r[0] for r in cur.fetchall()]
if not line_ids:
print(f" [NOT FOUND] Sale {contract_number} — no matching sale_line rows")
not_found_count += 1
continue
# Update pricing_estimated rows linked to those sale lines with trigger = bldate
cur.execute(
"""
UPDATE pricing_estimated
SET estimated_date = %s,
write_date = NOW(),
write_uid = 1
WHERE sale_line = ANY(%s)
AND trigger = 'bldate'
RETURNING id, sale_line, estimated_date
""",
(bl_date, line_ids),
)
updated_rows = cur.fetchall()
if updated_rows:
for pe_id, sale_line_id, new_date in updated_rows:
print(
f" [{'DRY' if dry_run else 'OK '}] Sale {contract_number}"
f" | sale_line={sale_line_id} | pricing_estimated.id={pe_id}"
f" | estimated_date -> {new_date}"
)
updated_count += len(updated_rows)
else:
print(
f" [SKIP] Sale {contract_number} — lines {line_ids} found"
f" but no pricing_estimated row with trigger='bldate'"
)
skipped_count += 1
else:
print(f" [WARN] Unknown ContractType '{contract_type}' for contract {contract_number} — skipped")
skipped_count += 1
print("\n--- Summary ---")
print(f" Updated : {updated_count} pricing_estimated rows")
print(f" Skipped : {skipped_count} contracts (no bldate row in pricing_estimated)")
print(f" Not found: {not_found_count} contracts (contract number not in DB)")
if dry_run:
conn.rollback()
print("\nDry run — all changes rolled back, nothing saved.")
else:
conn.commit()
print("\nAll changes committed to database.")
cur.close()
conn.close()
if __name__ == "__main__":
dry_run = "--dry-run" in sys.argv
update_estimated_bl_dates(dry_run=dry_run)

View File

@@ -0,0 +1,89 @@
-- Contracts with an MtM strategy, pricing_component details, and latest valuation snapshot
SELECT
'Purchase' AS side,
pp.number AS contract,
pl.quantity AS contracted_qty,
ms.name AS strategy_name,
msc.name AS scenario_name,
msc.valuation_date,
msc.use_last_price,
cur.symbol AS strategy_currency,
-- MtM component (pricing_component linked via strategy)
pc_mtm.price_source_type AS component_price_source,
pc_mtm.ratio AS component_ratio_pct,
ft.name AS component_fix_type,
pi.price_desc AS component_curve,
pc_cal.name AS component_calendar,
pc_mtm.auto AS component_auto,
pc_mtm.fallback AS component_fallback,
-- Latest valuation (physical price row)
vv.date AS last_valuation_date,
vv.price AS last_valuation_price,
vv.quantity AS last_valuation_qty,
vv.amount AS last_valuation_amount,
vv.mtm AS portfolio_mtm
FROM purchase_strategy ps
JOIN purchase_line pl ON pl.id = ps.line
JOIN purchase_purchase pp ON pp.id = pl.purchase
JOIN mtm_strategy ms ON ms.id = ps.strategy
JOIN mtm_scenario msc ON msc.id = ms.scenario
JOIN currency_currency cur ON cur.id = ms.currency
LEFT JOIN pricing_component pc_mtm ON pc_mtm.strategy = ms.id
LEFT JOIN price_fixtype ft ON ft.id = pc_mtm.fix_type
LEFT JOIN price_price pi ON pi.id = pc_mtm.price_index
LEFT JOIN price_calendar pc_cal ON pc_cal.id = pc_mtm.calendar
LEFT JOIN LATERAL (
SELECT date, price, quantity, amount, mtm
FROM valuation_valuation
WHERE line = pl.id
AND type = 'pur. priced'
AND reference = 'Purchase/Physic'
ORDER BY date DESC
LIMIT 1
) vv ON TRUE
UNION ALL
SELECT
'Sale',
ss.number,
sl.quantity,
ms.name,
msc.name,
msc.valuation_date,
msc.use_last_price,
cur.symbol,
pc_mtm.price_source_type,
pc_mtm.ratio,
ft.name,
pi.price_desc,
pc_cal.name,
pc_mtm.auto,
pc_mtm.fallback,
vv.date,
vv.price,
vv.quantity,
vv.amount,
vv.mtm
FROM sale_strategy sa
JOIN sale_line sl ON sl.id = sa.sale_line
JOIN sale_sale ss ON ss.id = sl.sale
JOIN mtm_strategy ms ON ms.id = sa.strategy
JOIN mtm_scenario msc ON msc.id = ms.scenario
JOIN currency_currency cur ON cur.id = ms.currency
LEFT JOIN pricing_component pc_mtm ON pc_mtm.strategy = ms.id
LEFT JOIN price_fixtype ft ON ft.id = pc_mtm.fix_type
LEFT JOIN price_price pi ON pi.id = pc_mtm.price_index
LEFT JOIN price_calendar pc_cal ON pc_cal.id = pc_mtm.calendar
LEFT JOIN LATERAL (
SELECT date, price, quantity, amount, mtm
FROM valuation_valuation
WHERE line = sl.id
AND type = 'sale priced'
AND reference = 'Sale/Physic'
ORDER BY date DESC
LIMIT 1
) vv ON TRUE
ORDER BY side, contract;

View File

@@ -0,0 +1,3 @@
DELETE FROM "public"."price_price_value"
WHERE "price_date" > '2026-04-09'
AND "active" = true;

450
SQL/Risk Management.sql Normal file
View File

@@ -0,0 +1,450 @@
-- This shows where each lot currently stands across the full chain
SELECT
pp.name AS supplier,
pur.number AS purchase_contract,
pur.state AS contract_state,
si.number AS shipment,
si.state AS shipment_state,
pur.invoice_state AS invoice_state,
COUNT(l.id) AS lots,
SUM(l.lot_qt) AS quantity
FROM lot_lot l
LEFT JOIN stock_shipment_in si ON si.id = l.lot_shipment_in
LEFT JOIN purchase_line pl ON pl.id = l.line
LEFT JOIN purchase_purchase pur ON pur.id = pl.purchase
LEFT JOIN party_party pp ON pp.id = pur.party
GROUP BY pp.name, pur.number, pur.state, si.number, si.state, pur.invoice_state
ORDER BY pp.name, pur.number;
-- This shows the details of each lot that is still in draft shipment, to see where they are in the chain and what is missing
SELECT
pp.name AS supplier,
prod.name AS product,
pur.number AS purchase_contract,
si.number AS shipment_number,
tv.vessel_name AS vessel,
si.planned_date,
si.eta,
si.etd,
si.cargo_mode,
si.transport_type,
si.bl_number,
l.id AS lot_id,
pl.quantity AS contracted_qty,
u.name AS unit,
pl.unit_price,
cur.code AS currency,
pl.price_type,
l.lot_pur_inv_state,
l.lot_sale_inv_state
FROM lot_lot l
JOIN stock_shipment_in si ON si.id = l.lot_shipment_in
JOIN purchase_line pl ON pl.id = l.line
JOIN purchase_purchase pur ON pur.id = pl.purchase
JOIN party_party pp ON pp.id = pur.party
JOIN product_product prd ON prd.id = l.lot_product
JOIN product_template prod ON prod.id = prd.template
JOIN currency_currency cur ON cur.id = pur.currency
LEFT JOIN product_uom u ON u.id = pl.unit
LEFT JOIN trade_vessel tv ON tv.id = si.vessel
WHERE si.state = 'draft'
ORDER BY si.planned_date, pp.name, si.number, l.id;
-- This shows all the contracts that are fixed price
SELECT
'Purchase' AS side,
pur.number AS contract,
pur.state AS contract_state,
pp.name AS counterparty,
prod.name AS product,
pl.from_del,
pl.to_del,
pl.quantity AS contracted_qty,
u.name AS unit,
pl.unit_price AS fixed_price,
cur.code AS currency
FROM purchase_line pl
JOIN purchase_purchase pur ON pur.id = pl.purchase
JOIN party_party pp ON pp.id = pur.party
JOIN product_product prd ON prd.id = pl.product
JOIN product_template prod ON prod.id = prd.template
JOIN currency_currency cur ON cur.id = pur.currency
LEFT JOIN product_uom u ON u.id = pl.unit
WHERE pl.type = 'line' AND pl.price_type = 'priced'
UNION ALL
SELECT
'Sale' AS side,
s.number,
s.state,
pp.name,
prod.name,
sl.from_del,
sl.to_del,
sl.quantity,
u.name,
sl.unit_price,
cur.code
FROM sale_line sl
JOIN sale_sale s ON s.id = sl.sale
JOIN party_party pp ON pp.id = s.party
JOIN product_product prd ON prd.id = sl.product
JOIN product_template prod ON prod.id = prd.template
JOIN currency_currency cur ON cur.id = s.currency
LEFT JOIN product_uom u ON u.id = sl.unit
WHERE sl.type = 'line' AND sl.price_type = 'priced'
ORDER BY side, contract;
WITH
-- Last fixation state per purchase line
pur_fix AS (
SELECT DISTINCT ON (line)
line,
fixed_qt,
fixed_qt_price,
unfixed_qt,
unfixed_qt_price AS unfixed_price
FROM pricing_pricing
WHERE line IS NOT NULL
ORDER BY line, last DESC NULLS LAST, pricing_date DESC
),
-- Last fixation state per sale line ← mirrors pur_fix exactly
sale_fix AS (
SELECT DISTINCT ON (sale_line)
sale_line,
fixed_qt,
fixed_qt_price,
unfixed_qt,
unfixed_qt_price AS unfixed_price
FROM pricing_pricing
WHERE sale_line IS NOT NULL
ORDER BY sale_line, last DESC NULLS LAST, pricing_date DESC
),
-- Most recent market price per price index
last_mkt AS (
SELECT DISTINCT ON (price)
price AS price_index_id,
price_date AS last_market_date,
price_value AS last_market_price
FROM price_price_value
ORDER BY price, price_date DESC
),
-- Next scheduled fixing date per purchase line
pur_next_fix AS (
SELECT DISTINCT ON (line)
line,
estimated_date AS next_fixing_date,
trigger AS fixing_trigger
FROM pricing_estimated
WHERE line IS NOT NULL
AND estimated_date >= CURRENT_DATE
ORDER BY line, estimated_date ASC
),
-- Next scheduled fixing date per sale line
sale_next_fix AS (
SELECT DISTINCT ON (sale_line)
sale_line,
estimated_date AS next_fixing_date,
trigger AS fixing_trigger
FROM pricing_estimated
WHERE sale_line IS NOT NULL
AND estimated_date >= CURRENT_DATE
ORDER BY sale_line, estimated_date ASC
)
SELECT
'Purchase' AS side,
pur.number AS contract,
pur.state AS contract_state,
pp.name AS counterparty,
prod.name AS product,
pl.from_del,
pl.to_del,
pl.quantity AS contracted_qty,
u.name AS unit,
cur.symbol AS currency,
pi2.price_desc AS price_index,
nf.fixing_trigger,
nf.next_fixing_date,
COALESCE(pf.fixed_qt, 0) AS fixed_qty,
COALESCE(pf.fixed_qt_price, 0) AS avg_fixed_price,
pl.quantity - COALESCE(pf.fixed_qt, 0) AS unfixed_qty,
COALESCE(lm.last_market_price, pf.unfixed_price) AS unfixed_market_price,
lm.last_market_date,
lm.last_market_price
FROM purchase_line pl
JOIN purchase_purchase pur ON pur.id = pl.purchase
JOIN party_party pp ON pp.id = pur.party
JOIN product_product prd ON prd.id = pl.product
JOIN product_template prod ON prod.id = prd.template
JOIN currency_currency cur ON cur.id = pur.currency
LEFT JOIN product_uom u ON u.id = pl.unit
LEFT JOIN pricing_component pc ON pc.line = pl.id
LEFT JOIN price_price pi2 ON pi2.id = pc.price_index
LEFT JOIN last_mkt lm ON lm.price_index_id = pc.price_index
LEFT JOIN pur_fix pf ON pf.line = pl.id
LEFT JOIN pur_next_fix nf ON nf.line = pl.id
WHERE pl.type = 'line' AND pl.price_type = 'basis'
UNION ALL
SELECT
'Sale' AS side,
s.number,
s.state,
pp.name,
prod.name,
sl.from_del,
sl.to_del,
sl.quantity,
u.name,
cur.symbol,
pi2.price_desc,
nf.fixing_trigger,
nf.next_fixing_date,
COALESCE(sf.fixed_qt, 0) AS fixed_qty,
COALESCE(sf.fixed_qt_price, 0) AS avg_fixed_price,
sl.quantity - COALESCE(sf.fixed_qt, 0) AS unfixed_qty,
COALESCE(lm.last_market_price, sf.unfixed_price) AS unfixed_market_price,
lm.last_market_date,
lm.last_market_price
FROM sale_line sl
JOIN sale_sale s ON s.id = sl.sale
JOIN party_party pp ON pp.id = s.party
JOIN product_product prd ON prd.id = sl.product
JOIN product_template prod ON prod.id = prd.template
JOIN currency_currency cur ON cur.id = s.currency
LEFT JOIN product_uom u ON u.id = sl.unit
LEFT JOIN pricing_component pc ON pc.sale_line = sl.id
LEFT JOIN price_price pi2 ON pi2.id = pc.price_index
LEFT JOIN last_mkt lm ON lm.price_index_id = pc.price_index
LEFT JOIN sale_fix sf ON sf.sale_line = sl.id
LEFT JOIN sale_next_fix nf ON nf.sale_line = sl.id
WHERE sl.type = 'line' AND sl.price_type = 'basis'
ORDER BY side, contract;
-- MtM strategy, component details, and last valuation per contract (purchase and sale)
-- Columns:
-- strategy_name / scenario_name / valuation_date → MtM setup header
-- component_* → from pricing_component linked via strategy (MtM strategy-level components)
-- pricing_* → from pricing_component linked via line/sale_line (contract fixation setup)
-- vv_* → latest snapshot from valuation_valuation (price = contract price, amount = contract value)
-- vvl_* → current state from valuation_valuation_line (same structure, always most recent)
WITH
-- Latest valuation_valuation row per purchase line (physical price row only)
last_vv_pur AS (
SELECT DISTINCT ON (line)
line,
date AS vv_date,
price AS vv_price,
quantity AS vv_quantity,
amount AS vv_amount,
base_amount AS vv_base_amount,
rate AS vv_rate
FROM valuation_valuation
WHERE line IS NOT NULL
AND type = 'pur. priced'
AND reference = 'Purchase/Physic'
ORDER BY line, date DESC
),
-- Latest valuation_valuation row per sale line
last_vv_sale AS (
SELECT DISTINCT ON (sale_line)
sale_line,
date AS vv_date,
price AS vv_price,
quantity AS vv_quantity,
amount AS vv_amount,
base_amount AS vv_base_amount,
rate AS vv_rate
FROM valuation_valuation
WHERE sale_line IS NOT NULL
AND type = 'sale priced'
AND reference = 'Sale/Physic'
ORDER BY sale_line, date DESC
),
-- valuation_valuation_line per purchase line (current state)
last_vvl_pur AS (
SELECT DISTINCT ON (line)
line,
date AS vvl_date,
price AS vvl_price,
quantity AS vvl_quantity,
amount AS vvl_amount,
base_amount AS vvl_base_amount,
rate AS vvl_rate
FROM valuation_valuation_line
WHERE line IS NOT NULL
AND type = 'pur. priced'
AND reference = 'Purchase/Physic'
ORDER BY line, date DESC
),
-- valuation_valuation_line per sale line (current state)
last_vvl_sale AS (
SELECT DISTINCT ON (sale_line)
sale_line,
date AS vvl_date,
price AS vvl_price,
quantity AS vvl_quantity,
amount AS vvl_amount,
base_amount AS vvl_base_amount,
rate AS vvl_rate
FROM valuation_valuation_line
WHERE sale_line IS NOT NULL
AND type = 'sale priced'
AND reference = 'Sale/Physic'
ORDER BY sale_line, date DESC
)
SELECT
'Purchase' AS side,
pur.number AS contract,
pur.state AS contract_state,
pp.name AS counterparty,
prod.name AS product,
pl.from_del,
pl.to_del,
pl.quantity AS contracted_qty,
u.name AS unit,
-- Strategy
ms.name AS strategy_name,
ms_cur.symbol AS strategy_currency,
-- Scenario
msc.name AS scenario_name,
msc.valuation_date,
msc.use_last_price,
cal.name AS scenario_calendar,
-- MtM component (pricing_component linked via strategy)
pc_mtm.price_source_type AS component_price_source,
pc_mtm.ratio AS component_ratio_pct,
ft.name AS component_fix_type,
pi2.price_desc AS component_curve,
pc_mtm_cal.name AS component_calendar,
pc_mtm.auto AS component_auto,
pc_mtm.fallback AS component_fallback,
-- Pricing component (fixation setup — independent of MtM, already populated)
pc_idx.price_desc AS pricing_curve,
pc_ft.name AS pricing_fix_type,
pc.price_source_type AS pricing_source_type,
pc.ratio AS pricing_ratio_pct,
pc_cal.name AS pricing_calendar,
-- Last valuation snapshot (valuation_valuation — most recent run)
vv.vv_date AS last_valuation_date,
vv.vv_price AS last_valuation_price,
vv.vv_quantity AS last_valuation_qty,
vv.vv_amount AS last_valuation_amount,
vv.vv_base_amount AS last_valuation_base_amount,
vv.vv_rate AS last_valuation_rate,
-- Current valuation state (valuation_valuation_line — always latest)
vvl.vvl_date AS current_valuation_date,
vvl.vvl_price AS current_valuation_price,
vvl.vvl_quantity AS current_valuation_qty,
vvl.vvl_amount AS current_valuation_amount,
vvl.vvl_base_amount AS current_valuation_base_amount,
vvl.vvl_rate AS current_valuation_rate
FROM purchase_strategy ps
JOIN purchase_line pl ON pl.id = ps.line
JOIN purchase_purchase pur ON pur.id = pl.purchase
JOIN party_party pp ON pp.id = pur.party
JOIN product_product prd ON prd.id = pl.product
JOIN product_template prod ON prod.id = prd.template
LEFT JOIN product_uom u ON u.id = pl.unit
JOIN mtm_strategy ms ON ms.id = ps.strategy
JOIN mtm_scenario msc ON msc.id = ms.scenario
LEFT JOIN currency_currency ms_cur ON ms_cur.id = ms.currency
LEFT JOIN price_calendar cal ON cal.id = msc.calendar
LEFT JOIN pricing_component pc_mtm ON pc_mtm.strategy = ms.id
LEFT JOIN price_fixtype ft ON ft.id = pc_mtm.fix_type
LEFT JOIN price_price pi2 ON pi2.id = pc_mtm.price_index
LEFT JOIN price_calendar pc_mtm_cal ON pc_mtm_cal.id = pc_mtm.calendar
LEFT JOIN pricing_component pc ON pc.line = pl.id
LEFT JOIN price_price pc_idx ON pc_idx.id = pc.price_index
LEFT JOIN price_fixtype pc_ft ON pc_ft.id = pc.fix_type
LEFT JOIN price_calendar pc_cal ON pc_cal.id = pc.calendar
LEFT JOIN last_vv_pur vv ON vv.line = pl.id
LEFT JOIN last_vvl_pur vvl ON vvl.line = pl.id
UNION ALL
SELECT
'Sale' AS side,
s.number,
s.state,
pp.name,
prod.name,
sl.from_del,
sl.to_del,
sl.quantity,
u.name,
ms.name,
ms_cur.symbol,
msc.name,
msc.valuation_date,
msc.use_last_price,
cal.name,
pc_mtm.price_source_type,
pc_mtm.ratio,
ft.name,
pi2.price_desc,
pc_mtm_cal.name,
pc_mtm.auto,
pc_mtm.fallback,
pc_idx.price_desc,
pc_ft.name,
pc.price_source_type,
pc.ratio,
pc_cal.name,
vv.vv_date,
vv.vv_price,
vv.vv_quantity,
vv.vv_amount,
vv.vv_base_amount,
vv.vv_rate,
vvl.vvl_date,
vvl.vvl_price,
vvl.vvl_quantity,
vvl.vvl_amount,
vvl.vvl_base_amount,
vvl.vvl_rate
FROM sale_strategy ss
JOIN sale_line sl ON sl.id = ss.sale_line
JOIN sale_sale s ON s.id = sl.sale
JOIN party_party pp ON pp.id = s.party
JOIN product_product prd ON prd.id = sl.product
JOIN product_template prod ON prod.id = prd.template
LEFT JOIN product_uom u ON u.id = sl.unit
JOIN mtm_strategy ms ON ms.id = ss.strategy
JOIN mtm_scenario msc ON msc.id = ms.scenario
LEFT JOIN currency_currency ms_cur ON ms_cur.id = ms.currency
LEFT JOIN price_calendar cal ON cal.id = msc.calendar
LEFT JOIN pricing_component pc_mtm ON pc_mtm.strategy = ms.id
LEFT JOIN price_fixtype ft ON ft.id = pc_mtm.fix_type
LEFT JOIN price_price pi2 ON pi2.id = pc_mtm.price_index
LEFT JOIN price_calendar pc_mtm_cal ON pc_mtm_cal.id = pc_mtm.calendar
LEFT JOIN pricing_component pc ON pc.sale_line = sl.id
LEFT JOIN price_price pc_idx ON pc_idx.id = pc.price_index
LEFT JOIN price_fixtype pc_ft ON pc_ft.id = pc.fix_type
LEFT JOIN price_calendar pc_cal ON pc_cal.id = pc.calendar
LEFT JOIN last_vv_sale vv ON vv.sale_line = sl.id
LEFT JOIN last_vvl_sale vvl ON vvl.sale_line = sl.id
ORDER BY side, contract;

View File

@@ -0,0 +1,101 @@
-- Update stock_location.country based on port/city name identification
-- Skipped: root nodes (Customer, Supplier, Warehouse, Drop, Lost and Found),
-- generic entries (ANY PORT, To be defined, Transit, Input/Output/Storage Zone),
-- ambiguous entries (Limas - geography uncertain)
UPDATE stock_location SET country = 9 WHERE id = 1254; -- Adelaide -> Australia
UPDATE stock_location SET country = 9 WHERE id = 1260; -- Gladstone -> Australia
UPDATE stock_location SET country = 9 WHERE id = 1276; -- Port Hedland -> Australia
UPDATE stock_location SET country = 17 WHERE id = 1221; -- Antwerpen -> Belgium
UPDATE stock_location SET country = 24 WHERE id = 1278; -- Rio Grande -> Brazil
UPDATE stock_location SET country = 32 WHERE id = 1288; -- Vancouver -> Canada
UPDATE stock_location SET country = 35 WHERE id = 1257; -- Barquito -> Chile
UPDATE stock_location SET country = 35 WHERE id = 1272; -- Mejillones -> Chile
UPDATE stock_location SET country = 36 WHERE id = 1225; -- Fangcheng -> China
UPDATE stock_location SET country = 36 WHERE id = 1232; -- Laizhou -> China
UPDATE stock_location SET country = 36 WHERE id = 1234; -- Longkou -> China
UPDATE stock_location SET country = 36 WHERE id = 1237; -- Ningde -> China
UPDATE stock_location SET country = 36 WHERE id = 1242; -- Putian -> China
UPDATE stock_location SET country = 36 WHERE id = 1243; -- Qingdao -> China
UPDATE stock_location SET country = 36 WHERE id = 1244; -- Rizhao -> China
UPDATE stock_location SET country = 36 WHERE id = 1246; -- Rugao -> China
UPDATE stock_location SET country = 36 WHERE id = 1252; -- YIZHENG -> China
UPDATE stock_location SET country = 36 WHERE id = 1253; -- Zhangjiagang -> China
UPDATE stock_location SET country = 59 WHERE id = 1241; -- Pori (Supplier) -> Finland
UPDATE stock_location SET country = 59 WHERE id = 1286; -- Pori (Customer) -> Finland
UPDATE stock_location SET country = 60 WHERE id = 1119; -- STORAGE - ROUEN -> France
UPDATE stock_location SET country = 64 WHERE id = 1226; -- Hamburg -> Germany
UPDATE stock_location SET country = 65 WHERE id = 1282; -- Tema -> Ghana
UPDATE stock_location SET country = 76 WHERE id = 1259; -- Budge Budge -> India
UPDATE stock_location SET country = 76 WHERE id = 1227; -- Hazira -> India
UPDATE stock_location SET country = 76 WHERE id = 1266; -- Kakinada -> India
UPDATE stock_location SET country = 76 WHERE id = 1267; -- Kandla -> India
UPDATE stock_location SET country = 76 WHERE id = 1273; -- New Mangalore -> India
UPDATE stock_location SET country = 76 WHERE id = 1275; -- Paradip -> India
UPDATE stock_location SET country = 76 WHERE id = 1283; -- Tuticorin -> India
UPDATE stock_location SET country = 76 WHERE id = 1284; -- Visakhapatnam -> India
UPDATE stock_location SET country = 77 WHERE id = 1255; -- BAHODOPI-POSO -> Indonesia
UPDATE stock_location SET country = 77 WHERE id = 1262; -- Gresik -> Indonesia
UPDATE stock_location SET country = 77 WHERE id = 1269; -- LHOKSEUMAWE -> Indonesia
UPDATE stock_location SET country = 84 WHERE id = 1228; -- Hibi -> Japan
UPDATE stock_location SET country = 84 WHERE id = 1231; -- Japan -> Japan
UPDATE stock_location SET country = 84 WHERE id = 1235; -- Naoshima -> Japan
UPDATE stock_location SET country = 84 WHERE id = 1236; -- Niihama -> Japan
UPDATE stock_location SET country = 84 WHERE id = 1239; -- Onahama -> Japan
UPDATE stock_location SET country = 84 WHERE id = 1247; -- Saganoseki -> Japan
UPDATE stock_location SET country = 102 WHERE id = 1116; -- PORT KELANG FREE ZONE -> Malaysia
UPDATE stock_location SET country = 102 WHERE id = 1115; -- STORAGE - PORT KELANG -> Malaysia
UPDATE stock_location SET country = 102 WHERE id = 1268; -- Kemaman -> Malaysia
UPDATE stock_location SET country = 109 WHERE id = 1233; -- Lazaro Cardenas -> Mexico
UPDATE stock_location SET country = 115 WHERE id = 1265; -- Jorf Lasfar -> Morocco
UPDATE stock_location SET country = 128 WHERE id = 1238; -- Odda -> Norway
UPDATE stock_location SET country = 135 WHERE id = 1223; -- Callao -> Peru
UPDATE stock_location SET country = 135 WHERE id = 1230; -- Ilo -> Peru
UPDATE stock_location SET country = 136 WHERE id = 1264; -- Isabel -> Philippines
UPDATE stock_location SET country = 149 WHERE id = 1277; -- Ras Al Khair -> Saudi Arabia
UPDATE stock_location SET country = 160 WHERE id = 1224; -- Donghae -> South Korea
UPDATE stock_location SET country = 160 WHERE id = 1240; -- Onsan -> South Korea
UPDATE stock_location SET country = 160 WHERE id = 1250; -- Ulsan -> South Korea
UPDATE stock_location SET country = 160 WHERE id = 1251; -- Yeosu -> South Korea
UPDATE stock_location SET country = 162 WHERE id = 1229; -- Huelva -> Spain
UPDATE stock_location SET country = 166 WHERE id = 1245; -- Ronnskar -> Sweden
UPDATE stock_location SET country = 169 WHERE id = 1248; -- Taichung -> Taiwan
UPDATE stock_location SET country = 172 WHERE id = 1256; -- Bangkok -> Thailand
UPDATE stock_location SET country = 172 WHERE id = 1271; -- Map Ta Phut -> Thailand
UPDATE stock_location SET country = 172 WHERE id = 1279; -- Samut Prakan -> Thailand
UPDATE stock_location SET country = 177 WHERE id = 1222; -- Bandirma -> Turkey
UPDATE stock_location SET country = 184 WHERE id = 1258; -- Beaumont -> United States
UPDATE stock_location SET country = 184 WHERE id = 1274; -- New Orleans -> United States
UPDATE stock_location SET country = 184 WHERE id = 1280; -- San Juan -> United States (Puerto Rico)
UPDATE stock_location SET country = 184 WHERE id = 1281; -- Stockton -> United States
UPDATE stock_location SET country = 184 WHERE id = 1249; -- Tampa (Customer) -> United States
UPDATE stock_location SET country = 184 WHERE id = 1285; -- Tampa (Supplier) -> United States
UPDATE stock_location SET country = 189 WHERE id = 1261; -- Go Dau -> Vietnam
UPDATE stock_location SET country = 189 WHERE id = 1263; -- Hai Phong -> Vietnam