47fac22230
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1.1 KiB
1.1 KiB
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path
| name | kind | lang | domain | version | purity | signature | description | tags | uses_functions | uses_types | returns | returns_optional | error_type | imports | params | output | tested | tests | test_file_path | file_path | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| load_ohlcv_from_duckdb | function | go | finance | 1.0.0 | impure | func LoadOHLCVFromDuckDB(dbPath, query string) ([][]float64, error) | Carga datos OHLCV ejecutando una query SQL en una base de datos DuckDB. |
|
|
|
false | error_go_core |
|
|
slice de slices de 5 floats en orden [open, high, low, close, volume] por cada fila de resultado | false | functions/finance/load_ohlcv_from_duckdb.go |
load_ohlcv_from_duckdb
Stub para cargar datos OHLCV desde DuckDB. Pendiente de implementacion.
Ejemplo
data, err := finance.LoadOHLCVFromDuckDB("/data/market.duckdb", "SELECT * FROM ohlcv WHERE symbol='BTC'")