Example #1
0
    def __init__(self):

        super(PortfoliosEstimated, self).__init__()
        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_instrument_correlation_matrix']
        update_recalc(self, protected)
Example #2
0
    def __init__(self):

        super(PortfoliosEstimated, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_instrument_correlation_matrix']
        update_recalc(self, protected)
Example #3
0
    def __init__(self):
        """
        """
        super(ForecastCombineEstimated, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_forecast_correlation_matrices', 'calculation_of_forecast_weights']
        update_recalc(self, protected)
Example #4
0
    def __init__(self):

        super(PortfoliosEstimated, self).__init__()
        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_instrument_correlation_matrix']
        update_recalc(self, protected)

        nopickle = ["calculation_of_raw_instrument_weights"]
        setattr(self, "_nopickle", nopickle)
Example #5
0
    def __init__(self):
        """
        """
        super(ForecastCombineEstimated, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_forecast_correlation_matrices', 'calculation_of_forecast_weights']
        update_recalc(self, protected)

        setattr(self, "description", "Estimated")
Example #6
0
    def __init__(self):
        """
        Create a futures raw data subsystem

        >>> FuturesRawData()
        SystemStage 'rawdata'
        """
        super(FuturesRawData, self).__init__()
        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = []
        update_recalc(self, protected)
Example #7
0
    def __init__(self):

        super(PortfoliosEstimated, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_instrument_correlation_matrix']
        update_recalc(self, protected)

        setattr(self, "description", "Estimated")
    
        nopickle=["calculation_of_raw_instrument_weights"]
        setattr(self, "_nopickle", nopickle)
Example #8
0
    def __init__(self):
        """
        Create a futures raw data subsystem

        >>> FuturesRawData()
        SystemStage 'rawdata'
        """
        super(FuturesRawData, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = []
        update_recalc(self, protected)
Example #9
0
    def __init__(self):
        """
        Create a futures raw data subsystem

        >>> FuturesRawData()
        SystemStage 'rawdata' futures Try objectname.methods()
        """
        super(FuturesRawData, self).__init__()
        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = []
        update_recalc(self, protected)

        setattr(self, "description", "futures")
Example #10
0
    def __init__(self):
        """
        """
        super(ForecastCombineEstimated, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = ['get_forecast_correlation_matrices', 'calculation_of_forecast_weights']
        update_recalc(self, protected)

        setattr(self, "description", "Estimated")
    
        nopickle=["calculation_of_raw_forecast_weights"]

        setattr(self, "_nopickle", nopickle)
Example #11
0
    def __init__(self):
        """
        Create a futures raw data subsystem

        >>> FuturesRawData()
        SystemStage 'rawdata' futures Try objectname.methods()
        """
        super(FuturesRawData, self).__init__()

        """
        if you add another method to this you also need to add its blank dict here
        """

        protected = []
        update_recalc(self, protected)

        setattr(self, "description", "futures")