113c6dfd71
11 funciones puras con implementación real: SMA, EMA, RSI, BollingerBands, VWAP, LogReturn, AnnualizedVolatility, SharpeRatio, MaxDrawdown, NormalizeOHLCV, TickToOHLCV 4 funciones impuras (stubs): FetchOHLCV, StreamTicks, WriteOHLCVToParquet, LoadOHLCVFromDuckDB Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
784 B
784 B
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, 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 | 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 |
|
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'")