machine-learning-for-trading copilot-instructions.md

machine-learning-for-trading copilot-instructions.md is an instructions file for GitHub Copilot from stefan-jansen/machine-learning-for-trading. It costs 592 tokens per session, scanned A, original, MIT.

Repository instructions for a machine-learning-for-trading codebase, including its code-review, writing, notebook, data, and results conventions. A notebook is an interactive document that combines code, explanations, and outputs; here its Python source file is kept alongside the notebook.

In plain words
What is it for?
Reviewing code and prose, editing paired notebook source files, syncing notebooks, checking dataframes and schemas, and validating that results are reproducible.
Why use it?
They prevent reviews and edits from breaking the project’s reproducible notebook workflow or its formatting and data rules.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

About the project

Machine Learning for Trading is a code repository and companion resource for developing machine-learning trading strategies, covering data collection, feature and model development, backtesting, risk, deployment, and monitoring. It is used by readers and practitioners following the book’s workflow from research ideas to live market execution.

stefan-jansen/machine-learning-for-trading · 20,779 stars · on GitHub · ml4trading.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/stefan-jansen/machine-learning-for-trading/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/stefan-jansen/machine-learning-for-trading

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for machine-learning-for-trading copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/stefan-jansen/machine-learning-for-trading/copilot-instructions.svg)](https://agentmods.dev/instructions/stefan-jansen/machine-learning-for-trading/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/stefan-jansen/machine-learning-for-trading/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/stefan-jansen/machine-learning-for-trading/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 592 This file is loaded in full into every session.
When invoked 592 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00592 $0.00592
Opus 5 $0.00296 $0.00296
Sonnet 5 $0.00118 $0.00118
Haiku 4.5 $0.00059 $0.00059

Measured 6d ago against content hash b14b85e41bd4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

machine-learning-for-trading copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 47 lines

How it starts

The opening of the file, as written. The whole thing — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Repository conventions for code review

This is the companion code repository for Machine Learning for Trading, 3rd Edition. The conventions below are deliberate and repository-wide. Please do not flag adherence to them as defects, and do apply them when reviewing.

Prose and comment style

  • No em dashes. The repository standardizes on the ASCII hyphen (-) in all prose, markdown, docstrings, figure titles, and printed output. Em dashes () are being removed repository-wide; a file that uses a hyphen where a sibling still has an em dash is ahead of the sweep, not a regression. Do not suggest reintroducing em dashes for "consistency" with files that have not been cleaned yet.

Notebooks

  • Every notebook is a paired .py + .ipynb managed by jupytext. The .py is the source of truth; the .ipynb is generated. Edit the .py and run jupytext --sync; never hand-edit the .ipynb.
  • A committed .ipynb is a production re-execution of its paired .py, stamped in metadata.ml4t_provenance. Cell outputs are real, not illustrative.
  • Notebook output must carry no machine-specific paths (no /tmp/..., no home directory, no absolute checkout path). Print repo-root-relative paths instead, e.g. output_path.relative_to(get_case_study_dir("etfs").parents[1]).

Data schema

  • The canonical schema is symbol (entity identifier) + timestamp (all frequencies, daily and intraday). The cme_futures dataset uses product instead of symbol. These are intentional; do not suggest renaming to asset, date, ticker, or pair.

Results and DataFrames

  • The sole source of truth for model/backtest/strategy results is run_log/registry.db in each case study. results/*.json files are a deprecated legacy format and must not be treated as ground truth.
  • Polars-first. DataFrame operations use Polars; pandas appears only at visualization boundaries. Do not suggest converting Polars code to pandas.

Read the full file on GitHub · 47 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 47 lines · 592 tokens per session scan A b14b85e41bd4

Subscribe to this mod's changes

machine-learning-for-trading copilot-instructions.md is an instructions file published in the GitHub repository stefan-jansen/machine-learning-for-trading (20,779 stars, last pushed today), licensed MIT. It adds 592 tokens to every session, about $0.0030 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

zenml CLAUDE.md

Claude Code instructions for zenml-io/zenml, covering zenml claude code guidelines, project structure, use zenml docs via mcp, code style & quality standards and commenting policy — explain why, not what.

zenml-io/zenml · 4,696 tokens

InvestSkill GEMINI.md

Gemini CLI instructions for yennanliu/InvestSkill, covering investskill — gemini cli setup & usage guide, installation & setup, quick start, navigate to the investskill directory and start gemini cli (loads gemini.md automatically).

yennanliu/InvestSkill · 3,074 tokens

LLM-TradeBot copilot-instructions.md

Copilot instructions for EthanAlgoX/LLM-TradeBot, covering repository instructions, core rules, validation and ai asset governance.

EthanAlgoX/LLM-TradeBot · 809 tokens

polymarket-alpha-bot CLAUDE.md

Instructions for chainstacklabs/polymarket-alpha-bot, covering claude.md, commands, development, pipeline and seed data.

chainstacklabs/polymarket-alpha-bot · 1,300 tokens

PortfolioOptimisers.jl copilot-instructions.md

Copilot instructions for dcelisgarza/PortfolioOptimisers.jl, covering copilot instructions for portfoliooptimisers.jl, project overview, architecture & key patterns, developer workflows and required before each commit.

dcelisgarza/PortfolioOptimisers.jl · 1,697 tokens

scomp_link AGENTS.md

AGENTS.md instructions for GiacomoSaccaggi/scomp_link, covering agents.md — instructions for ai coding agents, what is scomp-link?, when to use scomp-link, cli quick reference (26 commands) and data understanding.

GiacomoSaccaggi/scomp_link · 1,741 tokens