Exemple #1
0
	def object2( self ):
		
		params = {'height':300, 'width':1000, 'title':'', 'default':'LPPI GEF INTERNAL EQUITY BNYMILTD', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_char_overall, 'yyyymmdd', 'weight', 'portfolio', params, True).create_widgets()
		div = fw.Div(text = "<b><i>Time series of market value weight</i></b>", style = TITLE_STYLE)	

		return div, drop, plot
Exemple #2
0
	def object5( self ):

		params = {'height':400, 'width':1000, 'title':'', 'default':self.default_stock, 'percentage':False}
		plot, dd = fw.TimeSeriesPlotWithDropDown(self.df_addan_top_stocks, 'yyyymmdd', 'close', 'stock_name', params, True).create_widgets()
		div = fw.Div(text = "<b><i>Timeseries of Stock quotes</i></b>", style = TITLE_STYLE)

		return div, dd, plot
Exemple #3
0
	def object6( self ):

		params = {'height':400, 'width':1000, 'title':'', 'default':self.default_stock, 'percentage':True}	
		plot, dd = fw.TimeSeriesPlotWithDropDown(self.df_addan_top_stocks_sub, 'yyyymmdd', 'per_change', 'stock_name', params, True).create_widgets()	
		div = fw.Div(text = "<b><i>Last 60 days volatility</i></b>", style = TITLE_STYLE)	

		return div, dd, plot
Exemple #4
0
	def object9( self ):

		params = {'height':325, 'width':1000, 'title':'', 'default':'LPPI GLOBAL EQUITIES POOL [Aggregated Group]', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_perf_port, 'yyyymmdd', 'tot_rtn_ytd', 'name', params, True).create_widgets()	
		div = fw.Div(text = "<b><i>Time series of YTD performance by portfolio</i></b>", style = TITLE_STYLE)

		return div, drop, plot
Exemple #5
0
	def object1( self ):

		params = {'height':400, 'width':1000, 'title':'', 'default':'USD', 'percentage':False}
		plot, dd = fw.TimeSeriesPlotWithDropDown(self.df_addan_fx, 'yyyymmdd', 'fx_rate', 'to_ccy', params, True).create_widgets()	
		div = fw.Div(text = "<b><i>FxRate vs GBP</i></b>", style = TITLE_STYLE)	

		return div, dd, plot
Exemple #6
0
	def object7( self ):

		params = {'height':350, 'width':1000, 'title':'', 'default':'North America', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_perf_reg, 'yyyymmdd', 'tot_rtn_ytd', 'name', params, True).create_widgets()	
		div = fw.Div(text = "<b><i>Time series of YTD performance by region</i></b>", style = TITLE_STYLE)

		return div, drop, plot
Exemple #7
0
	def object11( self ):

		params = {'height':350, 'width':1000, 'title':'', 'default':'p&l_lehman_default_2008_p', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_risk_scnr, 'yyyymmdd', 'p&l_%', 'measure', params, True).create_widgets()
		div = fw.Div(text = "<b><i>Time series of P&L_%</i></b>", style = TITLE_STYLE)

		return div, drop, plot
Exemple #8
0
	def object2( self ):

		params = {'height':325, 'width':1000, 'title':'', 'default':'OVERALL', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_risk_overall, 'yyyymmdd', 'volatility_1yr', 'portfolio', params, True).create_widgets()
		div = fw.Div(text = "<b><i>Time series of Volatility by portfolio</i></b>", style = TITLE_STYLE)

		return div, drop, plot
Exemple #9
0
	def object2( self ):	

		params = {'height':390, 'width':1000, 'title':'Total Net of Fees', 'default':'Global Equity Fund', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_perf_overall_sub1, 'yyyymmdd', 'month', 'structure', params, True).create_widgets()	

		div = fw.Div(text = "<b><i>Time series of performance by structure</i></b>", style = TITLE_STYLE)

		return div, drop, plot
Exemple #10
0
	def object3( self ):	

		params = {'height':390, 'width':1000, 'title':'MSCI Index', 'default':'Global Equity Fund', 'percentage':True}
		plot, drop = fw.TimeSeriesPlotWithDropDown(self.df_perf_overall_sub2, 'yyyymmdd', 'month', 'structure', params, True).create_widgets()	

		return drop, plot