天软金融分析.NET函数大全 > 金融函数 > 期权 > 基本信息

OptionInfoFloorPrice    

简述
指定期权指定日跌幅下限价格,与系统参数(证券代码)相关。
1)如果指定日有期权基本信息,返回跌幅下限价格
2)如果指定日没有期权基本信息,返回0。
定义
OptionInfoFloorPrice(EndT:Date):Real
参数
名称类型说明
EndTDate日期类型,截止日期
返回Real实数,返回期权指定日跌幅下限价格
  • 范例

    // "OP10004233"在2022-6-27跌幅下限价格
    SetSysParam(pn_stock(),"OP10004233");
    return OptionInfoFloorPrice(20220627T); //结果:0.57
相关