Files
fn_registry/functions/finance/load_ohlcv_from_duckdb.md
T
egutierrez 113c6dfd71 feat: 15 funciones finance — indicadores, riesgo e IO de mercado
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>
2026-03-28 02:23:31 +01:00

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.
finance
io
duckdb
load
ohlcv_go_finance
ohlcv_go_finance
false error_go_core
fmt
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'")