Gamma Normalized in USD
curl --request GET \
--url https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd', 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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717617600000,
"normalizedGammaNative": -22.07765550775552,
"normalizedGammaUSD": -1536496.8118206968
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717614000000,
"normalizedGammaNative": 37.33809977769953,
"normalizedGammaUSD": 2599346.918318157
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717610400000,
"normalizedGammaNative": 67.15288052508603,
"normalizedGammaUSD": 4675586.288582318
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717606800000,
"normalizedGammaNative": 28.4745839134447,
"normalizedGammaUSD": 1982449.319461716
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717603200000,
"normalizedGammaNative": 51.763541274933594,
"normalizedGammaUSD": 3601382.0583224255
}
],
"metadata": {
"api-version": "2023-09-30"
}
}
}{}Trades / Flow
Gamma Normalized in USD
This chart depicts the overall impact of “gamma exposure” (GEX) in terms of notional in the underlying for a 1% move in spot prices.
GET
/
analytics
/
trades-flow
/
gamma-exposures
/
normalized-usd
Gamma Normalized in USD
curl --request GET \
--url https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd', 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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/markets/derivatives/analytics/trades-flow/gamma-exposures/normalized-usd")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717617600000,
"normalizedGammaNative": -22.07765550775552,
"normalizedGammaUSD": -1536496.8118206968
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717614000000,
"normalizedGammaNative": 37.33809977769953,
"normalizedGammaUSD": 2599346.918318157
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717610400000,
"normalizedGammaNative": 67.15288052508603,
"normalizedGammaUSD": 4675586.288582318
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717606800000,
"normalizedGammaNative": 28.4745839134447,
"normalizedGammaUSD": 1982449.319461716
},
{
"exchange": "deribit",
"currency": "BTC",
"snapshotTimestamp": 1717603200000,
"normalizedGammaNative": 51.763541274933594,
"normalizedGammaUSD": 3601382.0583224255
}
],
"metadata": {
"api-version": "2023-09-30"
}
}
}{}Authorizations
Query Parameters
[Required] The exchange for which to retrieve the listed option level 1 quotes. [Examples] deribit | okex | bybit
[Required] The underlying currency for which there are listed option instruments. [Examples] BTC | SOL_USDC Note: inverse options have underlying currencies formatted as (BTC, ETH) while linear option currency formats include the stable coin in the same (SOL_USDC)
[Optional] Time format of the timestamps in the return payload. [Defaults] milliseconds | ms* | iso | iso8601 | hr | human_readable
Was this page helpful?
⌘I