1 Star 0 Fork 3

君玲/Option_Calculator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.ui 4.26 KB
一键复制 编辑 原始数据 按行查看 历史
Wang-AoTian 提交于 2021-08-11 04:23 . UI界面
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1159</width>
<height>989</height>
</rect>
</property>
<property name="windowTitle">
<string>期权价格计算器-基于蒙特卡洛模拟</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="verticalLayoutWidget_2">
<property name="geometry">
<rect>
<x>60</x>
<y>80</y>
<width>160</width>
<height>653</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QPlainTextEdit" name="S0">
<property name="placeholderText">
<string>标的资产初始价格</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="K">
<property name="placeholderText">
<string>执行价格</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="T">
<property name="placeholderText">
<string>剩余到期期限</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="r">
<property name="placeholderText">
<string>无风险利率</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="sigma">
<property name="placeholderText">
<string>标的资产波动度</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="m">
<property name="placeholderText">
<string>采样区间个数</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="I">
<property name="placeholderText">
<string>模拟次数</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="verticalLayoutWidget">
<property name="geometry">
<rect>
<x>240</x>
<y>270</y>
<width>141</width>
<height>86</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QComboBox" name="category">
<item>
<property name="text">
<string>欧式</string>
</property>
</item>
<item>
<property name="text">
<string>亚式</string>
</property>
</item>
<item>
<property name="text">
<string>美式</string>
</property>
</item>
<item>
<property name="text">
<string>欧式回望</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QComboBox" name="put_call">
<item>
<property name="text">
<string>买权</string>
</property>
</item>
<item>
<property name="text">
<string>卖权</string>
</property>
</item>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="verticalLayoutWidget_3">
<property name="geometry">
<rect>
<x>240</x>
<y>460</y>
<width>141</width>
<height>80</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QPushButton" name="pushButton">
<property name="text">
<string>计算</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="quitButton">
<property name="text">
<string>退出程序</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1159</width>
<height>26</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/powerpyjyp/option_-calculator.git
git@gitee.com:powerpyjyp/option_-calculator.git
powerpyjyp
option_-calculator
Option_Calculator
master

搜索帮助