Nope
https://api.unusualwhales.com/api/stock/{ticker}/nope
Request
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
AAPL
Query Parameters
date
Optional Market Date
optional
A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.
2024-01-18
Responses
200Response Body 200 OK
call_delta
Call Delta
The total call delta obtained by multiplying the volume of all call options with their latest delta.
-21257.36
call_fill_delta
Call Fill Delta
The total call delta obtained by summing up the size of each call trade multiplied by the delta at the time of the transaction.
-21257.36
call_vol
Call Volume
The cumulative total volume of call options traded.
12348
nope
Nope score
The NOPE value based on call_delta & put_delta
-0.000648
nope_fill
Nope Fill
The NOPE value based on call_fill_delta & put_fill_delta
-0.000434
put_delta
Put Delta
The total put delta obtained by multiplying the volume of all put options with their latest delta.
-43593.96
put_fill_delta
Put Fill Delta
The total put delta obtained by summing up the size of each put trade multiplied by the delta at the time of the transaction.
-43593.96
put_vol
Put Volume
The cumulative total volume of put options traded.
12348
stock_vol
Stock Volume
The cumulative total volume of the underlying stock traded.
12348
timestamp
Timestamp
The (start of minute) timestamp of the data.
2024-10-28T18:46:00Z
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/nope" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
{
"data": [
{
"call_delta": "-21257.36",
"call_fill_delta": "-28564.02",
"call_vol": 23421,
"nope": "-0.000648",
"nope_fill": "-0.000434",
"put_delta": "-43593.96",
"put_fill_delta": "-14947.51",
"put_vol": 23421,
"stock_vol": 100000,
"timestamp": "2024-10-28T18:46:00Z"
}
]
}