Skip to content

numberjuani/livevolpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

livevolpy

To install run the following pip command.

pip3 install git+https://github.com/numberjuani/livevolpy.git

This is a simple wrapper for the CBOE livevol api that handles authentication and renewal of tokens for the user.

  from livevolpy.client import LiveVolClient, create_json_file
  import time
  
  client = LiveVolClient('client_id', 'client_secret')
  client.authorize()
  today = time.strftime('%Y-%m-%d')
  symbol = 'SPY'
  params = {'symbol':symbol,'root':symbol,'date':today}
  breakdown = client.get_option_trades_breakdown(params)
  create_json_file('breakdown.json', breakdown)
  options = client.get_options_and_underlying_quotes(params)
  create_json_file('options.json', options)
  params['order_by'] = 'SIZE_DESC'
  trades = client.get_trades(params)
  create_json_file('trades.json', trades)

Click here for documentation.

About

Python Wrapper for CBOE livevol API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages