1584 lines
418 KiB
Plaintext
1584 lines
418 KiB
Plaintext
|
|
{
|
|||
|
|
"cells": [
|
|||
|
|
{
|
|||
|
|
"cell_type": "code",
|
|||
|
|
"id": "522f09ca7b3fe929",
|
|||
|
|
"metadata": {
|
|||
|
|
"ExecuteTime": {
|
|||
|
|
"end_time": "2025-09-23T08:08:26.636980Z",
|
|||
|
|
"start_time": "2025-09-23T08:08:26.570904Z"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"source": [
|
|||
|
|
"from datetime import datetime\n",
|
|||
|
|
"\n",
|
|||
|
|
"from src.data_processing import load_raw_data\n",
|
|||
|
|
"%load_ext autoreload\n",
|
|||
|
|
"%autoreload 2\n",
|
|||
|
|
"\n",
|
|||
|
|
"import sys\n",
|
|||
|
|
"\n",
|
|||
|
|
"if '/mnt/d/PyProject/NewQuant/' not in sys.path:\n",
|
|||
|
|
" sys.path.append('/mnt/d/PyProject/NewQuant/')"
|
|||
|
|
],
|
|||
|
|
"outputs": [
|
|||
|
|
{
|
|||
|
|
"name": "stdout",
|
|||
|
|
"output_type": "stream",
|
|||
|
|
"text": [
|
|||
|
|
"The autoreload extension is already loaded. To reload it, use:\n",
|
|||
|
|
" %reload_ext autoreload\n"
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
],
|
|||
|
|
"execution_count": 9
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"cell_type": "code",
|
|||
|
|
"id": "4f7e4b438cea750e",
|
|||
|
|
"metadata": {
|
|||
|
|
"ExecuteTime": {
|
|||
|
|
"end_time": "2025-09-23T08:08:26.678675Z",
|
|||
|
|
"start_time": "2025-09-23T08:08:26.654141Z"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"source": [
|
|||
|
|
"from turtle import down\n",
|
|||
|
|
"from src.analysis.result_analyzer import ResultAnalyzer\n",
|
|||
|
|
"# 导入所有必要的模块\n",
|
|||
|
|
"from src.data_manager import DataManager\n",
|
|||
|
|
"from src.backtest_engine import BacktestEngine\n",
|
|||
|
|
"from src.indicators.indicator_list import INDICATOR_LIST\n",
|
|||
|
|
"from src.indicators.indicators import *\n",
|
|||
|
|
"\n",
|
|||
|
|
"# 导入您自己的 SMC 策略\n",
|
|||
|
|
"from src.strategies.TrendlineBreakoutStrategy.TrendlineBreakoutStrategy import TrendlineBreakoutStrategy\n",
|
|||
|
|
"\n",
|
|||
|
|
"# --- 配置参数 ---\n",
|
|||
|
|
"# 获取当前脚本所在目录,假设数据文件在项目根目录下的 data 文件夹内\n",
|
|||
|
|
"data_file_path = '/mnt/d/PyProject/NewQuant/data/data/KQ_m@CZCE_SA/KQ_m@CZCE_SA_min15.csv'\n",
|
|||
|
|
"# data_file_path = \"/mnt/d/PyProject/NewQuant/data/data/KQ_m@DCE_m/KQ_m@DCE_m_min60.csv\"\n",
|
|||
|
|
"# data_file_path = \"/mnt/d/PyProject/NewQuant/data/data/KQ_m@CZCE_SA/KQ_m@CZCE_SA_min15.csv\"\n",
|
|||
|
|
"# data_file_path = \"/mnt/d/PyProject/NewQuant/data/data/KQ_m@DCE_m/KQ_m@DCE_m_min60.csv\""
|
|||
|
|
],
|
|||
|
|
"outputs": [],
|
|||
|
|
"execution_count": 10
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"metadata": {
|
|||
|
|
"ExecuteTime": {
|
|||
|
|
"end_time": "2025-09-23T08:08:26.719575Z",
|
|||
|
|
"start_time": "2025-09-23T08:08:26.694120Z"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"cell_type": "code",
|
|||
|
|
"source": [
|
|||
|
|
"\n",
|
|||
|
|
"initial_capital = 100000.0\n",
|
|||
|
|
"slippage_rate = 0.000 # 假设每笔交易0.1%的滑点\n",
|
|||
|
|
"commission_rate = 0.0000 # 假设每笔交易0.02%的佣金\n",
|
|||
|
|
"\n",
|
|||
|
|
"global_config = {\n",
|
|||
|
|
" 'symbol': 'KQ_m@CZCE_SA', # 确保与数据文件中的 symbol 匹配\n",
|
|||
|
|
"}\n",
|
|||
|
|
"\n",
|
|||
|
|
"# 回测时间范围\n",
|
|||
|
|
"start_time = datetime(2021, 1, 1)\n",
|
|||
|
|
"end_time = datetime(2024, 3, 12)\n",
|
|||
|
|
"\n",
|
|||
|
|
"# start_time = datetime(2024, 1, 1)\n",
|
|||
|
|
"# end_time = datetime(2025, 8, 1)\n",
|
|||
|
|
"\n",
|
|||
|
|
"\n",
|
|||
|
|
"indicators = INDICATOR_LIST\n",
|
|||
|
|
"indicators = []\n",
|
|||
|
|
"\n",
|
|||
|
|
"# 确保 DataManager 能够重置以进行多次回测\n",
|
|||
|
|
"# data_manager.reset() # 首次运行不需要重置"
|
|||
|
|
],
|
|||
|
|
"id": "9ee53c41eaaefabb",
|
|||
|
|
"outputs": [],
|
|||
|
|
"execution_count": 11
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"metadata": {
|
|||
|
|
"ExecuteTime": {
|
|||
|
|
"end_time": "2025-09-23T08:09:07.381118Z",
|
|||
|
|
"start_time": "2025-09-23T08:08:26.726902Z"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"cell_type": "code",
|
|||
|
|
"source": [
|
|||
|
|
"from src.indicators.indicators import ROC_MA\n",
|
|||
|
|
"\n",
|
|||
|
|
"# --- 1. 初始化数据管理器 ---\n",
|
|||
|
|
"print(\"初始化数据管理器...\")\n",
|
|||
|
|
"data_manager = DataManager(file_path=data_file_path, symbol=global_config['symbol'], start_time=start_time,\n",
|
|||
|
|
" end_time=end_time)\n",
|
|||
|
|
"\n",
|
|||
|
|
"strategy_parameters = {\n",
|
|||
|
|
" 'main_symbol': 'SA', # <-- 替换为你的交易品种代码,例如 'GC=F' (黄金期货), 'ZC=F' (玉米期货)\n",
|
|||
|
|
" 'trade_volume': 1,\n",
|
|||
|
|
" 'order_direction': ['BUY', 'SELL'],\n",
|
|||
|
|
" 'indicators': [PriceRangeToVolatilityRatio(7, 14, 2.8, 4.3), ROC_MA(10, 10, -2.7, -0.4)],\n",
|
|||
|
|
" 'enable_log': False\n",
|
|||
|
|
"}\n",
|
|||
|
|
"\n",
|
|||
|
|
"\n",
|
|||
|
|
"\n",
|
|||
|
|
"# --- 2. 初始化回测引擎并运行 ---\n",
|
|||
|
|
"print(\"\\n初始化回测引擎...\")\n",
|
|||
|
|
"engine = BacktestEngine(\n",
|
|||
|
|
" data_manager=data_manager,\n",
|
|||
|
|
" strategy_class=TrendlineBreakoutStrategy, # <--- 更改为您的 SMC 策略类\n",
|
|||
|
|
" # current_segment_symbol 参数已从 SMCPureH1LongStrategy 中移除,不需要设置\n",
|
|||
|
|
" strategy_params=strategy_parameters,\n",
|
|||
|
|
" initial_capital=initial_capital,\n",
|
|||
|
|
" slippage_rate=slippage_rate,\n",
|
|||
|
|
" commission_rate=commission_rate,\n",
|
|||
|
|
" roll_over_mode=True,\n",
|
|||
|
|
" start_time=start_time,\n",
|
|||
|
|
" end_time=end_time,\n",
|
|||
|
|
" indicators=indicators # 如果您的 SMC 策略不使用这些指标,也可以考虑移除\n",
|
|||
|
|
")\n",
|
|||
|
|
"\n",
|
|||
|
|
"print(\"\\n开始运行回测...\")\n",
|
|||
|
|
"engine.run_backtest()\n",
|
|||
|
|
"print(\"\\n回测运行完毕。\")\n",
|
|||
|
|
"\n",
|
|||
|
|
"# --- 3. 获取回测结果 ---\n",
|
|||
|
|
"results = engine.get_backtest_results()\n",
|
|||
|
|
"portfolio_snapshots = results[\"portfolio_snapshots\"]\n",
|
|||
|
|
"trade_history = results[\"trade_history\"]\n",
|
|||
|
|
"initial_capital_result = results[\"initial_capital\"]\n",
|
|||
|
|
"bars = results[\"all_bars\"]\n",
|
|||
|
|
"\n",
|
|||
|
|
"# --- 4. 结果分析与可视化 ---\n",
|
|||
|
|
"if portfolio_snapshots:\n",
|
|||
|
|
" analyzer = ResultAnalyzer(portfolio_snapshots, trade_history, bars, initial_capital_result, INDICATOR_LIST)\n",
|
|||
|
|
"\n",
|
|||
|
|
" analyzer.generate_report()\n",
|
|||
|
|
" analyzer.plot_performance()\n",
|
|||
|
|
" metrics = analyzer.calculate_all_metrics()\n",
|
|||
|
|
" print(metrics)\n",
|
|||
|
|
"\n",
|
|||
|
|
" analyzer.analyze_indicators()\n",
|
|||
|
|
"else:\n",
|
|||
|
|
" print(\"\\n没有生成投资组合快照,无法进行结果分析。\")"
|
|||
|
|
],
|
|||
|
|
"id": "f903fd2761d446cd",
|
|||
|
|
"outputs": [
|
|||
|
|
{
|
|||
|
|
"name": "stdout",
|
|||
|
|
"output_type": "stream",
|
|||
|
|
"text": [
|
|||
|
|
"初始化数据管理器...\n",
|
|||
|
|
"数据加载成功: /mnt/d/PyProject/NewQuant/data/data/KQ_m@CZCE_SA/KQ_m@CZCE_SA_min15.csv\n",
|
|||
|
|
"数据范围从 2020-12-31 14:45:00 到 2025-08-26 13:45:00\n",
|
|||
|
|
"总计 25662 条记录。\n",
|
|||
|
|
"\n",
|
|||
|
|
"初始化回测引擎...\n",
|
|||
|
|
"模拟器初始化:初始资金=100000.00, 滑点率=0.0, 佣金率=0.0\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 回测引擎初始化完成 ---\n",
|
|||
|
|
" 策略: TrendlineBreakoutStrategy\n",
|
|||
|
|
" 初始资金: 100000.00\n",
|
|||
|
|
" 换月模式: 启用\n",
|
|||
|
|
"\n",
|
|||
|
|
"开始运行回测...\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 回测开始 ---\n",
|
|||
|
|
"TrendlineBreakoutStrategy 策略初始化回调被调用。\n",
|
|||
|
|
"开始将 DataFrame 转换为 Bar 对象流...\n",
|
|||
|
|
"Bar 对象流生成完毕。\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 回测结束,检查并平仓所有剩余持仓 ---\n",
|
|||
|
|
"--- 回测结束 ---\n",
|
|||
|
|
"总计处理了 17565 根K线。\n",
|
|||
|
|
"总计发生了 1246 笔交易。\n",
|
|||
|
|
"最终总净值: 102853.00\n",
|
|||
|
|
"总收益率: 2.85%\n",
|
|||
|
|
"\n",
|
|||
|
|
"回测运行完毕。\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 结果分析器初始化完成 ---\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 交易明细 ---\n",
|
|||
|
|
" 2021-01-06 14:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1638.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-07 14:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1651.00 | Comm: 0.00 | PnL: 13.00\n",
|
|||
|
|
" 2021-01-07 22:30:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1639.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-11 09:30:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1565.00 | Comm: 0.00 | PnL: 74.00\n",
|
|||
|
|
" 2021-01-11 13:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1547.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-12 09:15:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1517.00 | Comm: 0.00 | PnL: 30.00\n",
|
|||
|
|
" 2021-01-12 14:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1535.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-12 14:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1524.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2021-01-13 10:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1501.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-13 11:15:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1505.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2021-01-13 22:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1518.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-14 10:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1512.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-01-15 10:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1540.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-15 22:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1537.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2021-01-18 14:30:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1556.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-18 21:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1546.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2021-01-19 13:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1541.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-19 14:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1548.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2021-01-19 21:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1549.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-20 13:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1565.00 | Comm: 0.00 | PnL: 16.00\n",
|
|||
|
|
" 2021-01-20 21:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1587.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-20 21:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1570.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-01-22 09:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1585.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-22 10:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1556.00 | Comm: 0.00 | PnL: -29.00\n",
|
|||
|
|
" 2021-01-22 21:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1540.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-22 21:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1548.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2021-01-25 14:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1575.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-25 21:45:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1574.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2021-01-27 10:00:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1547.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-27 13:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1558.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2021-01-27 22:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1577.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-01-29 11:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1615.00 | Comm: 0.00 | PnL: 38.00\n",
|
|||
|
|
" 2021-02-03 21:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1639.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-03 21:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1630.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2021-02-08 11:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1635.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-08 21:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1641.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2021-02-09 09:30:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1616.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-09 11:15:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1621.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2021-02-09 13:30:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1609.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-09 14:00:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1617.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2021-02-10 14:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1595.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-18 09:00:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1614.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-02-19 22:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1676.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-22 21:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1758.00 | Comm: 0.00 | PnL: 82.00\n",
|
|||
|
|
" 2021-02-22 21:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1785.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-23 09:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1780.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2021-02-25 11:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1863.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-02-25 14:45:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1836.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2021-03-01 14:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1929.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-01 21:00:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1907.00 | Comm: 0.00 | PnL: -22.00\n",
|
|||
|
|
" 2021-03-02 22:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1956.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-03 13:45:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1950.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-03-03 21:00:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1901.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-04 21:30:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1839.00 | Comm: 0.00 | PnL: 62.00\n",
|
|||
|
|
" 2021-03-05 09:30:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1791.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-05 11:15:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1830.00 | Comm: 0.00 | PnL: -39.00\n",
|
|||
|
|
" 2021-03-05 14:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1835.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-08 11:00:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1897.00 | Comm: 0.00 | PnL: 62.00\n",
|
|||
|
|
" 2021-03-09 09:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1953.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-09 11:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1951.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2021-03-10 14:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1954.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-10 21:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1942.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2021-03-11 09:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1871.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-11 13:30:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1869.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2021-03-15 09:15:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1898.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-15 11:00:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1880.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2021-03-15 14:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1936.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-15 22:00:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1942.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2021-03-17 13:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1961.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-17 22:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1980.00 | Comm: 0.00 | PnL: 19.00\n",
|
|||
|
|
" 2021-03-19 14:00:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1953.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-19 21:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1960.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2021-03-19 22:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1991.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-22 09:15:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1966.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2021-03-22 21:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1920.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-23 10:30:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1937.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-03-23 21:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1883.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-24 10:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1903.00 | Comm: 0.00 | PnL: -20.00\n",
|
|||
|
|
" 2021-03-24 14:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1925.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-24 21:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1912.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2021-03-25 10:00:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1880.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-25 11:15:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1892.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2021-03-25 21:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1860.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-25 21:30:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1877.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-03-25 22:00:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1888.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-26 10:30:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1884.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2021-03-26 14:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1893.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-29 10:45:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1882.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2021-03-30 09:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1858.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-03-30 11:00:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1870.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2021-03-31 21:15:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1868.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-01 09:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1874.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-04-01 13:45:00 | BUY | CZCE.SA105 | Vol: 1 | Price: 1905.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-02 10:00:00 | CLOSE_LONG | CZCE.SA105 | Vol: 1 | Price: 1941.00 | Comm: 0.00 | PnL: 36.00\n",
|
|||
|
|
" 2021-04-06 10:00:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1902.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-06 22:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1886.00 | Comm: 0.00 | PnL: 16.00\n",
|
|||
|
|
" 2021-04-07 10:45:00 | SELL | CZCE.SA105 | Vol: 1 | Price: 1856.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-07 14:45:00 | CLOSE_SHORT | CZCE.SA105 | Vol: 1 | Price: 1856.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2021-04-13 11:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1911.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-13 14:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1909.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2021-04-13 21:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1934.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-13 22:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1915.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-04-15 21:00:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 1872.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-15 21:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 1889.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-04-16 22:30:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1930.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-19 09:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1924.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-04-19 11:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1967.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-20 10:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1968.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2021-04-21 09:00:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 1943.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-21 10:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 1954.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2021-04-22 14:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 1916.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-22 14:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 1931.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-04-26 14:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1950.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-26 21:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1938.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2021-04-27 09:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 1964.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-27 22:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 1997.00 | Comm: 0.00 | PnL: 33.00\n",
|
|||
|
|
" 2021-04-28 21:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2033.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-29 10:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2043.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2021-04-30 10:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2053.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-04-30 13:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2045.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2021-04-30 14:30:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2075.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-07 09:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2172.00 | Comm: 0.00 | PnL: 97.00\n",
|
|||
|
|
" 2021-05-07 21:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2112.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-07 21:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2104.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2021-05-10 09:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2195.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-10 13:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2167.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2021-05-10 22:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2154.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-11 09:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2156.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2021-05-12 11:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2199.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-12 14:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2252.00 | Comm: 0.00 | PnL: 53.00\n",
|
|||
|
|
" 2021-05-13 09:30:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2326.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-13 10:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2299.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2021-05-17 21:30:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2203.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-18 09:15:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2224.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2021-05-19 09:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2180.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-19 13:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2131.00 | Comm: 0.00 | PnL: 49.00\n",
|
|||
|
|
" 2021-05-19 21:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2087.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-20 11:00:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2075.00 | Comm: 0.00 | PnL: 12.00\n",
|
|||
|
|
" 2021-05-21 14:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2111.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-21 21:15:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2077.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2021-05-21 22:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2056.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-24 10:00:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2078.00 | Comm: 0.00 | PnL: -22.00\n",
|
|||
|
|
" 2021-05-25 10:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2133.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-25 14:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2129.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2021-05-26 09:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2119.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-26 14:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2147.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2021-05-27 14:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2149.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-27 21:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2130.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-05-27 21:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2159.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-28 10:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2170.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2021-05-31 10:30:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2205.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-05-31 21:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2181.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2021-06-01 10:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2224.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-01 22:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2274.00 | Comm: 0.00 | PnL: 50.00\n",
|
|||
|
|
" 2021-06-03 14:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2244.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-04 10:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2240.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2021-06-08 09:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2266.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-08 10:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2232.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2021-06-09 14:30:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2204.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-10 09:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2177.00 | Comm: 0.00 | PnL: 27.00\n",
|
|||
|
|
" 2021-06-10 21:30:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2138.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-10 21:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2157.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-06-11 09:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2166.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-11 14:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2162.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2021-06-15 10:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2141.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-15 14:00:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2157.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2021-06-16 14:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2152.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-16 14:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2181.00 | Comm: 0.00 | PnL: -29.00\n",
|
|||
|
|
" 2021-06-16 22:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2185.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-17 09:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2189.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2021-06-17 21:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2215.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-18 09:15:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2185.00 | Comm: 0.00 | PnL: -30.00\n",
|
|||
|
|
" 2021-06-21 11:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2221.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-21 14:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2206.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-06-21 22:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2181.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-22 13:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2181.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2021-06-24 09:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2216.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-25 09:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2253.00 | Comm: 0.00 | PnL: 37.00\n",
|
|||
|
|
" 2021-06-25 13:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2284.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-25 14:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2278.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-06-28 09:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2229.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-29 21:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2206.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2021-06-30 14:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2229.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-06-30 21:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2228.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2021-07-01 14:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2199.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-01 21:00:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2200.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2021-07-02 11:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2230.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-02 21:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2254.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2021-07-05 21:45:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2288.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-05 22:15:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2289.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2021-07-06 09:00:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2318.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-06 10:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2307.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2021-07-07 11:00:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2286.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-07 13:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2302.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2021-07-09 21:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2283.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-12 09:15:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2275.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2021-07-13 21:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2300.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-14 09:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2287.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2021-07-15 09:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2242.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-15 09:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2257.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-07-16 11:15:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2256.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-16 13:30:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2269.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2021-07-16 14:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2306.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-16 21:30:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2318.00 | Comm: 0.00 | PnL: 12.00\n",
|
|||
|
|
" 2021-07-19 09:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2353.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-19 10:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2311.00 | Comm: 0.00 | PnL: -42.00\n",
|
|||
|
|
" 2021-07-20 21:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2356.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-21 09:00:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2370.00 | Comm: 0.00 | PnL: 14.00\n",
|
|||
|
|
" 2021-07-23 10:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2366.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-23 13:45:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2375.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2021-07-23 14:00:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2356.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-23 22:00:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2346.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2021-07-26 21:15:00 | BUY | CZCE.SA109 | Vol: 1 | Price: 2351.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-27 10:45:00 | CLOSE_LONG | CZCE.SA109 | Vol: 1 | Price: 2345.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-07-27 14:45:00 | SELL | CZCE.SA109 | Vol: 1 | Price: 2266.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-27 21:15:00 | CLOSE_SHORT | CZCE.SA109 | Vol: 1 | Price: 2294.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2021-07-29 21:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2617.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-07-29 22:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2620.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2021-08-02 09:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2559.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-02 11:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2561.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2021-08-03 09:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2510.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-03 10:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2530.00 | Comm: 0.00 | PnL: -20.00\n",
|
|||
|
|
" 2021-08-03 21:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2534.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-03 22:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2517.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-08-05 22:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2559.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-06 22:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2620.00 | Comm: 0.00 | PnL: 61.00\n",
|
|||
|
|
" 2021-08-09 21:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2653.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-09 22:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2638.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-08-11 22:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2686.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-12 13:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2692.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2021-08-13 21:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2767.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-16 09:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2790.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2021-08-16 14:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2752.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-17 09:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2758.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-08-17 21:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2730.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-18 22:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2680.00 | Comm: 0.00 | PnL: 50.00\n",
|
|||
|
|
" 2021-08-19 14:00:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2721.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-19 14:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2703.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2021-08-20 09:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2719.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-20 22:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2737.00 | Comm: 0.00 | PnL: 18.00\n",
|
|||
|
|
" 2021-08-25 09:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2690.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-25 11:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2705.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-08-25 14:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2745.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-25 21:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2728.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-08-26 09:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2674.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-26 21:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2665.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2021-08-26 21:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2671.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-27 11:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2671.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2021-08-27 14:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2704.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-27 21:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2690.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2021-08-31 21:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2673.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-08-31 21:45:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2687.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2021-09-01 14:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2714.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-01 14:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2697.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2021-09-02 10:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2709.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-02 13:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2712.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2021-09-03 21:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2748.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-03 22:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2729.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-09-06 21:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2772.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-06 22:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2774.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2021-09-07 13:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2829.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-07 14:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2851.00 | Comm: 0.00 | PnL: 22.00\n",
|
|||
|
|
" 2021-09-07 21:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2883.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-08 09:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2873.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2021-09-08 10:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2920.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-08 21:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2897.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2021-09-09 10:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2972.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-09 11:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2968.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2021-09-09 14:00:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3015.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-09 14:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2991.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2021-09-10 21:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2981.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-10 21:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3016.00 | Comm: 0.00 | PnL: -35.00\n",
|
|||
|
|
" 2021-09-13 21:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2923.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-14 10:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2926.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2021-09-14 21:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2849.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-15 09:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2854.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2021-09-15 13:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2914.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-15 14:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2881.00 | Comm: 0.00 | PnL: -33.00\n",
|
|||
|
|
" 2021-09-16 10:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2923.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-16 22:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3013.00 | Comm: 0.00 | PnL: 90.00\n",
|
|||
|
|
" 2021-09-22 21:00:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3179.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-22 22:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3196.00 | Comm: 0.00 | PnL: 17.00\n",
|
|||
|
|
" 2021-09-24 09:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3167.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-24 11:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3105.00 | Comm: 0.00 | PnL: 62.00\n",
|
|||
|
|
" 2021-09-24 22:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3209.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-27 21:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3364.00 | Comm: 0.00 | PnL: 155.00\n",
|
|||
|
|
" 2021-09-28 11:00:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3403.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-28 13:45:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3396.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2021-09-29 09:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3463.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-29 10:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3428.00 | Comm: 0.00 | PnL: -35.00\n",
|
|||
|
|
" 2021-09-30 10:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3375.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-09-30 11:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3405.00 | Comm: 0.00 | PnL: -30.00\n",
|
|||
|
|
" 2021-09-30 14:00:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3451.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-08 09:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3472.00 | Comm: 0.00 | PnL: 21.00\n",
|
|||
|
|
" 2021-10-11 13:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3480.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-12 09:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3500.00 | Comm: 0.00 | PnL: 20.00\n",
|
|||
|
|
" 2021-10-13 10:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3484.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-13 11:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3507.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2021-10-13 22:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3413.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-14 11:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3399.00 | Comm: 0.00 | PnL: 14.00\n",
|
|||
|
|
" 2021-10-15 11:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3345.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-15 13:45:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3401.00 | Comm: 0.00 | PnL: -56.00\n",
|
|||
|
|
" 2021-10-15 14:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 3436.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-18 21:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 3531.00 | Comm: 0.00 | PnL: 95.00\n",
|
|||
|
|
" 2021-10-19 10:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3496.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-19 22:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 3325.00 | Comm: 0.00 | PnL: 171.00\n",
|
|||
|
|
" 2021-10-21 14:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 3176.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-22 21:45:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2810.00 | Comm: 0.00 | PnL: 366.00\n",
|
|||
|
|
" 2021-10-26 09:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2639.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-26 10:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2682.00 | Comm: 0.00 | PnL: -43.00\n",
|
|||
|
|
" 2021-10-27 13:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2834.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-27 21:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2730.00 | Comm: 0.00 | PnL: -104.00\n",
|
|||
|
|
" 2021-10-28 10:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2730.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-10-28 14:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2892.00 | Comm: 0.00 | PnL: -162.00\n",
|
|||
|
|
" 2021-10-29 14:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2819.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-01 09:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2670.00 | Comm: 0.00 | PnL: 149.00\n",
|
|||
|
|
" 2021-11-02 13:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2519.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-02 21:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2567.00 | Comm: 0.00 | PnL: -48.00\n",
|
|||
|
|
" 2021-11-03 11:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2599.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-03 21:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2749.00 | Comm: 0.00 | PnL: 150.00\n",
|
|||
|
|
" 2021-11-05 22:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2576.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-08 10:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2569.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2021-11-08 21:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2468.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-08 21:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2530.00 | Comm: 0.00 | PnL: -62.00\n",
|
|||
|
|
" 2021-11-09 14:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2569.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-09 21:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2519.00 | Comm: 0.00 | PnL: -50.00\n",
|
|||
|
|
" 2021-11-09 22:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2489.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-10 14:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2469.00 | Comm: 0.00 | PnL: 20.00\n",
|
|||
|
|
" 2021-11-10 21:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2532.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-11 21:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2644.00 | Comm: 0.00 | PnL: 112.00\n",
|
|||
|
|
" 2021-11-12 09:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2638.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-12 14:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2549.00 | Comm: 0.00 | PnL: 89.00\n",
|
|||
|
|
" 2021-11-12 22:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2489.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-12 22:45:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2523.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2021-11-16 10:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2545.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-16 13:30:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2556.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2021-11-19 09:45:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2638.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-19 14:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2664.00 | Comm: 0.00 | PnL: 26.00\n",
|
|||
|
|
" 2021-11-19 14:30:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2722.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-19 21:00:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2655.00 | Comm: 0.00 | PnL: -67.00\n",
|
|||
|
|
" 2021-11-22 14:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2687.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-22 22:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2692.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2021-11-23 09:15:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2669.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-23 10:00:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2702.00 | Comm: 0.00 | PnL: -33.00\n",
|
|||
|
|
" 2021-11-23 22:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2643.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-24 09:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2682.00 | Comm: 0.00 | PnL: -39.00\n",
|
|||
|
|
" 2021-11-25 13:45:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2654.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-26 09:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2620.00 | Comm: 0.00 | PnL: 34.00\n",
|
|||
|
|
" 2021-11-26 21:00:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2520.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-26 21:15:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2545.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2021-11-29 21:15:00 | BUY | CZCE.SA201 | Vol: 1 | Price: 2655.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-29 22:15:00 | CLOSE_LONG | CZCE.SA201 | Vol: 1 | Price: 2648.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2021-11-30 13:30:00 | SELL | CZCE.SA201 | Vol: 1 | Price: 2594.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-11-30 14:30:00 | CLOSE_SHORT | CZCE.SA201 | Vol: 1 | Price: 2617.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2021-11-30 21:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2454.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-01 09:15:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2473.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-12-01 14:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2593.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-01 21:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2604.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2021-12-03 09:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2519.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-03 13:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2506.00 | Comm: 0.00 | PnL: 13.00\n",
|
|||
|
|
" 2021-12-03 22:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2527.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-07 10:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2584.00 | Comm: 0.00 | PnL: 57.00\n",
|
|||
|
|
" 2021-12-07 14:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2557.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-09 10:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2273.00 | Comm: 0.00 | PnL: 284.00\n",
|
|||
|
|
" 2021-12-10 14:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2208.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-10 14:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2235.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2021-12-13 11:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2247.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-13 22:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2272.00 | Comm: 0.00 | PnL: 25.00\n",
|
|||
|
|
" 2021-12-14 10:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2315.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-14 21:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2292.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2021-12-15 09:45:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2284.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-15 21:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2242.00 | Comm: 0.00 | PnL: 42.00\n",
|
|||
|
|
" 2021-12-16 14:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2336.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-17 21:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2359.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2021-12-20 10:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2326.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-20 21:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2315.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2021-12-21 10:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2344.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-21 21:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2325.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2021-12-22 09:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2358.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-22 10:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2332.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2021-12-23 22:45:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2307.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-24 13:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2312.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2021-12-28 09:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2317.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-28 10:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2302.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2021-12-29 22:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2263.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-30 11:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2269.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2021-12-30 14:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2237.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-30 22:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2235.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2021-12-31 10:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2216.00 | Comm: 0.00\n",
|
|||
|
|
" 2021-12-31 11:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2216.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2022-01-04 09:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2192.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-04 10:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2197.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2022-01-05 09:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2244.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-05 10:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2232.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-01-06 11:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2274.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-07 14:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2325.00 | Comm: 0.00 | PnL: 51.00\n",
|
|||
|
|
" 2022-01-07 21:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2357.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-10 09:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2367.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2022-01-10 21:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2414.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-11 22:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2473.00 | Comm: 0.00 | PnL: 59.00\n",
|
|||
|
|
" 2022-01-13 14:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2476.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-13 21:15:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2490.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2022-01-14 09:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2541.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-14 21:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2572.00 | Comm: 0.00 | PnL: 31.00\n",
|
|||
|
|
" 2022-01-17 10:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2536.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-17 14:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2564.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-01-18 11:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2565.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-18 13:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2537.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-01-20 21:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2619.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-21 09:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2643.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2022-01-21 13:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2695.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-21 21:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2697.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2022-01-24 14:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2694.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-24 21:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2677.00 | Comm: 0.00 | PnL: 17.00\n",
|
|||
|
|
" 2022-01-24 22:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2647.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-25 09:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2668.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2022-01-25 13:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2702.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-25 14:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2702.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2022-01-26 21:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2790.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-27 09:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2784.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2022-01-27 13:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2835.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-28 09:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2860.00 | Comm: 0.00 | PnL: 25.00\n",
|
|||
|
|
" 2022-01-28 14:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2834.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-01-28 14:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2864.00 | Comm: 0.00 | PnL: -30.00\n",
|
|||
|
|
" 2022-02-08 22:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2946.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-09 11:15:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2948.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2022-02-09 21:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2985.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-10 21:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 3119.00 | Comm: 0.00 | PnL: 134.00\n",
|
|||
|
|
" 2022-02-11 14:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 3040.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-14 09:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2920.00 | Comm: 0.00 | PnL: 120.00\n",
|
|||
|
|
" 2022-02-14 21:45:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2840.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-15 11:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2865.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2022-02-15 13:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2808.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-15 14:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2836.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-02-15 21:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2866.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-15 22:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2864.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2022-02-16 22:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2831.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-17 21:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2781.00 | Comm: 0.00 | PnL: 50.00\n",
|
|||
|
|
" 2022-02-18 09:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2753.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-18 09:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2785.00 | Comm: 0.00 | PnL: -32.00\n",
|
|||
|
|
" 2022-02-18 13:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2843.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-18 14:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2817.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2022-02-21 14:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2874.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-22 09:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2901.00 | Comm: 0.00 | PnL: 27.00\n",
|
|||
|
|
" 2022-02-23 09:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2843.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-23 13:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2879.00 | Comm: 0.00 | PnL: -36.00\n",
|
|||
|
|
" 2022-02-24 13:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2814.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-24 21:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2813.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2022-02-24 22:45:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2754.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-02-25 21:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2626.00 | Comm: 0.00 | PnL: 128.00\n",
|
|||
|
|
" 2022-02-28 21:45:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2567.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-01 09:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2567.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2022-03-01 11:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2592.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-01 14:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2582.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2022-03-02 09:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2672.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-02 11:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2669.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2022-03-04 21:15:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2736.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-07 10:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2785.00 | Comm: 0.00 | PnL: 49.00\n",
|
|||
|
|
" 2022-03-07 21:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2684.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-07 22:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2593.00 | Comm: 0.00 | PnL: 91.00\n",
|
|||
|
|
" 2022-03-08 22:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2585.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-09 09:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2626.00 | Comm: 0.00 | PnL: -41.00\n",
|
|||
|
|
" 2022-03-09 10:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2588.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-09 21:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2540.00 | Comm: 0.00 | PnL: 48.00\n",
|
|||
|
|
" 2022-03-09 22:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2592.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-10 14:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2646.00 | Comm: 0.00 | PnL: 54.00\n",
|
|||
|
|
" 2022-03-11 09:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2626.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-11 11:00:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2611.00 | Comm: 0.00 | PnL: 15.00\n",
|
|||
|
|
" 2022-03-11 14:15:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2574.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-14 09:45:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2495.00 | Comm: 0.00 | PnL: 79.00\n",
|
|||
|
|
" 2022-03-14 14:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2440.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-14 21:15:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2474.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2022-03-15 10:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2519.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-15 13:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2487.00 | Comm: 0.00 | PnL: -32.00\n",
|
|||
|
|
" 2022-03-17 09:00:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2420.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-17 10:30:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2443.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2022-03-18 11:00:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2484.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-18 21:15:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2494.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2022-03-18 21:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2535.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-21 09:30:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2503.00 | Comm: 0.00 | PnL: -32.00\n",
|
|||
|
|
" 2022-03-21 13:30:00 | SELL | CZCE.SA205 | Vol: 1 | Price: 2445.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-22 09:15:00 | CLOSE_SHORT | CZCE.SA205 | Vol: 1 | Price: 2476.00 | Comm: 0.00 | PnL: -31.00\n",
|
|||
|
|
" 2022-03-23 13:45:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2548.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-24 10:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2620.00 | Comm: 0.00 | PnL: 72.00\n",
|
|||
|
|
" 2022-03-24 21:30:00 | BUY | CZCE.SA205 | Vol: 1 | Price: 2683.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-25 13:45:00 | CLOSE_LONG | CZCE.SA205 | Vol: 1 | Price: 2751.00 | Comm: 0.00 | PnL: 68.00\n",
|
|||
|
|
" 2022-03-29 09:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2888.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-29 11:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2919.00 | Comm: 0.00 | PnL: -31.00\n",
|
|||
|
|
" 2022-03-29 11:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2963.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-29 21:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2938.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2022-03-29 22:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3007.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-30 22:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3026.00 | Comm: 0.00 | PnL: 19.00\n",
|
|||
|
|
" 2022-03-31 11:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2976.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-31 11:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3008.00 | Comm: 0.00 | PnL: -32.00\n",
|
|||
|
|
" 2022-03-31 22:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2967.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-03-31 22:45:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2992.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2022-04-01 09:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3038.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-01 11:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3026.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-04-06 21:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2945.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-07 09:45:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2938.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2022-04-08 13:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2931.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-08 21:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2946.00 | Comm: 0.00 | PnL: 15.00\n",
|
|||
|
|
" 2022-04-11 22:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3004.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-12 21:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3095.00 | Comm: 0.00 | PnL: 91.00\n",
|
|||
|
|
" 2022-04-14 13:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3167.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-14 14:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3153.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2022-04-15 21:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3119.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-15 22:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3137.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2022-04-18 10:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3180.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-19 09:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3236.00 | Comm: 0.00 | PnL: 56.00\n",
|
|||
|
|
" 2022-04-19 22:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3202.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-20 09:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3212.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2022-04-20 11:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3248.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-20 13:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3198.00 | Comm: 0.00 | PnL: -50.00\n",
|
|||
|
|
" 2022-04-20 14:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3127.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-21 09:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3119.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2022-04-21 21:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3113.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-22 09:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3085.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-04-22 10:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3108.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-22 21:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3103.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2022-04-25 09:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3017.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-26 09:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2865.00 | Comm: 0.00 | PnL: 152.00\n",
|
|||
|
|
" 2022-04-27 09:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2969.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-27 13:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2952.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2022-04-28 21:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3010.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-04-28 21:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2986.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2022-05-05 11:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3003.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-05 22:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3039.00 | Comm: 0.00 | PnL: 36.00\n",
|
|||
|
|
" 2022-05-06 11:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3017.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-09 09:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2951.00 | Comm: 0.00 | PnL: 66.00\n",
|
|||
|
|
" 2022-05-09 11:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3013.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-09 11:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2985.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-05-09 21:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2866.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-10 10:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2743.00 | Comm: 0.00 | PnL: 123.00\n",
|
|||
|
|
" 2022-05-11 09:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2838.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-11 22:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2835.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2022-05-12 10:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2802.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-12 14:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2797.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2022-05-13 14:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2811.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-16 10:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2835.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2022-05-17 09:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2914.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-17 09:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2889.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2022-05-19 10:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2868.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-20 11:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2981.00 | Comm: 0.00 | PnL: 113.00\n",
|
|||
|
|
" 2022-05-23 09:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2946.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-23 14:45:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2921.00 | Comm: 0.00 | PnL: 25.00\n",
|
|||
|
|
" 2022-05-24 21:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2946.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-24 22:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2931.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-05-25 10:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2965.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-25 14:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2939.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2022-05-25 21:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2984.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-25 21:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2947.00 | Comm: 0.00 | PnL: -37.00\n",
|
|||
|
|
" 2022-05-26 14:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2998.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-27 14:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3042.00 | Comm: 0.00 | PnL: 44.00\n",
|
|||
|
|
" 2022-05-31 09:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3127.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-05-31 09:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3109.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2022-06-02 14:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3114.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-06 09:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3095.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2022-06-06 14:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3067.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-06 21:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3058.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2022-06-08 21:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3154.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-09 09:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3132.00 | Comm: 0.00 | PnL: -22.00\n",
|
|||
|
|
" 2022-06-09 14:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3067.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-09 14:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3090.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2022-06-09 21:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 3040.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-10 11:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 3023.00 | Comm: 0.00 | PnL: 17.00\n",
|
|||
|
|
" 2022-06-13 09:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 3030.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-13 22:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 3000.00 | Comm: 0.00 | PnL: -30.00\n",
|
|||
|
|
" 2022-06-14 09:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2956.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-14 14:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2912.00 | Comm: 0.00 | PnL: 44.00\n",
|
|||
|
|
" 2022-06-16 21:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2843.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-16 22:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2850.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2022-06-20 21:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2775.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-20 22:45:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2779.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2022-06-22 09:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2760.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-22 21:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2700.00 | Comm: 0.00 | PnL: 60.00\n",
|
|||
|
|
" 2022-06-23 14:00:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2743.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-23 22:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2746.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2022-06-27 09:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2764.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-27 22:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2754.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2022-06-28 09:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2800.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-28 09:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2780.00 | Comm: 0.00 | PnL: -20.00\n",
|
|||
|
|
" 2022-06-28 14:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2832.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-06-28 22:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2845.00 | Comm: 0.00 | PnL: 13.00\n",
|
|||
|
|
" 2022-06-30 22:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2807.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-01 09:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2833.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2022-07-01 09:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2801.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-01 10:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2825.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2022-07-01 13:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2790.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-01 14:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2774.00 | Comm: 0.00 | PnL: 16.00\n",
|
|||
|
|
" 2022-07-01 21:45:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2739.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-04 10:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2730.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2022-07-05 21:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2639.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-06 09:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2643.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2022-07-07 10:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2685.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-07 13:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2694.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2022-07-08 11:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2656.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-11 14:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2507.00 | Comm: 0.00 | PnL: 149.00\n",
|
|||
|
|
" 2022-07-12 21:00:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2430.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-13 09:00:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2456.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2022-07-13 14:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2493.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-13 21:00:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2452.00 | Comm: 0.00 | PnL: -41.00\n",
|
|||
|
|
" 2022-07-15 21:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2510.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-18 09:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2521.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2022-07-18 14:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2555.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-19 09:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2560.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2022-07-19 11:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2503.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-19 22:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2463.00 | Comm: 0.00 | PnL: 40.00\n",
|
|||
|
|
" 2022-07-20 10:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2520.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-20 13:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2490.00 | Comm: 0.00 | PnL: -30.00\n",
|
|||
|
|
" 2022-07-21 10:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2466.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-21 14:45:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2487.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2022-07-22 09:45:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2534.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-22 13:30:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2534.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2022-07-25 13:30:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2510.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-25 14:30:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2512.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2022-07-26 10:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2589.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-26 11:15:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2561.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-07-28 09:15:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2600.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-28 09:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2576.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2022-07-28 22:30:00 | BUY | CZCE.SA209 | Vol: 1 | Price: 2634.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-07-29 09:45:00 | CLOSE_LONG | CZCE.SA209 | Vol: 1 | Price: 2645.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2022-08-01 11:15:00 | SELL | CZCE.SA209 | Vol: 1 | Price: 2606.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-01 21:15:00 | CLOSE_SHORT | CZCE.SA209 | Vol: 1 | Price: 2600.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2022-08-02 21:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2400.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-03 09:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2391.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2022-08-04 09:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2332.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-04 10:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2351.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2022-08-04 14:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2317.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-04 22:15:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2258.00 | Comm: 0.00 | PnL: 59.00\n",
|
|||
|
|
" 2022-08-08 14:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2384.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-08 22:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2384.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2022-08-10 09:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2331.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-10 21:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2342.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2022-08-10 22:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2299.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-11 09:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2335.00 | Comm: 0.00 | PnL: -36.00\n",
|
|||
|
|
" 2022-08-11 13:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2374.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-12 09:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2375.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2022-08-15 09:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2421.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-15 10:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2396.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2022-08-16 21:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2332.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-17 11:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2321.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2022-08-17 14:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2295.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-17 21:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2298.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2022-08-18 13:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2328.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-18 14:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2312.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2022-08-18 22:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2270.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-18 22:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2284.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2022-08-18 22:45:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2268.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-19 21:15:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2246.00 | Comm: 0.00 | PnL: 22.00\n",
|
|||
|
|
" 2022-08-22 11:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2349.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-22 22:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2341.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2022-08-22 22:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2373.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-23 13:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2377.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2022-08-24 21:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2396.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-24 22:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2417.00 | Comm: 0.00 | PnL: 21.00\n",
|
|||
|
|
" 2022-08-25 14:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2371.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-25 21:15:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2389.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2022-08-25 22:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2369.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-26 09:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2388.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2022-08-26 13:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2412.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-26 21:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2399.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-08-29 14:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2353.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-29 14:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2376.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2022-08-30 11:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2348.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-08-30 21:15:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2355.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2022-08-31 22:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2350.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-01 09:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2365.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-09-01 14:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2325.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-01 21:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2315.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2022-09-02 09:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2290.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-02 11:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2302.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-09-05 13:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2337.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-05 21:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2340.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2022-09-06 14:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2290.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-07 10:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2270.00 | Comm: 0.00 | PnL: 20.00\n",
|
|||
|
|
" 2022-09-07 14:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2293.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-07 14:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2279.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2022-09-08 13:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2296.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-08 14:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2272.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2022-09-09 10:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2304.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-09 11:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2298.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2022-09-14 09:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2307.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-14 10:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2319.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-09-14 11:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2310.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-14 21:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2305.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2022-09-16 13:45:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2270.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-16 14:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2282.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-09-16 21:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2309.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-19 14:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2312.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2022-09-20 11:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2332.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-20 14:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2321.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2022-09-21 09:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2290.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-21 10:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2303.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-09-21 22:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2362.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-23 09:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2388.00 | Comm: 0.00 | PnL: 26.00\n",
|
|||
|
|
" 2022-09-26 21:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2432.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-27 09:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2417.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-09-27 14:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2443.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-27 21:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2469.00 | Comm: 0.00 | PnL: 26.00\n",
|
|||
|
|
" 2022-09-29 21:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2511.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-09-29 21:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2496.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-09-30 14:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2517.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-10 09:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2481.00 | Comm: 0.00 | PnL: -36.00\n",
|
|||
|
|
" 2022-10-11 10:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2512.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-12 09:15:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2495.00 | Comm: 0.00 | PnL: 17.00\n",
|
|||
|
|
" 2022-10-12 09:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2509.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-12 10:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2490.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2022-10-12 14:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2514.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-12 14:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2506.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2022-10-13 21:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2475.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-14 09:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2488.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-10-17 09:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2471.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-17 11:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2464.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2022-10-17 14:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2483.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-17 22:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2470.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-10-18 10:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2440.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-18 14:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2451.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2022-10-19 14:30:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2443.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-19 22:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2437.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2022-10-20 10:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2456.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-20 14:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2446.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2022-10-21 22:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2465.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-24 09:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2454.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2022-10-24 14:00:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2398.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-25 09:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2394.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2022-10-25 22:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2403.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-26 11:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2407.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2022-10-27 09:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2439.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-27 09:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2427.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-10-27 21:45:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2402.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-28 14:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2379.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2022-10-28 21:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2359.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-10-31 21:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2307.00 | Comm: 0.00 | PnL: 52.00\n",
|
|||
|
|
" 2022-11-01 14:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2356.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-01 21:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2338.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2022-11-02 09:45:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2320.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-02 11:00:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2321.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2022-11-03 21:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2304.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-03 21:45:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2325.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2022-11-04 09:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2340.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-07 09:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2382.00 | Comm: 0.00 | PnL: 42.00\n",
|
|||
|
|
" 2022-11-07 22:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2432.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-08 22:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2473.00 | Comm: 0.00 | PnL: 41.00\n",
|
|||
|
|
" 2022-11-09 21:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2495.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-10 09:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2484.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2022-11-10 10:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2503.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-10 13:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2511.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2022-11-11 14:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2538.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-11 14:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2522.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2022-11-14 09:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2559.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-14 09:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2544.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-11-15 10:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2543.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-15 13:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2522.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2022-11-15 21:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2554.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-16 21:00:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2577.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2022-11-18 21:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2608.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-18 22:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2602.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2022-11-21 21:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2625.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-22 14:30:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2611.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2022-11-23 14:30:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2633.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-24 21:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2671.00 | Comm: 0.00 | PnL: 38.00\n",
|
|||
|
|
" 2022-11-25 10:00:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2706.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-25 11:15:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2691.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2022-11-28 10:45:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2719.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-28 13:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2700.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2022-11-29 21:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2682.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-11-29 22:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2694.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2022-11-30 21:15:00 | BUY | CZCE.SA301 | Vol: 1 | Price: 2712.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-01 10:45:00 | CLOSE_LONG | CZCE.SA301 | Vol: 1 | Price: 2722.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2022-12-01 21:15:00 | SELL | CZCE.SA301 | Vol: 1 | Price: 2708.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-01 22:30:00 | CLOSE_SHORT | CZCE.SA301 | Vol: 1 | Price: 2718.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2022-12-02 21:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2607.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-02 22:45:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2605.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2022-12-05 14:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2559.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-06 09:30:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2515.00 | Comm: 0.00 | PnL: 44.00\n",
|
|||
|
|
" 2022-12-07 14:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2512.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-07 21:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2525.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-12-08 14:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2553.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-12 09:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2647.00 | Comm: 0.00 | PnL: 94.00\n",
|
|||
|
|
" 2022-12-12 21:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2676.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-13 09:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2648.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2022-12-14 21:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2686.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-15 10:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2709.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2022-12-15 14:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2739.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-16 09:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2770.00 | Comm: 0.00 | PnL: 31.00\n",
|
|||
|
|
" 2022-12-16 21:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2732.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-19 09:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2709.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2022-12-19 10:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2674.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-19 21:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2678.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2022-12-20 09:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2735.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-20 10:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2730.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2022-12-21 22:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2686.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-22 09:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2715.00 | Comm: 0.00 | PnL: -29.00\n",
|
|||
|
|
" 2022-12-22 14:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2669.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-22 22:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2639.00 | Comm: 0.00 | PnL: 30.00\n",
|
|||
|
|
" 2022-12-23 21:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2661.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-26 09:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2638.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2022-12-26 11:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2675.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-26 14:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2685.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2022-12-27 11:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2739.00 | Comm: 0.00\n",
|
|||
|
|
" 2022-12-27 21:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2726.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2022-12-30 09:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2717.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-03 09:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2675.00 | Comm: 0.00 | PnL: -42.00\n",
|
|||
|
|
" 2023-01-11 13:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2827.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-11 22:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2870.00 | Comm: 0.00 | PnL: 43.00\n",
|
|||
|
|
" 2023-01-12 21:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2911.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-13 10:30:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2922.00 | Comm: 0.00 | PnL: 11.00\n",
|
|||
|
|
" 2023-01-16 10:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2901.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-16 14:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2910.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2023-01-17 22:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2951.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-18 09:30:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2955.00 | Comm: 0.00 | PnL: 4.00\n",
|
|||
|
|
" 2023-01-18 21:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2990.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-18 21:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2969.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2023-01-19 21:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 3002.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-19 22:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2995.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2023-01-30 22:30:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2964.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-01-31 09:45:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2971.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2023-01-31 10:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2996.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-01 10:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 3028.00 | Comm: 0.00 | PnL: 32.00\n",
|
|||
|
|
" 2023-02-01 14:30:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 3001.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-02 09:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 3002.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2023-02-02 10:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 3022.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-02 13:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 3009.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2023-02-03 09:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2966.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-03 11:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2949.00 | Comm: 0.00 | PnL: 17.00\n",
|
|||
|
|
" 2023-02-03 13:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2989.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-03 21:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2986.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2023-02-06 13:30:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2923.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-06 14:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2941.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-02-07 09:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2911.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-07 14:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2913.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2023-02-08 10:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2963.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-08 11:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2938.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2023-02-10 09:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2894.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-10 14:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2899.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2023-02-13 09:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2862.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-13 09:30:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2880.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-02-13 10:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2893.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-13 13:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2894.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2023-02-14 09:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2914.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-14 13:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2904.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-02-14 14:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2936.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-15 10:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2933.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2023-02-15 14:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2878.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-16 09:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2890.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2023-02-16 11:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2915.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-16 14:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2914.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2023-02-16 22:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2933.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-17 11:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2920.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2023-02-17 21:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2874.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-17 22:15:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2884.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-02-21 10:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2941.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-21 21:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2967.00 | Comm: 0.00 | PnL: 26.00\n",
|
|||
|
|
" 2023-02-23 21:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2958.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-23 21:45:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2964.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2023-02-23 22:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2935.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-24 21:30:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2925.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2023-02-27 21:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2921.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-28 09:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2910.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2023-02-28 10:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2936.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-02-28 11:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2915.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2023-03-01 10:30:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2953.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-01 13:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2958.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2023-03-02 14:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2968.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-02 21:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2960.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2023-03-03 14:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2984.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-03 21:15:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2971.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2023-03-06 10:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2918.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-06 11:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2930.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2023-03-07 09:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2938.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-07 11:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2940.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2023-03-09 14:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2912.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-10 09:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2930.00 | Comm: 0.00 | PnL: 18.00\n",
|
|||
|
|
" 2023-03-10 14:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2900.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-10 21:45:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2918.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-03-13 14:30:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2875.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-13 21:30:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2857.00 | Comm: 0.00 | PnL: 18.00\n",
|
|||
|
|
" 2023-03-14 21:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2859.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-15 10:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2854.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2023-03-16 09:15:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2829.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-16 13:30:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2820.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2023-03-16 21:45:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2795.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-17 09:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2823.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2023-03-17 09:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2826.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-17 14:00:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2832.00 | Comm: 0.00 | PnL: 6.00\n",
|
|||
|
|
" 2023-03-21 14:00:00 | SELL | CZCE.SA305 | Vol: 1 | Price: 2808.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-21 21:00:00 | CLOSE_SHORT | CZCE.SA305 | Vol: 1 | Price: 2818.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-03-22 14:45:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2832.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-23 13:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2828.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2023-03-24 09:00:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2844.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-24 09:30:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2833.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2023-03-24 14:15:00 | BUY | CZCE.SA305 | Vol: 1 | Price: 2878.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-24 14:45:00 | CLOSE_LONG | CZCE.SA305 | Vol: 1 | Price: 2873.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2023-03-24 21:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2485.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-24 21:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2508.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2023-03-28 21:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2488.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-28 22:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2504.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2023-03-28 22:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2484.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-29 21:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2465.00 | Comm: 0.00 | PnL: 19.00\n",
|
|||
|
|
" 2023-03-31 11:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2484.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-03-31 11:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2467.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2023-04-03 11:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2437.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-04 09:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2435.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2023-04-10 11:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2396.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-11 14:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2346.00 | Comm: 0.00 | PnL: 50.00\n",
|
|||
|
|
" 2023-04-14 09:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2349.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-14 11:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2357.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2023-04-17 11:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2385.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-17 13:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2368.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2023-04-19 09:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2394.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-19 11:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2379.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2023-04-19 21:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2291.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-20 11:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2217.00 | Comm: 0.00 | PnL: 74.00\n",
|
|||
|
|
" 2023-04-24 09:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2212.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-25 09:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2146.00 | Comm: 0.00 | PnL: 66.00\n",
|
|||
|
|
" 2023-04-25 22:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2102.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-25 22:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2129.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2023-04-26 09:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2138.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-04-26 13:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2150.00 | Comm: 0.00 | PnL: 12.00\n",
|
|||
|
|
" 2023-04-28 14:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2092.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-04 10:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2069.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2023-05-05 10:45:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2016.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-05 11:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2032.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2023-05-08 10:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2005.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-08 13:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2026.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2023-05-08 14:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2032.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-08 21:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2056.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2023-05-09 13:45:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2021.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-09 22:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2008.00 | Comm: 0.00 | PnL: 13.00\n",
|
|||
|
|
" 2023-05-10 11:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1980.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-10 11:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1994.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2023-05-10 13:45:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1978.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-10 21:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1986.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2023-05-10 22:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1967.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-11 09:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1946.00 | Comm: 0.00 | PnL: 21.00\n",
|
|||
|
|
" 2023-05-11 14:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1924.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-12 14:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1903.00 | Comm: 0.00 | PnL: 21.00\n",
|
|||
|
|
" 2023-05-12 21:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1896.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-15 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1874.00 | Comm: 0.00 | PnL: -22.00\n",
|
|||
|
|
" 2023-05-15 11:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1846.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-15 21:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1860.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2023-05-17 14:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1815.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-17 21:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1830.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2023-05-18 21:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1782.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-19 10:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1747.00 | Comm: 0.00 | PnL: 35.00\n",
|
|||
|
|
" 2023-05-22 09:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1681.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-22 22:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1626.00 | Comm: 0.00 | PnL: 55.00\n",
|
|||
|
|
" 2023-05-23 09:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1590.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-23 09:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1616.00 | Comm: 0.00 | PnL: -26.00\n",
|
|||
|
|
" 2023-05-24 11:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1624.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-24 21:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1608.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2023-05-24 21:45:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1605.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-25 13:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1575.00 | Comm: 0.00 | PnL: 30.00\n",
|
|||
|
|
" 2023-05-26 13:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1630.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-26 14:00:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1613.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2023-05-26 21:45:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1638.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-29 13:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1684.00 | Comm: 0.00 | PnL: 46.00\n",
|
|||
|
|
" 2023-05-30 11:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1652.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-05-31 09:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1579.00 | Comm: 0.00 | PnL: 73.00\n",
|
|||
|
|
" 2023-05-31 22:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1649.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-01 09:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1631.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-06-01 22:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1677.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-02 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1666.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2023-06-02 11:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1694.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-02 21:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1702.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2023-06-05 10:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1674.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-05 13:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1676.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2023-06-07 10:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1634.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-07 21:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1640.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2023-06-08 09:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1663.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-08 10:00:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1654.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2023-06-09 14:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1657.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-12 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1644.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2023-06-12 11:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1620.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-13 09:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1613.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2023-06-13 09:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1622.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-14 14:00:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1704.00 | Comm: 0.00 | PnL: 82.00\n",
|
|||
|
|
" 2023-06-15 09:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1667.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-15 13:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1671.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2023-06-15 14:45:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1682.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-16 10:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1711.00 | Comm: 0.00 | PnL: 29.00\n",
|
|||
|
|
" 2023-06-16 21:15:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1674.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-16 22:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1697.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2023-06-20 22:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1683.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-21 09:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1690.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2023-06-26 09:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1646.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-26 09:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1668.00 | Comm: 0.00 | PnL: -22.00\n",
|
|||
|
|
" 2023-06-26 10:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1665.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-26 13:45:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1670.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2023-06-26 14:45:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1686.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-26 21:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1666.00 | Comm: 0.00 | PnL: -20.00\n",
|
|||
|
|
" 2023-06-28 09:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1639.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-28 14:00:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1630.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2023-06-28 21:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1647.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-29 11:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1671.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2023-06-29 21:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1689.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-30 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1685.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2023-06-30 13:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1711.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-06-30 14:00:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1699.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2023-07-03 21:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1709.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-03 21:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1696.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2023-07-04 13:30:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1678.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-04 14:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1695.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2023-07-06 10:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1704.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-06 10:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1689.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2023-07-07 11:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1715.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-07 14:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1706.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2023-07-10 21:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1744.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-11 13:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1800.00 | Comm: 0.00 | PnL: 56.00\n",
|
|||
|
|
" 2023-07-12 14:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1830.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-13 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1823.00 | Comm: 0.00 | PnL: -7.00\n",
|
|||
|
|
" 2023-07-13 21:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1850.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-14 09:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1839.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2023-07-17 21:00:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 1813.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-17 22:15:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 1810.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2023-07-18 09:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1821.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-18 22:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1835.00 | Comm: 0.00 | PnL: 14.00\n",
|
|||
|
|
" 2023-07-19 10:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1860.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-19 10:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1848.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2023-07-19 14:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1873.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-19 22:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1941.00 | Comm: 0.00 | PnL: 68.00\n",
|
|||
|
|
" 2023-07-20 14:00:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1973.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-21 13:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 1976.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2023-07-24 10:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 1999.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-24 14:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2008.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2023-07-25 21:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2055.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-26 13:30:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2135.00 | Comm: 0.00 | PnL: 80.00\n",
|
|||
|
|
" 2023-07-27 11:15:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2200.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-27 14:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2161.00 | Comm: 0.00 | PnL: -39.00\n",
|
|||
|
|
" 2023-07-27 21:45:00 | SELL | CZCE.SA309 | Vol: 1 | Price: 2147.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-07-28 14:30:00 | CLOSE_SHORT | CZCE.SA309 | Vol: 1 | Price: 2083.00 | Comm: 0.00 | PnL: 64.00\n",
|
|||
|
|
" 2023-08-01 13:30:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2115.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-02 11:15:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2110.00 | Comm: 0.00 | PnL: -5.00\n",
|
|||
|
|
" 2023-08-02 14:45:00 | BUY | CZCE.SA309 | Vol: 1 | Price: 2141.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-02 14:45:00 | CLOSE_LONG | CZCE.SA309 | Vol: 1 | Price: 2140.00 | Comm: 0.00 | PnL: -1.00\n",
|
|||
|
|
" 2023-08-02 21:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1658.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-04 09:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1603.00 | Comm: 0.00 | PnL: 55.00\n",
|
|||
|
|
" 2023-08-04 14:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1586.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-04 21:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1548.00 | Comm: 0.00 | PnL: -38.00\n",
|
|||
|
|
" 2023-08-04 21:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1543.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-07 21:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1538.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2023-08-08 21:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1539.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-09 11:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1546.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2023-08-10 21:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1578.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-11 10:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1580.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2023-08-11 21:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1615.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-11 22:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1606.00 | Comm: 0.00 | PnL: -9.00\n",
|
|||
|
|
" 2023-08-14 11:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1571.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-14 14:45:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1577.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2023-08-16 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1609.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-17 21:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1690.00 | Comm: 0.00 | PnL: 81.00\n",
|
|||
|
|
" 2023-08-21 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1899.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-21 21:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1850.00 | Comm: 0.00 | PnL: -49.00\n",
|
|||
|
|
" 2023-08-23 22:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1892.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-24 14:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1940.00 | Comm: 0.00 | PnL: 48.00\n",
|
|||
|
|
" 2023-08-25 22:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1924.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-28 09:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1959.00 | Comm: 0.00 | PnL: -35.00\n",
|
|||
|
|
" 2023-08-28 21:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1848.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-29 21:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1793.00 | Comm: 0.00 | PnL: 55.00\n",
|
|||
|
|
" 2023-08-30 11:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1863.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-30 14:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1853.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-08-30 21:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1893.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-30 21:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1875.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-08-30 21:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1908.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-08-30 22:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1887.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2023-08-31 21:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1923.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-01 21:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2045.00 | Comm: 0.00 | PnL: 122.00\n",
|
|||
|
|
" 2023-09-04 14:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1936.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-04 21:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1918.00 | Comm: 0.00 | PnL: 18.00\n",
|
|||
|
|
" 2023-09-05 13:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1967.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-05 14:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1942.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2023-09-06 09:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1922.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-06 14:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1914.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2023-09-06 21:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1866.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-06 22:30:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1890.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2023-09-07 10:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1846.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-07 14:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1862.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2023-09-08 09:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1877.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-08 10:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1857.00 | Comm: 0.00 | PnL: -20.00\n",
|
|||
|
|
" 2023-09-08 21:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1801.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-11 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1825.00 | Comm: 0.00 | PnL: -24.00\n",
|
|||
|
|
" 2023-09-12 14:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1810.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-13 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1788.00 | Comm: 0.00 | PnL: 22.00\n",
|
|||
|
|
" 2023-09-13 14:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1780.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-13 22:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1793.00 | Comm: 0.00 | PnL: 13.00\n",
|
|||
|
|
" 2023-09-14 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1820.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-15 09:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1829.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2023-09-18 10:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1854.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-18 21:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1856.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2023-09-19 09:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1892.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-19 10:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1902.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2023-09-20 21:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1819.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-21 10:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1838.00 | Comm: 0.00 | PnL: -19.00\n",
|
|||
|
|
" 2023-09-22 10:30:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1862.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-22 13:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1846.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2023-09-22 22:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1875.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-25 09:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1840.00 | Comm: 0.00 | PnL: -35.00\n",
|
|||
|
|
" 2023-09-25 13:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1805.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-25 21:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1809.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2023-09-26 10:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1819.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-26 11:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1805.00 | Comm: 0.00 | PnL: -14.00\n",
|
|||
|
|
" 2023-09-26 21:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1816.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-27 10:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1806.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-09-27 21:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1777.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-09-28 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1802.00 | Comm: 0.00 | PnL: -25.00\n",
|
|||
|
|
" 2023-10-09 09:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1725.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-09 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1752.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2023-10-09 21:45:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1716.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-10 13:45:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1691.00 | Comm: 0.00 | PnL: 25.00\n",
|
|||
|
|
" 2023-10-12 14:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1719.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-12 21:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1713.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2023-10-17 09:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1707.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-17 11:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1725.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-10-18 14:45:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1695.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-18 21:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1705.00 | Comm: 0.00 | PnL: -10.00\n",
|
|||
|
|
" 2023-10-19 10:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1727.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-19 14:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1730.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2023-10-20 21:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1692.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-23 14:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1677.00 | Comm: 0.00 | PnL: 15.00\n",
|
|||
|
|
" 2023-10-25 22:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1680.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-26 09:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1677.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
" 2023-10-26 09:45:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1662.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-26 10:45:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1666.00 | Comm: 0.00 | PnL: -4.00\n",
|
|||
|
|
" 2023-10-26 11:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1654.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-26 13:45:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1666.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2023-10-27 14:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1691.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-30 10:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1743.00 | Comm: 0.00 | PnL: 52.00\n",
|
|||
|
|
" 2023-10-31 11:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 1714.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-10-31 13:45:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 1725.00 | Comm: 0.00 | PnL: -11.00\n",
|
|||
|
|
" 2023-11-02 22:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1749.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-03 09:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1774.00 | Comm: 0.00 | PnL: 25.00\n",
|
|||
|
|
" 2023-11-06 10:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1836.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-06 22:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1844.00 | Comm: 0.00 | PnL: 8.00\n",
|
|||
|
|
" 2023-11-07 10:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1879.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-07 14:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 1888.00 | Comm: 0.00 | PnL: 9.00\n",
|
|||
|
|
" 2023-11-09 13:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 1949.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-13 10:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2183.00 | Comm: 0.00 | PnL: 234.00\n",
|
|||
|
|
" 2023-11-13 21:00:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 2066.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-14 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 2061.00 | Comm: 0.00 | PnL: 5.00\n",
|
|||
|
|
" 2023-11-15 22:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 2021.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-16 09:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 2038.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2023-11-16 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2077.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-16 22:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2099.00 | Comm: 0.00 | PnL: 22.00\n",
|
|||
|
|
" 2023-11-20 09:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2162.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-20 14:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2178.00 | Comm: 0.00 | PnL: 16.00\n",
|
|||
|
|
" 2023-11-20 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2247.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-20 21:45:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2220.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2023-11-22 13:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2323.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-22 22:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2323.00 | Comm: 0.00 | PnL: 0.00\n",
|
|||
|
|
" 2023-11-23 11:15:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 2304.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-23 14:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 2345.00 | Comm: 0.00 | PnL: -41.00\n",
|
|||
|
|
" 2023-11-24 10:45:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 2285.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-24 14:15:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 2312.00 | Comm: 0.00 | PnL: -27.00\n",
|
|||
|
|
" 2023-11-24 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2363.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-27 21:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2459.00 | Comm: 0.00 | PnL: 96.00\n",
|
|||
|
|
" 2023-11-28 10:30:00 | SELL | CZCE.SA401 | Vol: 1 | Price: 2423.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-11-28 21:00:00 | CLOSE_SHORT | CZCE.SA401 | Vol: 1 | Price: 2344.00 | Comm: 0.00 | PnL: 79.00\n",
|
|||
|
|
" 2023-11-30 14:00:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2450.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-01 10:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2412.00 | Comm: 0.00 | PnL: -38.00\n",
|
|||
|
|
" 2023-12-01 13:45:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2485.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-04 10:00:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2587.00 | Comm: 0.00 | PnL: 102.00\n",
|
|||
|
|
" 2023-12-04 21:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2679.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-05 10:30:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2694.00 | Comm: 0.00 | PnL: 15.00\n",
|
|||
|
|
" 2023-12-05 14:15:00 | BUY | CZCE.SA401 | Vol: 1 | Price: 2763.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-05 21:15:00 | CLOSE_LONG | CZCE.SA401 | Vol: 1 | Price: 2742.00 | Comm: 0.00 | PnL: -21.00\n",
|
|||
|
|
" 2023-12-08 14:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2319.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-11 09:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2285.00 | Comm: 0.00 | PnL: 34.00\n",
|
|||
|
|
" 2023-12-11 11:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2250.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-11 14:00:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2284.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2023-12-11 14:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 2315.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-11 21:00:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 2279.00 | Comm: 0.00 | PnL: -36.00\n",
|
|||
|
|
" 2023-12-13 10:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2252.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-13 14:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2181.00 | Comm: 0.00 | PnL: 71.00\n",
|
|||
|
|
" 2023-12-14 21:30:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 2257.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-15 09:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 2239.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2023-12-15 14:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2208.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-18 10:00:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2184.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2023-12-19 13:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2148.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-19 14:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2141.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2023-12-20 21:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2087.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-21 11:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2085.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2023-12-22 10:00:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 2208.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-22 11:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 2209.00 | Comm: 0.00 | PnL: 1.00\n",
|
|||
|
|
" 2023-12-25 09:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2119.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-25 21:00:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2127.00 | Comm: 0.00 | PnL: -8.00\n",
|
|||
|
|
" 2023-12-27 21:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2055.00 | Comm: 0.00\n",
|
|||
|
|
" 2023-12-28 10:00:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2048.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2023-12-29 14:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2039.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-02 13:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2032.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2024-01-02 21:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1986.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-02 21:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2009.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2024-01-03 09:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 2061.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-03 11:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 2055.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2024-01-04 10:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2016.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-04 14:00:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2009.00 | Comm: 0.00 | PnL: 7.00\n",
|
|||
|
|
" 2024-01-04 21:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1984.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-05 14:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1963.00 | Comm: 0.00 | PnL: 21.00\n",
|
|||
|
|
" 2024-01-08 11:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1919.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-08 13:45:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1936.00 | Comm: 0.00 | PnL: -17.00\n",
|
|||
|
|
" 2024-01-09 21:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1896.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-10 10:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1884.00 | Comm: 0.00 | PnL: 12.00\n",
|
|||
|
|
" 2024-01-10 14:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1851.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-10 21:45:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1849.00 | Comm: 0.00 | PnL: 2.00\n",
|
|||
|
|
" 2024-01-12 21:30:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1812.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-12 22:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1825.00 | Comm: 0.00 | PnL: -13.00\n",
|
|||
|
|
" 2024-01-15 09:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1852.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-15 09:30:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1837.00 | Comm: 0.00 | PnL: -15.00\n",
|
|||
|
|
" 2024-01-15 21:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1873.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-16 14:00:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1897.00 | Comm: 0.00 | PnL: 24.00\n",
|
|||
|
|
" 2024-01-16 21:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1948.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-17 09:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1914.00 | Comm: 0.00 | PnL: -34.00\n",
|
|||
|
|
" 2024-01-17 11:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1893.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-18 09:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1875.00 | Comm: 0.00 | PnL: 18.00\n",
|
|||
|
|
" 2024-01-19 21:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1925.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-23 11:00:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 2123.00 | Comm: 0.00 | PnL: 198.00\n",
|
|||
|
|
" 2024-01-25 22:30:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 2026.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-26 13:45:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2028.00 | Comm: 0.00 | PnL: -2.00\n",
|
|||
|
|
" 2024-01-26 21:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1987.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-29 09:15:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 2015.00 | Comm: 0.00 | PnL: -28.00\n",
|
|||
|
|
" 2024-01-29 21:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 2031.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-30 13:30:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1996.00 | Comm: 0.00 | PnL: -35.00\n",
|
|||
|
|
" 2024-01-30 14:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1954.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-01-31 10:45:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1944.00 | Comm: 0.00 | PnL: 10.00\n",
|
|||
|
|
" 2024-02-19 09:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1866.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-20 13:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1846.00 | Comm: 0.00 | PnL: 20.00\n",
|
|||
|
|
" 2024-02-21 13:45:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1871.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-21 14:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1848.00 | Comm: 0.00 | PnL: -23.00\n",
|
|||
|
|
" 2024-02-22 21:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1868.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-23 09:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1852.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2024-02-26 09:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1792.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-26 13:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1798.00 | Comm: 0.00 | PnL: -6.00\n",
|
|||
|
|
" 2024-02-26 22:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1769.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-27 10:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1785.00 | Comm: 0.00 | PnL: -16.00\n",
|
|||
|
|
" 2024-02-28 10:45:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1767.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-28 22:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1770.00 | Comm: 0.00 | PnL: -3.00\n",
|
|||
|
|
" 2024-02-29 11:15:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1786.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-02-29 14:15:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1774.00 | Comm: 0.00 | PnL: -12.00\n",
|
|||
|
|
" 2024-03-04 21:00:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1833.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-03-05 09:30:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1910.00 | Comm: 0.00 | PnL: 77.00\n",
|
|||
|
|
" 2024-03-06 10:00:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1849.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-03-06 10:45:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1867.00 | Comm: 0.00 | PnL: -18.00\n",
|
|||
|
|
" 2024-03-06 13:45:00 | BUY | CZCE.SA405 | Vol: 1 | Price: 1897.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-03-07 10:00:00 | CLOSE_LONG | CZCE.SA405 | Vol: 1 | Price: 1920.00 | Comm: 0.00 | PnL: 23.00\n",
|
|||
|
|
" 2024-03-08 22:15:00 | SELL | CZCE.SA405 | Vol: 1 | Price: 1901.00 | Comm: 0.00\n",
|
|||
|
|
" 2024-03-11 14:30:00 | CLOSE_SHORT | CZCE.SA405 | Vol: 1 | Price: 1898.00 | Comm: 0.00 | PnL: 3.00\n",
|
|||
|
|
"正在计算绩效指标...\n",
|
|||
|
|
"total_return: 0.028529999999999944, annualized_return:0.0061192583272469125, 252 / total_days:0.21686746987951808\n",
|
|||
|
|
"绩效指标计算完成。\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 回测绩效报告 ---\n",
|
|||
|
|
"初始资金 : 100000.00\n",
|
|||
|
|
"最终资金 : 102853.00\n",
|
|||
|
|
"总收益率 : 2.85%\n",
|
|||
|
|
"年化收益率 : 0.61%\n",
|
|||
|
|
"最大回撤 : 0.38%\n",
|
|||
|
|
"夏普比率 : 0.36\n",
|
|||
|
|
"卡玛比率 : 1.59\n",
|
|||
|
|
"总交易次数 : 1246\n",
|
|||
|
|
"总实现盈亏 : 2853.00\n",
|
|||
|
|
"交易成本 : 0.00\n",
|
|||
|
|
"\n",
|
|||
|
|
"--- 交易详情 ---\n",
|
|||
|
|
"盈利交易次数 : 255\n",
|
|||
|
|
"亏损交易次数 : 359\n",
|
|||
|
|
"胜率 : 41.53%\n",
|
|||
|
|
"盈亏比 : 2.03\n",
|
|||
|
|
"平均每次盈利 : 36.38\n",
|
|||
|
|
"平均每次亏损 : -17.89\n",
|
|||
|
|
"正在绘制绩效图表...\n"
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"data": {
|
|||
|
|
"text/plain": [
|
|||
|
|
"<Figure size 1400x1000 with 2 Axes>"
|
|||
|
|
],
|
|||
|
|
"image/png": "iVBORw0KGgoAAAANSUhEUgAABWQAAAPdCAYAAAANmGE2AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs3Xd4U2UbBvA7s5tZyt7YgqxSRilQkCV7fwqyxQEiSxQRlI2AyBQUUVGmILI3lL03lb33bMvszDzfH4eM0yRddCTt/bsurrYnJydvmjehufOc55UJgiCAiIiIiIiIiIiIiDKcPKsHQERERERERERERJRTMJAlIiIiIiIiIiIiyiQMZImIiIiIiIiIiIgyCQNZIiIiIiIiIiIiokzCQJaIiIiIiIiIiIgokzCQJSIiIiIiIiIiIsokDGSJiIiIiIiIiIiIMgkDWSIiIiIiIiIiIqJMwkCWiIiIiIiIiIiIKJMwkCUiIpfVqFEjBAQESP5VqlQJ77zzDoYMGYKTJ09m9RBtXL9+Hf3790dISAgqVKiAgIAAzJkzJ83Hu3//PgICAtCoUSOby0y/n/v377/JkFPE3mNh79+aNWsyfCxJ+eabb5xiHM4oLb+bNWvW2H0OBgcHo2XLlvjyyy/xzz//ICYmJgNHnvWSeh5md4cOHcKIESPQrFkzBAUFoVKlSqhXrx4+/PBDLFy4EM+ePcvqIWapRYsWISAgANu3b09yv7/++sv8HFqyZEmS+x47dgwBAQHo0aOHzWWmY6TVjRs3MHnyZLRv3x7BwcGoWLEigoOD0blzZ0yfPh03btxI87HpzZ08eRIBAQGYOnVqVg+FiIjekDKrB0BERPSmgoKCULJkSQDAq1evcP78eWzduhXbtm3D8OHD8eGHH2b4GNasWYMRI0agQ4cOmDJlit194uLi8Omnn+LBgwfm0EKhUKBChQoZPr7MYv1Y2FOiRIlMHE3KpeTxI8c8PT3RrFkzAIDRaER0dDTu37+PLVu2YNOmTZgyZQq++OIL9OjRAzKZLItHS+nh2bNn+PLLL3H48GEAQNGiRREcHAxPT09ERkbizJkzOHz4MGbPno2FCxeiatWqWTzizPfs2TPMnTsXlStXNj8/HFm1apX5+9WrV9sNWzOSXq/H1KlTsWTJEhiNRuTJkweVKlVCnjx5EB0djQsXLiA8PBx//PEHvv32W3Tv3j1Tx2fiaq/Vc+bMwdy5czFgwAAMHDjwjY9Xo0YNvPPOO1i8eDHef/99lCpV6s0HSUREWYKBLBERubz33nsPHTt2NP+s0WgwevRorFu3Dj/++CPeeecdlC5dOgtHKDp37hwePHiAatWqYcWKFRl+ewsXLoROp0PBggUz/LZMEj8Wzmbo0KH45JNP4Ofnl9VDyVby5s1rNxyJiIjAH3/8gcWLF+P777/H48eP8fXXX2fBCCk9RUdHo2vXrrh16xbKlCmDCRMmoEaNGpJ9tFot1q5dizlz5iAyMjKLRpq15s6di1evXiUbxIWHh+P69evIlSsX9Ho9Ll26hAsXLqBixYqZNFJg2LBh2LJlC7y9vfHtt9+iXbt2UCgU5ssFQcChQ4cwY8YM3LlzJ9PGRbYGDhyIvXv3Ytq0aZg7d25WD4eIiNKILQuIiCjbcXNzw+jRo+Hp6QmDwYCwsLCsHhIA4NGjRwCQaRUtJUqUQNmyZaFSqTLl9lyBn58fypYtCx8fn6weSo7g5+eHkSNHYtSoUQCABQsWOGUrEUqdCRMm4NatWyhatCiWL19uE8YCgFqtRufOnbFu3TqUKVMmC0aZtV69eoW1a9eiYMGCCA0NTXJfU3Vsq1at0Lx5c8m2zLBq1Sps2bIFKpUKf/75Jzp27CgJYwFAJpOhXr16+Oeff9CyZctMGxvZqlSpEsqXL49du3ZlSksiIiLKGAxkiYgoW/Ly8jJXxSZ+w3LgwAH07dsXISEh5tYBQ4YMwblz5+weq0ePHggICMCxY8dw8uRJ9OvXD7Vr10b58uWxZs0aNGrUCCNGjAAArF27VtJPs0ePHuZ+f8OHD7e7j7UXL15gxowZaNWqFapWrYpq1aqhY8eO+P3335GQkJCq30FSPWTj4+Px22+/oUOHDqhWrRqqVq2KVq1aYebMmXj58mWqbudNXb9+HYMGDUJwcDCqVKmC1q1bY8GCBTAYDA7vQ3J9Eq0fM2v2+qQm9/gZjUY0btwYAQEBOHPmjMPbHDt2bKp6+8XExGDlypUYMGAA3n33XQQGBiIwMBBt2rTBzJkz8erVK7vXs/6dHD16FH369EHNmjVRpUoVdOjQAevWrXN4my9evMD333+Phg0bmvstjx8/Hi9evEjRmNOqW7duqFy5MgDgjz/+kFxm6kP7zTffmMfXpEkTVKpUSXLa9uHDhzFhwgS0a9cOwcHBqFSpEurXr48hQ4bg7NmzNre5ePFiBAQEYOLEiTaXffLJJwgICEDdunUhCILksnXr1iEgIMBuJe+ePXvQvXt3VKtWDdWrV0fXrl2xc+fOZO//jRs3MGLECPPvvVatWujVqxe2bNmSoeO27jWq0+nw22+/oVWrVqhSpQqCg4MxYMCAVPcEvXfvHjZt2gQAGDFiBPLkyZPk/r6+vpJANrlexdbzwdF2e/PkwIEDCAgIQIsWLRyORa/Xo27duggICMDly5cllyUkJODPP//E+++/jxo1apjbDEydOhXPnz9P8j46uh9xcXFo164d5HLHb7ni4uLM8+B///sfOnXqBADYtGkTNBpNqm83tQRBwK+//goA6NKlS7KtJVQqFapVq2az/ezZsxg8eDDq1auHSpUqISQkBP369cOhQ4fsHsd6Hty7dw/Dhg1D3bp1UalSJTRp0gQzZ86EVquVXCe512qT5P7PBtL++guI82jVqlXo3bu35LWod+/ekv6/AQEB5grWuXPnSsZrPb8jIiIwceJENGvWDJUrV0bVqlXRoEED9OrVCwsWLLA7hg4dOsBoNGL58uUOx0lERM6NLQuIiCjbMi0kpFarzdtmzZqFefPmQSaToVq1aihSpAhu3LiBrVu3YseOHRg/fjz+97//2T3etm3bsGLFCpQpUwZ16tTBy5cvoVar0axZM4SHh+P06dMoUaIEqlevbr5OmTJl4Ovriw4dOuDOnTt29zG5d+8eevXqhQcPHiBfvnxo0KABdDodjh07hmnTpmHr1q3466+/kDt37jf6vbx48QK9e/fGpUuX4O3tjdq1a0OlUuH48eP49ddfsWnTJixatAjFihV7o9tJiZMnT+KTTz5BXFwcihcvjrp16+L58+eYOXMm/vvvvwy/fQDJPn5yuRzdu3fHlClTsHTpUrthRExMDNavXw+5XI6uXbum6HYvX76MUaNGIV++fChdujQqVqxo7oH866+/YuvWrfjnn3+QN29eu9dfvXo15s2bh7fffhuhoaF48OABwsPDMXz4cPNjbC0qKgrdunXD7du3kTt3bjRs2BBGoxEbN27EgQMHUK5cuZT/0tKgbdu2OHfuHI4dOwa9Xg+lUvpn6PPnz9GpUydER0ejevXqqFixoqS6e8yYMXj06BHeeustBAUFQalU4ubNm9i6dSvCwsIwY8YMSZ/OOnXqAIC5x6mJTqczV+lGRUXhypUrKF++vPly0/6m65ssXLgQkydPBgBUqVIFJUqUwO3bt/H5558n2ad67969GDRoEDQaDUqXLo13330XT58+xYkTJ3D06FEcPHgQkyZNyrBxm6776aef4syZM6hRowbKli2Ls2fPIiwsDMeOHcPatWtT/Hzfs2cPDAYDcuXKlSWLmDmaJ3Xr1kWhQoVw8+ZNhIeHIzAw0Oa6+/fvR1RUFCpWrCj53T158gQff/wxrl69ijx58qBy5crw8vLCxYsXsWDBAmzbtg1LlixB0aJFUzxOU1Bv7/GwtmXLFsTGxpoXxAPEsyhu376NHTt2oE2bNim+zbS4cuUK7t27B0AM+dJi5cqVGDNmDIxGI95++20EBwfjwYMH2LNnD/bs2YOBAwdiwIABdq976dIlfP/998idOzdq1qyJly9f4vTp0/j1119x/fp1/Pzzz+Z9k3u
|
|||
|
|
},
|
|||
|
|
"metadata": {},
|
|||
|
|
"output_type": "display_data"
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"data": {
|
|||
|
|
"text/plain": [
|
|||
|
|
"<Figure size 1400x700 with 1 Axes>"
|
|||
|
|
],
|
|||
|
|
"image/png": "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
|
|||
|
|
},
|
|||
|
|
"metadata": {},
|
|||
|
|
"output_type": "display_data"
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
"name": "stdout",
|
|||
|
|
"output_type": "stream",
|
|||
|
|
"text": [
|
|||
|
|
"图表绘制完成。\n",
|
|||
|
|
"{'初始资金': 100000.0, '最终资金': np.float64(102853.0), '总收益率': np.float64(0.028529999999999944), '年化收益率': np.float64(0.0061192583272469125), '最大回撤': np.float64(0.0038414801458194502), '夏普比率': np.float64(0.36222131733875357), '卡玛比率': np.float64(1.5929428488407755), '总交易次数': 1246, '交易成本': 0.0, '总实现盈亏': 2853.0, '胜率': 0.4153094462540717, '盈亏比': 2.0331858852835856, '盈利交易次数': 255, '亏损交易次数': 359, '平均每次盈利': 36.37647058823529, '平均每次亏损': -17.891364902506965, 'initial_capital': 100000.0, 'final_capital': np.float64(102853.0), 'total_return': np.float64(0.028529999999999944), 'annualized_return': np.float64(0.0061192583272469125), 'max_drawdown': np.float64(0.0038414801458194502), 'sharpe_ratio': np.float64(0.36222131733875357), 'calmar_ratio': np.float64(1.5929428488407755), 'sortino_ratio': np.float64(0.3033263448417144), 'total_trades': 1246, 'transaction_costs': 0.0, 'total_realized_pnl': 2853.0, 'win_rate': 0.4153094462540717, 'profit_loss_ratio': 2.0331858852835856, 'winning_trades_count': 255, 'losing_trades_count': 359, 'avg_profit_per_trade': 36.37647058823529, 'avg_loss_per_trade': -17.891364902506965}\n",
|
|||
|
|
"指标 'rsi_5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_7' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_10' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_15' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_25' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_30' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_35' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'rsi_40' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'range_0' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'range_1' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'range_6' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'range_13' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'range_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'stoch_k_14_3' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'stoch_k_5_3' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'stoch_k_21_5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_10' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_15' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_5_5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_5_10' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_10_10' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_10_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_20_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'roc_ma_20_40' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'natr_5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'natr_14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'natr_21' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_7' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_30' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_60' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_120' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'adx_240' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'bbw_10_15' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'bbw_20_20' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'bbw_50_25' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n3_atr5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n3_atr14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n3_atr21' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n7_atr5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n7_atr14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n7_atr21' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n21_atr5' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n21_atr14' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"指标 'price_range_to_vol_ratio_n21_atr21' 没有对应的有效平仓交易数据。跳过绘图。\n",
|
|||
|
|
"\n",
|
|||
|
|
"所有指标的分析图表已生成。\n"
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
],
|
|||
|
|
"execution_count": 12
|
|||
|
|
}
|
|||
|
|
],
|
|||
|
|
"metadata": {
|
|||
|
|
"kernelspec": {
|
|||
|
|
"display_name": "quant",
|
|||
|
|
"language": "python",
|
|||
|
|
"name": "python3"
|
|||
|
|
},
|
|||
|
|
"language_info": {
|
|||
|
|
"codemirror_mode": {
|
|||
|
|
"name": "ipython",
|
|||
|
|
"version": 3
|
|||
|
|
},
|
|||
|
|
"file_extension": ".py",
|
|||
|
|
"mimetype": "text/x-python",
|
|||
|
|
"name": "python",
|
|||
|
|
"nbconvert_exporter": "python",
|
|||
|
|
"pygments_lexer": "ipython3",
|
|||
|
|
"version": "3.12.11"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"nbformat": 4,
|
|||
|
|
"nbformat_minor": 5
|
|||
|
|
}
|