Skip to content

Instantly share code, notes, and snippets.

@tlk3
tlk3 / marketscanner-msr-setup.md
Last active April 5, 2026 22:31
MarketScanner /msr setup for Codex, Claude Code, and other LLM agents

MarketScanner /msr Setup

This document gives any LLM or coding agent a consistent way to handle /msr as:

  • "Reload the local MarketScanner LLM bundle from the standard local snapshot directory."
  • "If the local snapshot is missing and I explicitly want a refresh, fetch the latest manifest first."
  • "Interpret MarketScanner questions in The Strat terms and answer from the loaded bundle data."

It is designed to work with the current MarketScanner bundle download contract:

@tlk3
tlk3 / repanda_to_deephaven.py
Last active January 13, 2024 13:40
redpanda to deephaven
from deephaven.stream.kafka import consumer as kc
from deephaven import dtypes as dht
from deephaven import time as dhtu
from deephaven import agg
from deephaven.plot.figure import Figure
kafka_conf = {
"bootstrap.servers": "127.0.0.1:9093",
"security.protocol": "SASL_PLAINTEXT",