> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Atoti Market Data available versions

> General availability and end of support dates for all released minor versions of Atoti Market Data.

export const base = "https://assets.activeviam.com/products/modules/market-data/";

export const versions = [{
  version: "1.3",
  dir: "1.3",
  docsUrl: "/solutions/libraries/market-data/1.3/introduction-to-atoti-market-data",
  releaseNotesUrl: "/solutions/libraries/market-data/1.3/dev-release/release-notes",
  gaDate: "Mar 03, 2025",
  eosDate: "Mar 03, 2027"
}, {
  version: "1.2",
  dir: "1.2",
  gaDate: "Feb 24, 2025",
  eosDate: "Feb 24, 2027"
}, {
  version: "1.1",
  dir: "1.1",
  gaDate: "Nov 14, 2024",
  eosDate: "Nov 14, 2026"
}, {
  version: "1.0",
  dir: "1.0",
  gaDate: "Oct 09, 2024",
  eosDate: "Oct 09, 2026"
}, {
  version: "0.9",
  dir: "0.9",
  gaDate: "Sep 23, 2024",
  eosDate: null
}, {
  version: "0.1",
  dir: "0.1",
  gaDate: "Aug 28, 2024",
  eosDate: null
}];

export const eosBg = dateStr => {
  const dark = typeof document !== "undefined" && document.documentElement.classList.contains("dark");
  if (!dateStr) return dark ? {
    color: "white"
  } : {};
  const d = new Date(dateStr);
  const now = new Date();
  const soon = new Date(now);
  soon.setMonth(now.getMonth() + 6);
  if (d < now) return {
    backgroundColor: dark ? "rgba(239, 68, 68, 0.3)" : "rgba(254, 202, 202, 0.7)",
    color: dark ? "white" : undefined
  };
  if (d <= soon) return {
    backgroundColor: dark ? "rgba(234, 179, 8, 0.35)" : "rgba(254, 240, 138, 0.9)",
    color: dark ? "white" : undefined
  };
  return dark ? {
    color: "white"
  } : {};
};

export const isDark = () => typeof document !== "undefined" && document.documentElement.classList.contains("dark");
export const soonBg = () => isDark() ? "rgba(234, 179, 8, 0.35)" : "rgba(254, 240, 138, 0.9)";
export const expiredBg = () => isDark() ? "rgba(239, 68, 68, 0.3)" : "rgba(254, 202, 202, 0.7)";
export const swatchBorder = () => isDark() ? "1px solid rgba(255,255,255,0.15)" : "1px solid rgba(0,0,0,0.2)";

Market data model with retrieval and interpolation services.

<table>
  <thead>
    <tr>
      <th>Version</th>
      <th>Release notes</th>
      <th>GA date</th>
      <th>EOS date</th>
    </tr>
  </thead>

  <tbody>
    {versions.map(v => (
            <tr key={v.version} style={eosBg(v.eosDate)}>
              <td>{v.docsUrl ? <a href={v.docsUrl}>{v.version}</a> : <a href={`${base}${v.dir}/online-help/`}>{v.version}</a>}</td>
              <td>{v.releaseNotesUrl ? <a href={v.releaseNotesUrl}>Release notes</a> : <a href={`${base}${v.dir}/online-help/dev-release/release-notes.html`}>Release notes</a>}</td>
              <td>{v.gaDate}</td>
              <td>{v.eosDate ?? ""}</td>
            </tr>
          ))}
  </tbody>
</table>

<div style={{display: "flex", gap: "20px", marginTop: "12px", fontSize: "0.85rem", flexWrap: "wrap"}}>
  <div style={{display: "flex", alignItems: "center", gap: "6px"}}>
    <span style={{display: "inline-block", width: "14px", height: "14px", backgroundColor: soonBg(), border: swatchBorder(), borderRadius: "2px", flexShrink: 0}} /> EOS within 6 months
  </div>

  <div style={{display: "flex", alignItems: "center", gap: "6px"}}>
    <span style={{display: "inline-block", width: "14px", height: "14px", backgroundColor: expiredBg(), border: swatchBorder(), borderRadius: "2px", flexShrink: 0}} /> No longer supported
  </div>

  <div style={{display: "flex", alignItems: "center", gap: "6px", color: "gray"}}>
    No background — EOS date not yet set
  </div>
</div>
