# 金融 / 基本面 / 基本报表 / 基金库 ## `amountCommission(fund_id)` 声明:function 返回交易量及佣金 | 参数 | 类型 | 说明 | | --------- | ------ | -------- | | `fund_id` | string | 基金代码 | 返回:array ### 示例 范例01:返回”SH500003”的交易量及佣金 ```tsl return AmountCommission("SH500003"); // 输出:"SH500003"的交易量及佣金 ``` ## `establishment(fund_id)` 声明:function 返回基金设立表 | 参数 | 类型 | 说明 | | --------- | ------ | ---------------- | | `fund_id` | string | 字符串。基金代码 | 返回:array ## `fundEnlarge(fund_id)` 声明:function 返回基金基金扩募表 | 参数 | 类型 | 说明 | | --------- | ------ | -------- | | `fund_id` | string | 基金代码 | 返回:array ### 示例 范例01:返回”SZ184695”的基金扩募表 ```tsl return FundEnlarge("SZ184695"); // 输出:"SZ184695"的基金扩募表 ``` ## `fundInvestAdviser(fund_id)` 声明:function 返回基金管理人情况 | 参数 | 类型 | 说明 | | --------- | ------ | ---------------- | | `fund_id` | string | 字符串。基金代码 | 返回:array ## `fundMainShareHolders(fund_id)` 声明:function 返回基金主要持有人 | 参数 | 类型 | 说明 | | --------- | ------ | ------------------ | | `fund_id` | string | 证券类型,基金代码 | 返回:array ### 示例 范例01:调用函数 ```tsl // 返回"SZ184695"的基金主要持有人 return fundMainShareHolders('SZ184695'); ``` ## `fundStockComposite(fund_id)` 声明:function 返回基金投资组合表 | 参数 | 类型 | 说明 | | --------- | ------ | ------------------ | | `fund_id` | string | 证券类型,基金代码 | 返回:array ### 示例 范例01:调用函数 ```tsl // 返回"SZ184701"的基金投资组合情况 return fundStockComposite('SZ184701'); ``` ## `fundTrusteeInfo(fund_id)` 声明:function 返回基金托管人情况表 | 参数 | 类型 | 说明 | | --------- | ------ | ---------------- | | `fund_id` | string | 字符串。基金代码 | 返回:array ## `investmentRatio(fund_id)` 声明:function 返回基金资产配置 | 参数 | 类型 | 说明 | | --------- | ------ | -------- | | `fund_id` | string | 基金代码 | 返回:array ### 示例 范例01:返回”SZ184691”的资产配置 ```tsl return InvestmentRatio("SZ184691") // 输出:"SZ184691"的资产配置 ``` ## `netAssetWeeklyList(fund_id)` 声明:function 返回基金资产净值周表 | 参数 | 类型 | 说明 | | --------- | ------ | -------- | | `fund_id` | string | 基金代码 | 返回:array ### 示例 范例01:返回”SZ184691”的资产净值周表 ```tsl return NetAssetWeeklyList("SZ184691"); // 输出:"SZ184691"的资产净值周表 ``` ## `profitSheet(fund_id)` 声明:function 返回基金收益及分配表 | 参数 | 类型 | 说明 | | --------- | ------ | ---------------- | | `fund_id` | string | 字符串。基金代码 | 返回:array ## `sponsorInfo(fund_id)` 声明:function 返回基金发起人情况 | 参数 | 类型 | 说明 | | --------- | ------ | ---------------- | | `fund_id` | string | 字符串。基金代码 | 返回:array