基金名称东方红均衡优选两年定期开放混合型证券投资基金
基金简称东方红均衡优选定开混合
场内简称东证均衡
基金代码169108
基金类别混合型证券投资基金
基金管理人上海澳门电子游戏正规网站
基金托管人中国光大银行股份有限澳门电子游戏正规网站
成立时间2020年3月13日
基金运作方式契约型、定期开放方式运作
业绩比较基准中债综合指数收益率*80%+沪深300指数收益率*15%+恒生指数收益率*5%
风险等级
适合人群
谨慎型
关注本金安全,能够承受少许本金损失和波动。
测测澳门电子游戏正规网站是什么类型
');
var myChart = echarts.init(document.getElementById('main'));
var option = {
tooltip: {
trigger: 'axis',
backgroundColor:'#f2f2f2',
textStyle:{color:'#000',fontSize:'12'}
//axisPointer: {type: 'cross'}
},
legend: {
data:legend,
left:'40'
},
grid : {
x:45,y:40,x2:40,y2:30
},
toolbox: {
show: true,
feature: {
dataZoom: {yAxisIndex: 'none'},
restore: {},
saveAsImage: {}
}
},
xAxis : [
{
type : 'category',
splitLine: {show:true,lineStyle:{color:'#ececec'}},
boundaryGap: false,
data : xAxisData
}
],
yAxis : [
{
type : 'value',
precision: 2,
splitLine: {lineStyle:{color:'#ececec'}},
scale:true
}
],
series : [
{
name:legend[0],
type:'line',
//symbol: 'none',
data:seriesData0,
markPoint: {
symbolSize: '10',
symbol: 'circle',
data: [
{type: 'max', name: '最高'},
{type: 'min', name: '最低'}
],
label:{
normal:{show: false, position: [-13, -15],formatter:'{b}'}
}
},
itemStyle : {
normal : {
color: "#ca0821",
lineStyle:{width:1}
}
},
areaStyle: {
normal:{color: new echarts.graphic.LinearGradient(0, 0, 0, 1,[{offset: 0, color: '#ca0821'},{offset: 1, color: '#fff'}], false)}
}
},
{
name:legend[1],
type:'line',
//symbol: 'none',
data:seriesData1,
itemStyle : {
normal : {
color: "#c28600",
lineStyle:{width:1}
}
},
areaStyle: {
normal:{color: new echarts.graphic.LinearGradient(0, 0, 0, 1,[{offset: 0, color: '#c28600'},{offset: 1, color: '#fff'}], false)}
}
}
]
};
myChart.setOption(option);
}
});
}
function getTable(fundcode,sDate1,sDate2,pages){
$('#frmTable').html("

");
$('#netvaluePage').html("");
$.ajax({
type: "get",
url: "/common-web/chart/fundnettable/getFundNetTableJson",
data: {fundcode:fundcode,from:sDate1,to:sDate2,pages:pages,siteId:"6149a84cff8e4643a4092ea94122ec55"},
dataType : "json",
success: function(data){
var datalist = data.dataList;
var currentpage = data.currentPage;
var totalpage = data.totalPage;
var tableHtml = '
日期 | 单位净值 | 累计净值 |
';
if (datalist.length > 0){
for(var i=0;i'+datalist[i].date+' | '+datalist[i].netvalue+' | '+datalist[i].totalnetvalue+' | ';
}
}else{
tableHtml += '暂无数据 |
';
}
tableHtml += '
';
var netvaluePage = '
';
if (datalist.length > 0){
netvaluePage += '
数据下载';
}
$('#frmTable').html(tableHtml);
$('#netvaluePage').html(netvaluePage);
}
});
}