Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions optionchain_stream/option_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class OptionChain():
"""
Wrapper class to fetch option chain steaming data
Wrapper class to fetch option chain streaming data
"""
def __init__(self, symbol, expiry, api_key, api_secret=None, request_token=None, access_token=None, underlying=False):
self.symbol = symbol
Expand All @@ -27,7 +27,7 @@ def sync_instruments(self):

def create_option_chain(self):
"""
Wrapper method to fetch sreaming option chain for requested symbol/expiry
Wrapper method to fetch streaming option chain for requested symbol/expiry
"""
# Assign/generate access_token using request_token and api_secret
if self.api_secret and self.request_token:
Expand Down