Skip to content

Commit

Permalink
Changed mandatory to required
Browse files Browse the repository at this point in the history
  • Loading branch information
Ollie-Hooper committed Apr 7, 2021
1 parent 1f28008 commit 4f8c5f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions binance/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5900,7 +5900,7 @@ def options_index_price(self, **params):
https://binance-docs.github.io/apidocs/voptions/en/#get-the-spot-index-price
:param underlying: mandatory - Spot pair(Option contract underlying asset)- BTCUSDT
:param underlying: required - Spot pair(Option contract underlying asset)- BTCUSDT
:type underlying: str
"""
Expand Down Expand Up @@ -5933,7 +5933,7 @@ def options_depth(self, **params):
https://binance-docs.github.io/apidocs/voptions/en/#depth-information
:param symbol: mandatory - Option trading pair - BTC-200730-9000-C
:param symbol: required - Option trading pair - BTC-200730-9000-C
:type symbol: str
:param limit: optional - Default:100 Max:1000.Optional value:[10, 20, 50, 100, 500, 1000] - 100
:type limit: int
Expand All @@ -5946,9 +5946,9 @@ def options_klines(self, **params):
https://binance-docs.github.io/apidocs/voptions/en/#candle-data
:param symbol: mandatory - Option trading pair - BTC-200730-9000-C
:param symbol: required - Option trading pair - BTC-200730-9000-C
:type symbol: str
:param interval: mandatory - Time interval - 5m
:param interval: required - Time interval - 5m
:type interval: str
:param startTime: optional - Start Time - 1592317127349
:type startTime: int
Expand All @@ -5965,7 +5965,7 @@ def options_recent_trades(self, **params):
https://binance-docs.github.io/apidocs/voptions/en/#recently-completed-option-trades
:param symbol: mandatory - Option trading pair - BTC-200730-9000-C
:param symbol: required - Option trading pair - BTC-200730-9000-C
:type symbol: str
:param limit: optional - Number of records Default:100 Max:500 - 100
:type limit: int
Expand All @@ -5978,7 +5978,7 @@ def options_historical_trades(self, **params):
https://binance-docs.github.io/apidocs/voptions/en/#query-trade-history
:param symbol: mandatory - Option trading pair - BTC-200730-9000-C
:param symbol: required - Option trading pair - BTC-200730-9000-C
:type symbol: str
:param fromId: optional - The deal ID from which to return. The latest deal record is returned by default - 1592317127349
:type fromId: int
Expand Down

0 comments on commit 4f8c5f0

Please sign in to comment.