Skip to content
View erichkluo's full-sized avatar

Block or report erichkluo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. matrix matrix Public

    matrix - a lightweight modular framework for prototyping and backtesting trading strategies

    Python

  2. enclib enclib Public

    An enhanced encryption library wrapper for Python.

    Python

  3. A method for dropping highly correla... A method for dropping highly correlated assets in the universe
    1
    # A method for dropping highly correlated assets in the universe
    2
    
                  
    3
    # Threshold for finding highly correlated pairs
    4
    CORR_THRESHOLD = 0.5
    5
    
                  
  4. Parallel class method calls in Python Parallel class method calls in Python
    1
    # Reference: https://stackoverflow.com/questions/50528331/parallel-class-function-calls-using-python-joblib
    2
    # Require: Joblib (https://joblib.readthedocs.io/en/latest/index.html)
    3
    
                  
    4
    from joblib import Parallel, delayed 
    5