Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/cotdata/providers/cftc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

Self-contained — no cot-analyzer imports. Ported from cot-analyzer/src/core/etl.py.
"""
from __future__ import annotations # PEP 604 unions (Path | None) on Python 3.9

import datetime as dt
import io
import zipfile
Expand Down
2 changes: 2 additions & 0 deletions src/cotdata/providers/norgate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
e.g. +146 pts at the 2026-06 Jun→Sep roll). '&ES_CCB' is BACK-ADJUSTED (gaps
stitched out). A close-based stop needs the gap-free series → we fetch _CCB.
"""
from __future__ import annotations # PEP 604 unions (dict | None) on Python 3.9

import pandas as pd
import numpy as np
import re
Expand Down
Loading