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>
10 lines
294 B
Go
10 lines
294 B
Go
package finance
|
|
|
|
import "fmt"
|
|
|
|
// WriteOHLCVToParquet persiste datos OHLCV en un archivo Parquet.
|
|
// TODO: implementar escritura real usando libreria Parquet.
|
|
func WriteOHLCVToParquet(path string, data [][]float64) error {
|
|
return fmt.Errorf("not implemented: WriteOHLCVToParquet(%s)", path)
|
|
}
|