@@ -153,10 +153,10 @@ def _display_products(organization: QCFullOrganization, products: List[Product])
153
153
logger .info (f"Organization balance: { organization .credit .balance :,.0f} QCC" )
154
154
155
155
156
- def _get_security_master_warn () -> str :
156
+ def _get_security_master_warn (url : str ) -> str :
157
157
return "\n " .join ([f"Your organization does not have an active Security Master subscription. Override the Security Master precautions will likely"
158
158
f" result in inaccurate and misleading backtest results. Use this override flag at your own risk." ,
159
- f"You can add the subscription at https://www.quantconnect.com/datasets/quantconnect-security-master /pricing"
159
+ f"You can add the subscription at https://www.quantconnect.com/datasets/{ url } /pricing"
160
160
])
161
161
162
162
@@ -196,15 +196,16 @@ def _select_products_interactive(organization: QCFullOrganization, datasets: Lis
196
196
dataset : Dataset = logger .prompt_list ("Select a dataset" ,
197
197
[Option (id = d , label = d .name ) for d in available_datasets ])
198
198
199
- if dataset .requires_security_master and not organization .has_security_master_subscription ():
199
+ for id , url in dataset .requirements .items ():
200
+ if organization .has_security_master_subscription (id ):
201
+ continue
200
202
if not force :
201
203
logger .warn ("\n " .join ([
202
204
f"Your organization needs to have an active Security Master subscription to download data from the '{ dataset .name } ' dataset" ,
203
- f"You can add the subscription at https://www.quantconnect.com/datasets/quantconnect-security-master /pricing"
205
+ f"You can add the subscription at https://www.quantconnect.com/datasets/{ url } /pricing"
204
206
]))
205
- continue
206
207
else :
207
- logger .warn (_get_security_master_warn ())
208
+ logger .warn (_get_security_master_warn (url ))
208
209
209
210
option_results = OrderedDict ()
210
211
for dataset_option in dataset .options :
@@ -328,14 +329,16 @@ def _select_products_non_interactive(organization: QCFullOrganization,
328
329
if dataset is None :
329
330
raise RuntimeError (f"There is no dataset named '{ ctx .params ['dataset' ]} '" )
330
331
331
- if dataset .requires_security_master and not organization .has_security_master_subscription ():
332
+ for id , url in dataset .requirements .items ():
333
+ if organization .has_security_master_subscription (id ):
334
+ continue
332
335
if not force :
333
336
raise RuntimeError ("\n " .join ([
334
337
f"Your organization needs to have an active Security Master subscription to download data from the '{ dataset .name } ' dataset" ,
335
- f"You can add the subscription at https://www.quantconnect.com/datasets/quantconnect-security-master /pricing"
338
+ f"You can add the subscription at https://www.quantconnect.com/datasets/{ url } /pricing"
336
339
]))
337
340
else :
338
- container .logger .warn (_get_security_master_warn ())
341
+ container .logger .warn (_get_security_master_warn (url ))
339
342
340
343
option_results = OrderedDict ()
341
344
invalid_options = []
@@ -401,7 +404,7 @@ def _get_available_datasets(organization: QCFullOrganization) -> List[Dataset]:
401
404
categories = [tag .name .strip () for tag in cloud_dataset .tags ],
402
405
options = datasource ["options" ],
403
406
paths = datasource ["paths" ],
404
- requires_security_master = datasource [ "requiresSecurityMaster" ] ))
407
+ requirements = datasource . get ( "requirements" , {}) ))
405
408
406
409
return available_datasets
407
410
0 commit comments