carstenf

Results 7 comments of carstenf

I probably found a solution, but not fully tested: class MultipleTimeSeriesCV: """Generates tuples of train_idx, test_idx pairs Assumes the MultiIndex contains levels 'symbol' and 'date' purges overlapping outcomes""" def __init__(self,...

did not saw your comment, found a solution, see my latest pull request. old: #lifetimes = bundle_data.asset_finder._compute_asset_lifetimes(frozenset([str("US")])) new: lifetimes = bundle_data.asset_finder._compute_asset_lifetimes(country_codes=[str("US")]) if my pull request is ok, please close the...

Sorry I miss-spelled it: SciPy. SciPy provides algorithms for optimization, integration, interpolation, eigenvalue problems, algebraic equations, differential equations, statistics and many other classes of problem.

Yes, that I did, but if I run a python code stored in my document folder, it picks up the pre installed python Version from your app. How can I...

Thanks I looked into it, but I believe I’m not able to get that running. Is there an option that this could be included in the app? -> run code...

looks like I found a solution, you might try this: import pandas_market_calendars as mcal nyse = mcal.get_calendar('NYSE') def check_if_business_day(day): end = start = day return len(nyse.valid_days(start_date=start, end_date=end))>0 than inside: def...

Example/use case: - reading a PDF and give a summary of the paper - search the internet for some information - provide the system some data and let it do...