Skip to main content

Stock to Flow

s2f

Chart: Stock to Flow

Parameters

NameTypeDescriptionRequired
start_datestringStart date in YYYY-MM-DD formatNo
end_datestringEnd date in YYYY-MM-DD formatNo
latestboolIf true, returns the current valueNo

Output

IndexNameTypeDescription
0datestringDate in YYYY-MM-DD format
1s2f_10d_mastring10 day moving average of S2F projected price
2s2f_463d_mastring463 day moving average of S2F projected price

Example Request

https://charts.bitbo.io/api/v1/s2f/?start_date=2025-05-05&end_date=2025-05-07

Example Request with Latest

https://charts.bitbo.io/api/v1/s2f/?latest=true

Example Output

{
"data": [
[
"2025-05-05",
"363893.82",
"221668.19"
],
[
"2025-05-06",
"360245.62",
"223194.54"
],
[
"2025-05-07",
"348697.96",
"224378.78"
]
]
}