Cc-skills fxview-parquet-consumer

Consume FXView tick data from Parquet files. Schema, file layout, DuckDB queries, Python/Rust examples. TRIGGERS - FXView Parquet, read tick data, consume FXView ticks, tick Parquet schema, FXView tick files.

install
source · Clone the upstream repo
git clone https://github.com/terrylica/cc-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/terrylica/cc-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/mql5/skills/fxview-parquet-consumer" ~/.claude/skills/terrylica-cc-skills-fxview-parquet-consumer && rm -rf "$T"
manifest: plugins/mql5/skills/fxview-parquet-consumer/SKILL.md
source content

FXView Tick Parquet Consumer

Read FXView tick data from Parquet files produced by the MT5 tick collection system.

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

When to Use This Skill

Use this skill when:

  • Reading or querying FXView tick Parquet files
  • Building adapters or pipelines for FXView tick data
  • Writing DuckDB queries against tick data
  • Integrating tick data into Python or Rust pipelines
  • Checking tick data schema or file layout

Authoritative Source

https://github.com/terrylica/mql5/blob/05f7c82/docs/tick_research/SCHEMA_VERIFIED.md

This skill summarizes the verified schema. For full verification details, flags distributions, and row group internals, see the source document.

Schema

All 6 columns are non-nullable. Schema is identical between EURUSD and XAUUSD files.

ColumnArrow TypeDuckDB TypeNullableNotes
time_mscInt64BIGINTNOUnix epoch milliseconds
bidFloat64DOUBLENOBid price
askFloat64DOUBLENOAsk price
lastFloat64DOUBLENOAlways 0.0 for FXView forex -- IGNORE
volumeInt64BIGINTNOAlways 0 for FXView forex -- IGNORE
flagsUInt8UTINYINTNOMqlTick flags bitmask (3 values: 4, 130, 134)

Parquet Footer Metadata

Key-value pairs embedded in every file footer:

KeyExample ValuePurpose
symbolEURUSDBare symbol name (no FXVIEW_ prefix)
digits5 (EURUSD) / 2 (XAUUSD)Price decimal digits
brokerFXViewBroker name
created_at2026-03-24T10:32:35.101090+00:00File creation timestamp (RFC3339 UTC)

File Layout

Directory pattern:

{base_path}/FXVIEW_{SYMBOL}/{YYYY}/{SYMBOL}_{YYYYMMDD}.parquet

Example:

~/.cache/opendeviationbar/ticks/FXVIEW_EURUSD/2026/EURUSD_20260323.parquet

IMPORTANT asymmetry: The directory uses the

FXVIEW_
prefix (broker-qualified), but the filename and metadata use the bare symbol name. Do not mix these up.

Crash recovery files:

{SYMBOL}_{YYYYMMDD}_1.parquet
,
_2.parquet
, etc. Created when the EA restarts and finds an existing file for today. All segments are valid, complete Parquet files with footers.

XAUUSD Differences

PropertyEURUSDXAUUSD
digits52
Price scale~1.15~4400
Ticks/day~416K~929K
last/volumeAlways 0Always 0
Flag distribution53% bid+ask, 24% bid, 23% ask98% bid+ask, ~1% each bid/ask

XAUUSD has ~2.2x higher tick density than EURUSD.

DuckDB Consumption Examples

Read a single day

SELECT * FROM read_parquet('~/.cache/opendeviationbar/ticks/FXVIEW_EURUSD/2026/EURUSD_20260323.parquet');

Read all files for a symbol (glob)

SELECT * FROM read_parquet('~/.cache/opendeviationbar/ticks/FXVIEW_EURUSD/**/*.parquet');

Convert timestamp to human-readable

SELECT make_timestamp(time_msc * 1000) AS ts, bid, ask, ask - bid AS spread
FROM read_parquet('~/.cache/opendeviationbar/ticks/FXVIEW_EURUSD/2026/EURUSD_20260323.parquet');

Spread statistics

SELECT avg(ask - bid) AS avg_spread, max(ask - bid) AS max_spread
FROM read_parquet('~/.cache/opendeviationbar/ticks/FXVIEW_EURUSD/2026/EURUSD_20260323.parquet');

Flags distribution

SELECT flags, count(*) AS cnt, round(count(*) * 100.0 / sum(count(*)) OVER (), 2) AS pct
FROM read_parquet('...')
GROUP BY flags
ORDER BY cnt DESC;

Anti-Patterns

  • Do NOT use
    last
    or
    volume
    columns for FXView forex (always zero)
  • Do NOT assume
    FXVIEW_
    prefix in filenames -- it is ONLY in the directory name
  • Do NOT use f64 for prices in Rust production code (use i64 fixed-point via digits metadata)
  • Do NOT expect time_msc in seconds -- it is MILLIseconds
  • Do NOT hardcode machine paths -- use pattern
    {base_path}/FXVIEW_{SYMBOL}/{YYYY}/{SYMBOL}_{YYYYMMDD}.parquet

Parquet Internals

  • Compression: ZSTD level 3
  • time_msc encoding: DELTA_BINARY_PACKED (optimal for monotonic timestamps, dictionary disabled)
  • flags encoding: Dictionary encoding (low cardinality -- 3 distinct values)
  • bid, ask, last, volume: Default (PLAIN + ZSTD)
  • Row groups: ~65,536 rows each (last group has remainder)
  • File size: ~1.35 MB for ~416K EURUSD ticks/day

Flags Bitmask Reference

ValueMeaning
4Ask price changed (TICK_FLAG_ASK)
130Bid changed + first tick marker (2+128)
134Bid+ask changed + first tick marker (2+4+128)

Troubleshooting

IssueCauseSolution
No files foundWrong base path or symbolCheck directory pattern with FXVIEW_ prefix
All last/volume are zeroNormal for FXView forexIgnore these columns for forex pairs
Timestamp looks wrongUsing seconds not mstime_msc is milliseconds -- multiply by 1000 for microseconds
Schema mismatchDifferent broker or versionVerify against SCHEMA_VERIFIED.md permalink
Multiple files same dayCrash recovery segmentsAll _N suffixed files are valid, union them

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did the command succeed? — If not, fix the instruction or error table that caused the failure.
  2. Did parameters or output change? — If the underlying tool's interface drifted, update Usage examples and Parameters table to match.
  3. Was a workaround needed? — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround.

Only update if the issue is real and reproducible — not speculative.