12681e4b1b
Stacked on #222 (base `feat/c-abi-hub`), so the diff is just the additions on top of the hub foundation — no merge of #222 required. ## What this adds **Examples — full parity with rust/python/node (`examples/c/`)** - `streaming.c` upgraded to the multi-indicator (SMA/EMA/RSI/MACD + signals) demo - `backtest.c`, `multi_timeframe.c` (manual time-bucket resampling), `parallel_assets.c` (serial vs OpenMP fan-out, one handle per asset) - three educational strategies: `strategy_rsi_mean_reversion.c`, `strategy_macd_adx.c`, `strategy_bollinger_squeeze.c` - two network examples shelling out to `curl`: `fetch_btcusdt.c`, `live_binance.c` (REST poll) - two header-only helpers (`wickra_csv.h`, `wickra_strategy.h`) since the C ABI ships no IO layer - CMake builds all 11; the 9 offline ones run under `ctest` on 3 OS; the network two are built-only **Docs & metadata — surface the C ABI everywhere it was missing** - ARCHITECTURE diagram + crate table, SECURITY + THREAT_MODEL (the C ABI as the sole `unsafe` FFI surface), the three binding package READMEs, issue/PR templates, CHANGELOG, and the GitHub About template (live About + org description updated too) **Cleanup** - removed all references to the private generator tooling from public files (`bindings/c/src/lib.rs` header, `CONTRIBUTING.md`, `sync-about.yml`) Verified locally: `cargo build -p wickra-c --release`, `cmake + ctest` (9/9 pass), and `-Wall -Wextra -Wpedantic` clean on gcc 13.
152 lines
4.9 KiB
C
152 lines
4.9 KiB
C
/* Multi-timeframe indicators with the Wickra C ABI.
|
|
*
|
|
* The C counterpart of `examples/rust/src/bin/multi_timeframe.rs` and
|
|
* `examples/python/multi_timeframe.py`: read the bundled 1-minute BTCUSDT CSV
|
|
* (or a path on the command line), resample it to 5m / 15m / 1h / 4h / 1d, and
|
|
* print the last RSI(14), MACD(12,26,9) histogram and ADX(14) at each timeframe.
|
|
*
|
|
* The Rust/Python stack resamples through `wickra-data`; the C ABI ships only
|
|
* the indicators, so the time-bucket aggregation is done here (open = first,
|
|
* high = max, low = min, close = last, volume = sum per bucket).
|
|
*
|
|
* Build (after `cargo build -p wickra-c --release`):
|
|
* cc examples/c/multi_timeframe.c -I bindings/c/include -L target/release -lwickra -lm -o multi_timeframe
|
|
* ./multi_timeframe [path/to/1m.csv]
|
|
*/
|
|
|
|
#define WICKRA_CSV_IMPL
|
|
#include "wickra.h"
|
|
#include "wickra_csv.h"
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifndef WICKRA_DATA_DIR
|
|
#define WICKRA_DATA_DIR "../data"
|
|
#endif
|
|
|
|
#define ONE_MINUTE_MS 60000LL
|
|
|
|
/* Aggregate `in` into fixed-width time buckets of `tf_ms`. Writes the bucketed
|
|
* candles into the caller-owned `out` (capacity >= count) and returns how many
|
|
* buckets were produced. */
|
|
static size_t resample(const WickraCandle *in, size_t count, int64_t tf_ms,
|
|
WickraCandle *out) {
|
|
size_t produced = 0;
|
|
int open_bucket = 0;
|
|
int64_t bucket_start = 0;
|
|
WickraCandle cur = {0};
|
|
for (size_t i = 0; i < count; ++i) {
|
|
int64_t b = in[i].timestamp - (in[i].timestamp % tf_ms);
|
|
if (!open_bucket || b != bucket_start) {
|
|
if (open_bucket) {
|
|
out[produced++] = cur;
|
|
}
|
|
bucket_start = b;
|
|
cur = in[i];
|
|
cur.timestamp = b;
|
|
open_bucket = 1;
|
|
} else {
|
|
if (in[i].high > cur.high) {
|
|
cur.high = in[i].high;
|
|
}
|
|
if (in[i].low < cur.low) {
|
|
cur.low = in[i].low;
|
|
}
|
|
cur.close = in[i].close;
|
|
cur.volume += in[i].volume;
|
|
}
|
|
}
|
|
if (open_bucket) {
|
|
out[produced++] = cur;
|
|
}
|
|
return produced;
|
|
}
|
|
|
|
static void summarize(const char *label, const WickraCandle *candles, size_t n) {
|
|
if (n == 0) {
|
|
printf(" %-5s (empty)\n", label);
|
|
return;
|
|
}
|
|
struct Rsi *rsi = wickra_rsi_new(14);
|
|
struct MacdIndicator *macd = wickra_macd_indicator_new(12, 26, 9);
|
|
struct Adx *adx = wickra_adx_new(14);
|
|
|
|
double last_rsi = NAN;
|
|
double last_hist = NAN;
|
|
double last_adx = NAN;
|
|
for (size_t i = 0; i < n; ++i) {
|
|
const WickraCandle *c = &candles[i];
|
|
double r = wickra_rsi_update(rsi, c->close);
|
|
if (isfinite(r)) {
|
|
last_rsi = r;
|
|
}
|
|
WickraMacdOutput m;
|
|
if (wickra_macd_indicator_update(macd, c->close, &m)) {
|
|
last_hist = m.histogram;
|
|
}
|
|
WickraAdxOutput a;
|
|
if (wickra_adx_update(adx, c->open, c->high, c->low, c->close, c->volume,
|
|
c->timestamp, &a)) {
|
|
last_adx = a.adx;
|
|
}
|
|
}
|
|
|
|
char b_rsi[16], b_hist[16], b_adx[16];
|
|
if (isfinite(last_rsi)) {
|
|
snprintf(b_rsi, sizeof(b_rsi), "%6.2f", last_rsi);
|
|
} else {
|
|
snprintf(b_rsi, sizeof(b_rsi), " --");
|
|
}
|
|
if (isfinite(last_hist)) {
|
|
snprintf(b_hist, sizeof(b_hist), "%+6.2f", last_hist);
|
|
} else {
|
|
snprintf(b_hist, sizeof(b_hist), " -- ");
|
|
}
|
|
if (isfinite(last_adx)) {
|
|
snprintf(b_adx, sizeof(b_adx), "%6.2f", last_adx);
|
|
} else {
|
|
snprintf(b_adx, sizeof(b_adx), " --");
|
|
}
|
|
printf(" %-5s bars=%5llu last_close=%10.2f rsi=%s macd_hist=%s adx=%s\n",
|
|
label, (unsigned long long)n, candles[n - 1].close, b_rsi, b_hist, b_adx);
|
|
|
|
wickra_rsi_free(rsi);
|
|
wickra_macd_indicator_free(macd);
|
|
wickra_adx_free(adx);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
const char *path = (argc > 1) ? argv[1] : WICKRA_DATA_DIR "/btcusdt-1m.csv";
|
|
|
|
WickraCandle *ones = NULL;
|
|
size_t n = wickra_load_csv(path, &ones);
|
|
if (n == 0) {
|
|
fprintf(stderr, "multi_timeframe: no candles read from %s\n", path);
|
|
return 1;
|
|
}
|
|
/* Resampling only ever produces fewer candles than the 1m source. */
|
|
WickraCandle *buf = (WickraCandle *)malloc(n * sizeof(*buf));
|
|
if (buf == NULL) {
|
|
fprintf(stderr, "multi_timeframe: allocation failed\n");
|
|
free(ones);
|
|
return 1;
|
|
}
|
|
|
|
printf("Multi-timeframe view of %s\n", path);
|
|
summarize("1m", ones, n);
|
|
|
|
const struct {
|
|
const char *label;
|
|
int64_t minutes;
|
|
} frames[] = {{"5m", 5}, {"15m", 15}, {"1h", 60}, {"4h", 240}, {"1d", 1440}};
|
|
for (size_t f = 0; f < sizeof(frames) / sizeof(frames[0]); ++f) {
|
|
size_t m = resample(ones, n, frames[f].minutes * ONE_MINUTE_MS, buf);
|
|
summarize(frames[f].label, buf, m);
|
|
}
|
|
|
|
free(buf);
|
|
free(ones);
|
|
return 0;
|
|
}
|