From db39b84ef6998f9e09da56e79a7b50694535b6e6 Mon Sep 17 00:00:00 2001 From: Nelson Torres Date: Thu, 30 Jan 2025 01:41:59 +0000 Subject: [PATCH] Update api.py covers cases when option_type comes as PUT or P, same with calls CALL or C --- piker/brokers/deribit/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/piker/brokers/deribit/api.py b/piker/brokers/deribit/api.py index 96bebf22..a9f487f0 100644 --- a/piker/brokers/deribit/api.py +++ b/piker/brokers/deribit/api.py @@ -153,9 +153,9 @@ def piker_sym_to_cb_sym(name: str) -> Symbol: new_expiry_date = get_timestamp_int(expiry_date) quote: str = base - if option_type == 'P': + if option_type == 'P' or option_type == 'PUT': option_type = PUT - elif option_type == 'C': + elif option_type == 'C' or option_type == 'CALL': option_type = CALL else: raise Exception("Couldn\'t parse option type")