Files
fn_registry/functions/finance/write_ohlcv_to_parquet.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

731 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
write_ohlcv_to_parquet function go finance 1.0.0 impure func WriteOHLCVToParquet(path string, data [][]float64) error Persiste datos OHLCV en un archivo Parquet en la ruta indicada.
finance
io
parquet
persist
ohlcv_go_finance
false error_go_core
fmt
false
functions/finance/write_ohlcv_to_parquet.go

write_ohlcv_to_parquet

Stub para persistir datos OHLCV en formato Parquet. Pendiente de implementacion.

Ejemplo

err := finance.WriteOHLCVToParquet("/data/btc_1h.parquet", ohlcvData)