Cross-Asset Macro Correlation
curl --request GET \
--url https://api.aioka.io/v1/macro/correlationimport requests
url = "https://api.aioka.io/v1/macro/correlation"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aioka.io/v1/macro/correlation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aioka.io/v1/macro/correlation",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aioka.io/v1/macro/correlation"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aioka.io/v1/macro/correlation")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aioka.io/v1/macro/correlation")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"timestamp": "2026-04-18T10:00:00Z",
"btc_macro_score": 0.70,
"overall_assessment": "BULLISH",
"signals": [
{
"asset": "DXY",
"current_value": 99.2,
"trend": "FALLING",
"btc_impact": "BULLISH",
"explanation": "Dollar weakening supports BTC as alternative store of value"
},
{
"asset": "US10Y",
"current_value": 4.25,
"trend": "STABLE",
"btc_impact": "NEUTRAL",
"explanation": "Treasury yields stable -- no significant BTC pressure"
},
{
"asset": "XAU_SPOT",
"current_value": 3280.0,
"trend": "CONSOLIDATING",
"btc_impact": "BULLISH",
"explanation": "Gold volatility declining -- rotation to BTC historically follows"
},
{
"asset": "BTC_NDX_CORR",
"current_value": 0.58,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "High BTC-Nasdaq correlation with Nasdaq at ATH supports BTC"
},
{
"asset": "BTC_DOMINANCE",
"current_value": 62.4,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "Rising BTC dominance confirms early bull cycle positioning"
}
],
"summary": "Macro environment is broadly supportive of BTC.",
"cached": false,
"cache_ttl_seconds": 300
}
Basic Tier ($49/mo)
Cross-Asset Macro Correlation
Assess how current macro conditions affect BTC using rules-based analysis.
GET
/
v1
/
macro
/
correlation
Cross-Asset Macro Correlation
curl --request GET \
--url https://api.aioka.io/v1/macro/correlationimport requests
url = "https://api.aioka.io/v1/macro/correlation"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.aioka.io/v1/macro/correlation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aioka.io/v1/macro/correlation",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aioka.io/v1/macro/correlation"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aioka.io/v1/macro/correlation")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aioka.io/v1/macro/correlation")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"timestamp": "2026-04-18T10:00:00Z",
"btc_macro_score": 0.70,
"overall_assessment": "BULLISH",
"signals": [
{
"asset": "DXY",
"current_value": 99.2,
"trend": "FALLING",
"btc_impact": "BULLISH",
"explanation": "Dollar weakening supports BTC as alternative store of value"
},
{
"asset": "US10Y",
"current_value": 4.25,
"trend": "STABLE",
"btc_impact": "NEUTRAL",
"explanation": "Treasury yields stable -- no significant BTC pressure"
},
{
"asset": "XAU_SPOT",
"current_value": 3280.0,
"trend": "CONSOLIDATING",
"btc_impact": "BULLISH",
"explanation": "Gold volatility declining -- rotation to BTC historically follows"
},
{
"asset": "BTC_NDX_CORR",
"current_value": 0.58,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "High BTC-Nasdaq correlation with Nasdaq at ATH supports BTC"
},
{
"asset": "BTC_DOMINANCE",
"current_value": 62.4,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "Rising BTC dominance confirms early bull cycle positioning"
}
],
"summary": "Macro environment is broadly supportive of BTC.",
"cached": false,
"cache_ttl_seconds": 300
}
Overview
Evaluates DXY, US 10Y Treasury yield, Gold (XAU), BTC-Nasdaq correlation, and BTC dominance. Returns a directional assessment and per-signal breakdown. Tier: Basic ($49/mo) 🔒 Cache TTL: 300 seconds Rate limit: 1,000 calls/day, 30/minuteScore Interpretation
| btc_macro_score | overall_assessment |
|---|---|
| ≥ 0.60 | BULLISH — macro environment supports BTC |
| 0.41–0.59 | NEUTRAL — mixed signals |
| ≤ 0.40 | BEARISH — macro headwinds for BTC |
Signals Evaluated
| Signal | Description |
|---|---|
| DXY | US Dollar Index — falling dollar = BTC tailwind |
| US10Y | 10-Year Treasury yield — falling yields = lower opportunity cost |
| XAU_SPOT | Gold spot price — spiking gold = risk-off headwind |
| BTC_NDX_CORR | BTC-Nasdaq 7-day correlation |
| BTC_DOMINANCE | BTC market share — rising dominance = capital rotation in |
{
"timestamp": "2026-04-18T10:00:00Z",
"btc_macro_score": 0.70,
"overall_assessment": "BULLISH",
"signals": [
{
"asset": "DXY",
"current_value": 99.2,
"trend": "FALLING",
"btc_impact": "BULLISH",
"explanation": "Dollar weakening supports BTC as alternative store of value"
},
{
"asset": "US10Y",
"current_value": 4.25,
"trend": "STABLE",
"btc_impact": "NEUTRAL",
"explanation": "Treasury yields stable -- no significant BTC pressure"
},
{
"asset": "XAU_SPOT",
"current_value": 3280.0,
"trend": "CONSOLIDATING",
"btc_impact": "BULLISH",
"explanation": "Gold volatility declining -- rotation to BTC historically follows"
},
{
"asset": "BTC_NDX_CORR",
"current_value": 0.58,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "High BTC-Nasdaq correlation with Nasdaq at ATH supports BTC"
},
{
"asset": "BTC_DOMINANCE",
"current_value": 62.4,
"trend": "RISING",
"btc_impact": "BULLISH",
"explanation": "Rising BTC dominance confirms early bull cycle positioning"
}
],
"summary": "Macro environment is broadly supportive of BTC.",
"cached": false,
"cache_ttl_seconds": 300
}
⌘I