Skip to main content

200-Week Moving Average

200-week-ma

Chart: 200-Week Moving Average

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 (ISO)
1field_200_week_moving_averagestring200-week moving average
2previous_cycle_max_pricestringPrevious cycle max price

Example Request

https://charts.bitbo.io/api/v1/200-week-ma/?start_date=2026-04-06&end_date=2026-04-08

Example Request with Latest

https://charts.bitbo.io/api/v1/200-week-ma/?latest=true

Code Samples

curl "https://charts.bitbo.io/api/v1/200-week-ma/?start_date=2026-04-06&end_date=2026-04-08&api_key=YOUR_API_KEY"

Example Output

{
"data": [
[
"2026-04-06",
"59462.315734285714",
"67549.14"
],
[
"2026-04-07",
"59491.500895714286",
"67549.14"
],
[
"2026-04-08",
"59520.730065714286",
"67549.14"
]
]
}