This repository contains a small, self-contained static HTML playbook for structured, pullback-only crypto trade decision-making. It is designed to be run locally across devices (laptop, phone, Termux) without a server.
Crypto Chart Playbook
Overview
- A compact, offline-first static playbook for disciplined crypto trade execution. The UI is intentionally simple:
index.html,style.css, andscript.jsform the single-page playbook. Media assets live inclips/and reference material lives inpdf/.
Repository layout
index.html— main playbook UI (includes Daily Bias form and log)style.css— site stylesscript.js— UI behavior; includes Daily Bias logging (localStorage), export, and clearclips/— example video clips (optional)pdf/— printable HTML + stylesheet and generated PDFdeploy/— helper scripts for deployment and PDF exportLICENSE,.gitignore,CONTRIBUTING.md— repo metadata
Quick start (preview)
- Open
index.htmlin any modern browser to preview the playbook locally.
Deploy locally (one-command)
- Linux / macOS / Termux:
./deploy_playbook.sh- Windows (cmd / double-click):
deploy_playbook_windows.batWhat these scripts do
- Create
crypto-playbookin your home folder ($HOMEor%USERPROFILE%). - Copy
index.html, assets (clips/,pdf/) and helper scripts into that folder. - Attempt to open
index.htmlin your default browser.
Daily Bias logging
- The playbook includes a
Daily Biasform. Saved entries persist per-browser usinglocalStorage. - Features: save timestamped entries, view a scrollable Bias Log,
Export CSV, andClear Log. - Files involved:
index.html(UI),script.js(storage + export logic).
Formatted PDF (printable)
- A polished printable source is included at
pdf/pullback-playbook-sol-ltc.htmland usespdf/print.cssfor layout. - Automated export helpers:
deploy/convert_to_pdf.sh— Linux/macOS script (useswkhtmltopdfor headless Chrome)deploy/convert_to_pdf_windows.bat— Windows batch (trieswkhtmltopdfor Chrome/Edge)
Generate the PDF
- Recommended: install
wkhtmltopdffor best results, or ensurechrome/msedge/chromiumis in your PATH to use headless print-to-PDF.
Linux / macOS / Termux
./deploy/convert_to_pdf.shWindows (cmd)
deploy\convert_to_pdf_windows.batIf you don't have those tools, open pdf/pullback-playbook-sol-ltc.html in a browser and choose Print → Save as PDF.
Editing the playbook
- To change copy or modules: edit
index.html. The layout is simple and uses semantic sections — add modules by copying the SOL or LTC sections. - To add media: drop files into
clips/and update the<video>source inindex.html. - To update print/PDF layout: edit
pdf/pullback-playbook-sol-ltc.htmlandpdf/print.css.
Versioning and contribution
- This repo uses the MIT license (
LICENSE). - Keep changes small and focused. See
CONTRIBUTING.mdfor guidance.
Troubleshooting
- If
deployscripts fail to open the page, opencrypto-playbook/index.htmlmanually. - If PDF export fails: install
wkhtmltopdfor Chrome/Edge and re-run the export script. - If Daily Bias entries aren't visible, ensure your browser allows
localStoragefor local files (or use a simple local server:python -m http.server).
Next steps I can help with
- Run the PDF export here if you install
wkhtmltopdfor make Chrome/Edge available in PATH. - Add a logo, tweak fonts, or create a one-page summary card for quick printing.
Contact
- If you want a copy exported or packaged, tell me which format and I will produce it.
Enjoy — this is meant to be your offline, cross-device trading execution tool.
Exporting the formatted PDF
- The formatted printable source is at
pdf/pullback-playbook-sol-ltc.htmland usespdf/print.cssfor layout. - To generate a PDF automatically, run the included helper:
Linux / macOS / Termux:
./deploy/convert_to_pdf.shWindows (cmd):
deploy\convert_to_pdf_windows.batThese scripts will try wkhtmltopdf first, then headless Chrome/Chromium. If you don't have either, open pdf/pullback-playbook-sol-ltc.html in a browser and use Print → Save as PDF for best results.