You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.3 KiB
103 lines
2.3 KiB
<?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>800</width> |
|
<height>600</height> |
|
</rect> |
|
</property> |
|
<property name="windowTitle"> |
|
<string>MainWindow</string> |
|
</property> |
|
<widget class="QWidget" name="centralwidget"> |
|
<layout class="QGridLayout" name="gridLayout"> |
|
<property name="leftMargin"> |
|
<number>2</number> |
|
</property> |
|
<property name="topMargin"> |
|
<number>2</number> |
|
</property> |
|
<property name="rightMargin"> |
|
<number>2</number> |
|
</property> |
|
<property name="bottomMargin"> |
|
<number>2</number> |
|
</property> |
|
<item row="0" column="0"> |
|
<widget class="QTreeWidget" name="tw_strategies"> |
|
<property name="sortingEnabled"> |
|
<bool>true</bool> |
|
</property> |
|
<column> |
|
<property name="text"> |
|
<string>Strategy</string> |
|
</property> |
|
</column> |
|
<column> |
|
<property name="text"> |
|
<string>Trades #</string> |
|
</property> |
|
</column> |
|
<column> |
|
<property name="text"> |
|
<string>Total PnL</string> |
|
</property> |
|
</column> |
|
<column> |
|
<property name="text"> |
|
<string>PF</string> |
|
</property> |
|
</column> |
|
<column> |
|
<property name="text"> |
|
<string>Sharpe</string> |
|
</property> |
|
</column> |
|
<column> |
|
<property name="text"> |
|
<string>Avg. %</string> |
|
</property> |
|
</column> |
|
</widget> |
|
</item> |
|
</layout> |
|
</widget> |
|
<widget class="QMenuBar" name="menubar"> |
|
<property name="geometry"> |
|
<rect> |
|
<x>0</x> |
|
<y>0</y> |
|
<width>800</width> |
|
<height>27</height> |
|
</rect> |
|
</property> |
|
</widget> |
|
<widget class="QStatusBar" name="statusbar"/> |
|
</widget> |
|
<resources/> |
|
<connections> |
|
<connection> |
|
<sender>tw_strategies</sender> |
|
<signal>itemClicked(QTreeWidgetItem*,int)</signal> |
|
<receiver>MainWindow</receiver> |
|
<slot>strategyClicked(QTreeWidgetItem*,int)</slot> |
|
<hints> |
|
<hint type="sourcelabel"> |
|
<x>106</x> |
|
<y>103</y> |
|
</hint> |
|
<hint type="destinationlabel"> |
|
<x>800</x> |
|
<y>33</y> |
|
</hint> |
|
</hints> |
|
</connection> |
|
</connections> |
|
<slots> |
|
<slot>strategyClicked(QTreeWidgetItem*,int)</slot> |
|
</slots> |
|
</ui>
|
|
|