'
- f'
ADR 추세 '
- + html.escape(sel_label) + '
'
- + basic_block
+ '
ADR 추세
'
+ + adr_table
+ graph_toggle
+ '
'
- + today_detail
+ f'
{html.escape(hint)}
'
+ _render_adr_trend_controls(days)
+ '
'
@@ -6954,7 +7079,6 @@ def _render_adr_trend_card(days: int = ADR_TREND_DAYS) -> str:
f'fill="#6b7280" font-size="8.5" opacity="0.7">{html.escape(last_dt[5:])}'
)
- sel_label = next((lbl for lbl, d in ADR_TREND_PRESETS if d == days), '맞춤')
chart_row = (
f'
'
f'
@@ -12083,6 +12522,8 @@ window.openPinModal = openPinModal;
{note_modal_html}
{calc_modal_html}
{avg_calc_modal_html}
+ {holdeval_modal_html}
+ {holdeval_add_modal_html}
{group_assign_modal_html}
{group_manage_modal_html}
{candidate_modal_html}
@@ -12105,6 +12546,7 @@ window.openPinModal = openPinModal;
{nodbltap_script}
{calc_script}
{avg_calc_script}
+ {holdeval_script}
{details_mutex_script}
{modal_script}
{order_modal_script}
@@ -12749,6 +13191,14 @@ class Handler(BaseHTTPRequestHandler):
except Exception as e:
self._send_json(200, {'results': [], 'error': str(e)})
return
+ if parsed.path == '/api/holdeval/list':
+ # 보유 평가 계산기 저장 목록 (라이브 시세 없이 저장 필드만; 현재가는 선택 시 quote_book로 조회).
+ try:
+ self._send_json(200, {'items': _load_holdeval_saved()})
+ except Exception as e:
+ traceback.print_exc()
+ self._send_json(500, {'error': f'holdeval list failed: {e}'})
+ return
if parsed.path == '/api/order/advice':
# 거래 모달용: 종목·side 기술적 권장 매수가/매도가 + 근거(이평·ATR). 매도는 avg_price(평단) 선택.
qs = parse_qs(parsed.query)
@@ -13718,6 +14168,63 @@ class Handler(BaseHTTPRequestHandler):
self._send_json(200, {'ok': True, 'lines': _get_chart_hlines(code)})
return
+ if self.path == '/holdeval/save':
+ # 보유 평가 계산기 저장 — owner/code/name/avg/qty. code·avg·qty 필수.
+ owner = (params.get('owner') or [''])[0].strip()
+ code = (params.get('code') or [''])[0].strip()
+ name = (params.get('name') or [''])[0].strip()
+ try:
+ avg = float((params.get('avg') or ['0'])[0].strip() or '0')
+ qty = float((params.get('qty') or ['0'])[0].strip() or '0')
+ except ValueError:
+ avg = qty = 0
+ try:
+ items = _add_holdeval_saved(owner, code, name, avg, qty)
+ self._send_json(200, {'ok': True, 'items': items})
+ except ValueError as e:
+ self._send_json(400, {'ok': False, 'error': str(e)})
+ except Exception as e:
+ traceback.print_exc()
+ self._send_json(500, {'ok': False, 'error': str(e)})
+ return
+
+ if self.path == '/holdeval/update':
+ # 저장 항목 수정 — id 필수, owner/avg/qty 갱신. code/name은 있으면 교체.
+ entry_id = (params.get('id') or [''])[0].strip()
+ owner = (params.get('owner') or [''])[0].strip()
+ code = (params.get('code') or [''])[0].strip()
+ name = (params.get('name') or [''])[0].strip()
+ try:
+ avg = float((params.get('avg') or ['0'])[0].strip() or '0')
+ qty = float((params.get('qty') or ['0'])[0].strip() or '0')
+ except ValueError:
+ avg = qty = 0
+ if not entry_id:
+ self._send_json(400, {'ok': False, 'error': 'id required'})
+ return
+ try:
+ items = _update_holdeval_saved(entry_id, owner, avg, qty, code, name)
+ self._send_json(200, {'ok': True, 'items': items})
+ except ValueError as e:
+ self._send_json(400, {'ok': False, 'error': str(e)})
+ except Exception as e:
+ traceback.print_exc()
+ self._send_json(500, {'ok': False, 'error': str(e)})
+ return
+
+ if self.path == '/holdeval/delete':
+ entry_id = (params.get('id') or [''])[0].strip()
+ if not entry_id:
+ self._send_json(400, {'ok': False, 'error': 'id required'})
+ return
+ try:
+ items = _delete_holdeval_saved(entry_id)
+ self._send_json(200, {'ok': True, 'items': items})
+ except Exception as e:
+ traceback.print_exc()
+ self._send_json(500, {'ok': False, 'error': str(e)})
+ return
+
if self.path == '/notes/set':
# 종목 자유 메모 — stock(name) 또는 code 둘 중 하나는 필수.
# note 가 빈 텍스트면 항목 제거.
diff --git a/agents/stock/workspace/state/market_indicators_history.jsonl b/agents/stock/workspace/state/market_indicators_history.jsonl
index 0b24128..b75f78c 100644
--- a/agents/stock/workspace/state/market_indicators_history.jsonl
+++ b/agents/stock/workspace/state/market_indicators_history.jsonl
@@ -90,3 +90,5 @@
{"date": "2026-07-24", "market": "KOSPI", "market_label": "코스피", "rise": 301, "upper": 2, "fall": 585, "lower": 0, "steady": 30, "adr": 51.79, "personal": 51782, "foreign": -32683, "institutional": -19514, "captured_at": "2026-07-24T21:00:02.378107+09:00"}
{"date": "2026-07-27", "market": "KOSDAQ", "market_label": "코스닥", "rise": 1007, "upper": 10, "fall": 628, "lower": 2, "steady": 99, "adr": 161.43, "personal": -1550, "foreign": -1422, "institutional": 2731, "captured_at": "2026-07-27T21:00:02.567797+09:00"}
{"date": "2026-07-27", "market": "KOSPI", "market_label": "코스피", "rise": 497, "upper": 0, "fall": 372, "lower": 2, "steady": 47, "adr": 132.89, "personal": 19788, "foreign": -28811, "institutional": 8595, "captured_at": "2026-07-27T21:00:02.567797+09:00"}
+{"date": "2026-07-28", "market": "KOSDAQ", "market_label": "코스닥", "rise": 140, "upper": 11, "fall": 1557, "lower": 2, "steady": 38, "adr": 9.69, "personal": 480, "foreign": 860, "institutional": -1345, "captured_at": "2026-07-28T21:00:02.094342+09:00"}
+{"date": "2026-07-28", "market": "KOSPI", "market_label": "코스피", "rise": 36, "upper": 3, "fall": 878, "lower": 2, "steady": 3, "adr": 4.43, "personal": 43152, "foreign": -45009, "institutional": 1830, "captured_at": "2026-07-28T21:00:02.094342+09:00"}
diff --git a/agents/stock/workspace/state/sim/equity_history.json b/agents/stock/workspace/state/sim/equity_history.json
index 6eb2fbb..536d987 100644
--- a/agents/stock/workspace/state/sim/equity_history.json
+++ b/agents/stock/workspace/state/sim/equity_history.json
@@ -1 +1 @@
-{"20260610": [{"id": "main", "ph": "48693b1f", "equity": 100000000, "ret": 0.0}, {"id": "v1", "ph": "bab0fc2c", "equity": 100000000, "ret": 0.0}, {"id": "v2", "ph": "81d17cca", "equity": 100000000, "ret": 0.0}, {"id": "v3", "ph": "b6219595", "equity": 100000000, "ret": 0.0}, {"id": "v4", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "e96ce9e2", "equity": 100000000, "ret": 0.0}, {"id": "v6", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "956b3b16", "equity": 100000000, "ret": 0.0}, {"id": "v22", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "9beb8c05", "equity": 100000000, "ret": 0.0}, {"id": "v24", "ph": "00b59557", "equity": 100000000, "ret": 0.0}, {"id": "v25", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "33d43bc6", "equity": 100000000, "ret": 0.0}, {"id": "v27", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "3dc99490", "equity": 100000000, "ret": 0.0}, {"id": "v31", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "6a183375", "equity": 100000000, "ret": 0.0}, {"id": "v35", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}], "20260611": [{"id": "v62", "ph": "c6ddc17b", "equity": 100304837, "ret": 0.3}, {"id": "v64", "ph": "15b83273", "equity": 100304837, "ret": 0.3}, {"id": "v66", "ph": "db0e70a4", "equity": 100304837, "ret": 0.3}, {"id": "v68", "ph": "38c84625", "equity": 100159127, "ret": 0.16}, {"id": "v70", "ph": "6c4d4125", "equity": 100159127, "ret": 0.16}, {"id": "v72", "ph": "b8d74129", "equity": 100159127, "ret": 0.16}, {"id": "v74", "ph": "35a8e955", "equity": 100159127, "ret": 0.16}, {"id": "v76", "ph": "178928cb", "equity": 100159127, "ret": 0.16}, {"id": "v78", "ph": "655e082d", "equity": 100159127, "ret": 0.16}, {"id": "v80", "ph": "b2d56c47", "equity": 100159127, "ret": 0.16}, {"id": "v84", "ph": "95794738", "equity": 100159127, "ret": 0.16}, {"id": "v86", "ph": "935c5a1c", "equity": 100159127, "ret": 0.16}, {"id": "v22", "ph": "956b3b16", "equity": 100008869, "ret": 0.01}, {"id": "v24", "ph": "9beb8c05", "equity": 100008869, "ret": 0.01}, {"id": "v25", "ph": "00b59557", "equity": 100008869, "ret": 0.01}, {"id": "v79", "ph": "61b964d8", "equity": 100008869, "ret": 0.01}, {"id": "v83", "ph": "1b98a0fc", "equity": 100008869, "ret": 0.01}, {"id": "v85", "ph": "5ca17df0", "equity": 100008869, "ret": 0.01}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v2", "ph": "bab0fc2c", "equity": 100000000, "ret": 0.0}, {"id": "v3", "ph": "81d17cca", "equity": 100000000, "ret": 0.0}, {"id": "v4", "ph": "b6219595", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v6", "ph": "e96ce9e2", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v27", "ph": "33d43bc6", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v31", "ph": "3dc99490", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v35", "ph": "6a183375", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v39", "ph": "11c27236", "equity": 100000000, "ret": 0.0}, {"id": "v41", "ph": "e9d84e84", "equity": 100000000, "ret": 0.0}, {"id": "v43", "ph": "94ea3b53", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v47", "ph": "ed758fcf", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v89", "ph": "c49d5680", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v97", "ph": "ebf31977", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v105", "ph": "88395429", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v48", "ph": "18854c6a", "equity": 99935458, "ret": -0.06}, {"id": "v90", "ph": "86e09c47", "equity": 99935458, "ret": -0.06}, {"id": "v98", "ph": "266fc53f", "equity": 99935458, "ret": -0.06}, {"id": "v106", "ph": "d0f5fbc1", "equity": 99935458, "ret": -0.06}, {"id": "v40", "ph": "70731d89", "equity": 99891085, "ret": -0.11}, {"id": "v42", "ph": "f36fddc6", "equity": 99891085, "ret": -0.11}, {"id": "v44", "ph": "364ea434", "equity": 99891085, "ret": -0.11}], "20260612": [{"id": "v62", "ph": "c6ddc17b", "equity": 101131990, "ret": 1.13}, {"id": "v64", "ph": "15b83273", "equity": 101131990, "ret": 1.13}, {"id": "v66", "ph": "db0e70a4", "equity": 101131990, "ret": 1.13}, {"id": "v68", "ph": "38c84625", "equity": 100815744, "ret": 0.82}, {"id": "v70", "ph": "6c4d4125", "equity": 100815744, "ret": 0.82}, {"id": "v72", "ph": "b8d74129", "equity": 100815744, "ret": 0.82}, {"id": "v74", "ph": "35a8e955", "equity": 100815744, "ret": 0.82}, {"id": "v76", "ph": "178928cb", "equity": 100815744, "ret": 0.82}, {"id": "v78", "ph": "655e082d", "equity": 100815744, "ret": 0.82}, {"id": "v80", "ph": "b2d56c47", "equity": 100815744, "ret": 0.82}, {"id": "v84", "ph": "95794738", "equity": 100815744, "ret": 0.82}, {"id": "v86", "ph": "935c5a1c", "equity": 100815744, "ret": 0.82}, {"id": "v40", "ph": "70731d89", "equity": 100812655, "ret": 0.81}, {"id": "v42", "ph": "f36fddc6", "equity": 100812655, "ret": 0.81}, {"id": "v44", "ph": "364ea434", "equity": 100812655, "ret": 0.81}, {"id": "v22", "ph": "956b3b16", "equity": 100762741, "ret": 0.76}, {"id": "v24", "ph": "9beb8c05", "equity": 100762741, "ret": 0.76}, {"id": "v25", "ph": "00b59557", "equity": 100762741, "ret": 0.76}, {"id": "v79", "ph": "61b964d8", "equity": 100762741, "ret": 0.76}, {"id": "v83", "ph": "1b98a0fc", "equity": 100762741, "ret": 0.76}, {"id": "v85", "ph": "5ca17df0", "equity": 100762741, "ret": 0.76}, {"id": "v48", "ph": "18854c6a", "equity": 100477921, "ret": 0.48}, {"id": "v90", "ph": "86e09c47", "equity": 100477921, "ret": 0.48}, {"id": "v98", "ph": "266fc53f", "equity": 100477921, "ret": 0.48}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100477921, "ret": 0.48}, {"id": "v2", "ph": "bab0fc2c", "equity": 100463176, "ret": 0.46}, {"id": "v3", "ph": "81d17cca", "equity": 100463176, "ret": 0.46}, {"id": "v4", "ph": "b6219595", "equity": 100463176, "ret": 0.46}, {"id": "v39", "ph": "11c27236", "equity": 100463176, "ret": 0.46}, {"id": "v41", "ph": "e9d84e84", "equity": 100463176, "ret": 0.46}, {"id": "v43", "ph": "94ea3b53", "equity": 100463176, "ret": 0.46}, {"id": "v6", "ph": "e96ce9e2", "equity": 100248035, "ret": 0.25}, {"id": "v35", "ph": "6a183375", "equity": 100248035, "ret": 0.25}, {"id": "v47", "ph": "ed758fcf", "equity": 100248035, "ret": 0.25}, {"id": "v105", "ph": "88395429", "equity": 100248035, "ret": 0.25}, {"id": "v27", "ph": "33d43bc6", "equity": 100230107, "ret": 0.23}, {"id": "v31", "ph": "3dc99490", "equity": 100230107, "ret": 0.23}, {"id": "v89", "ph": "c49d5680", "equity": 100230107, "ret": 0.23}, {"id": "v97", "ph": "ebf31977", "equity": 100230107, "ret": 0.23}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}], "20260615": [{"id": "v62", "ph": "c6ddc17b", "equity": 101695590, "ret": 1.7}, {"id": "v64", "ph": "15b83273", "equity": 101695590, "ret": 1.7}, {"id": "v66", "ph": "db0e70a4", "equity": 101695590, "ret": 1.7}, {"id": "v68", "ph": "38c84625", "equity": 101110494, "ret": 1.11}, {"id": "v70", "ph": "6c4d4125", "equity": 101110494, "ret": 1.11}, {"id": "v72", "ph": "b8d74129", "equity": 101110494, "ret": 1.11}, {"id": "v74", "ph": "35a8e955", "equity": 101110494, "ret": 1.11}, {"id": "v76", "ph": "178928cb", "equity": 101110494, "ret": 1.11}, {"id": "v78", "ph": "655e082d", "equity": 101110494, "ret": 1.11}, {"id": "v80", "ph": "b2d56c47", "equity": 101110494, "ret": 1.11}, {"id": "v84", "ph": "95794738", "equity": 101110494, "ret": 1.11}, {"id": "v86", "ph": "935c5a1c", "equity": 101110494, "ret": 1.11}, {"id": "v40", "ph": "70731d89", "equity": 100878905, "ret": 0.88}, {"id": "v42", "ph": "f36fddc6", "equity": 100878905, "ret": 0.88}, {"id": "v44", "ph": "364ea434", "equity": 100878905, "ret": 0.88}, {"id": "v22", "ph": "956b3b16", "equity": 100808991, "ret": 0.81}, {"id": "v24", "ph": "9beb8c05", "equity": 100808991, "ret": 0.81}, {"id": "v25", "ph": "00b59557", "equity": 100808991, "ret": 0.81}, {"id": "v79", "ph": "61b964d8", "equity": 100808991, "ret": 0.81}, {"id": "v83", "ph": "1b98a0fc", "equity": 100808991, "ret": 0.81}, {"id": "v85", "ph": "5ca17df0", "equity": 100808991, "ret": 0.81}, {"id": "v2", "ph": "bab0fc2c", "equity": 100526926, "ret": 0.53}, {"id": "v3", "ph": "81d17cca", "equity": 100526926, "ret": 0.53}, {"id": "v4", "ph": "b6219595", "equity": 100526926, "ret": 0.53}, {"id": "v39", "ph": "11c27236", "equity": 100526926, "ret": 0.53}, {"id": "v41", "ph": "e9d84e84", "equity": 100526926, "ret": 0.53}, {"id": "v43", "ph": "94ea3b53", "equity": 100526926, "ret": 0.53}, {"id": "v48", "ph": "18854c6a", "equity": 100516671, "ret": 0.52}, {"id": "v90", "ph": "86e09c47", "equity": 100516671, "ret": 0.52}, {"id": "v98", "ph": "266fc53f", "equity": 100516671, "ret": 0.52}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100516671, "ret": 0.52}, {"id": "v6", "ph": "e96ce9e2", "equity": 100281785, "ret": 0.28}, {"id": "v35", "ph": "6a183375", "equity": 100281785, "ret": 0.28}, {"id": "v47", "ph": "ed758fcf", "equity": 100281785, "ret": 0.28}, {"id": "v105", "ph": "88395429", "equity": 100281785, "ret": 0.28}, {"id": "v27", "ph": "33d43bc6", "equity": 100261357, "ret": 0.26}, {"id": "v31", "ph": "3dc99490", "equity": 100261357, "ret": 0.26}, {"id": "v89", "ph": "c49d5680", "equity": 100261357, "ret": 0.26}, {"id": "v97", "ph": "ebf31977", "equity": 100261357, "ret": 0.26}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v109", "ph": "4c69fc95", "equity": 100000000, "ret": 0.0}, {"id": "v110", "ph": "8164d748", "equity": 100000000, "ret": 0.0}, {"id": "v111", "ph": "826e3d17", "equity": 100000000, "ret": 0.0}, {"id": "v112", "ph": "4cd47646", "equity": 100000000, "ret": 0.0}, {"id": "v113", "ph": "5b43d0bc", "equity": 100000000, "ret": 0.0}, {"id": "v114", "ph": "8686c36c", "equity": 100000000, "ret": 0.0}, {"id": "v115", "ph": "e1790a5a", "equity": 100000000, "ret": 0.0}, {"id": "v116", "ph": "e73fef98", "equity": 100000000, "ret": 0.0}, {"id": "v117", "ph": "c4ae8a11", "equity": 100000000, "ret": 0.0}, {"id": "v118", "ph": "538b63b9", "equity": 100000000, "ret": 0.0}, {"id": "v119", "ph": "ed2208f1", "equity": 100000000, "ret": 0.0}, {"id": "v120", "ph": "d25ca8b0", "equity": 100000000, "ret": 0.0}, {"id": "v121", "ph": "ae8797c1", "equity": 100000000, "ret": 0.0}, {"id": "v122", "ph": "b12ecb8e", "equity": 100000000, "ret": 0.0}, {"id": "v123", "ph": "6ee459af", "equity": 100000000, "ret": 0.0}, {"id": "v124", "ph": "47d22489", "equity": 100000000, "ret": 0.0}, {"id": "v125", "ph": "d2cf659a", "equity": 100000000, "ret": 0.0}, {"id": "v126", "ph": "d9a13cde", "equity": 100000000, "ret": 0.0}, {"id": "v127", "ph": "eff26306", "equity": 100000000, "ret": 0.0}, {"id": "v128", "ph": "e9482821", "equity": 100000000, "ret": 0.0}, {"id": "v129", "ph": "58ddcc3c", "equity": 100000000, "ret": 0.0}, {"id": "v130", "ph": "e91870c6", "equity": 100000000, "ret": 0.0}, {"id": "v131", "ph": "5f8c7082", "equity": 100000000, "ret": 0.0}, {"id": "v132", "ph": "0945c49a", "equity": 100000000, "ret": 0.0}, {"id": "v133", "ph": "78be8034", "equity": 100000000, "ret": 0.0}, {"id": "v134", "ph": "afbb4ab8", "equity": 100000000, "ret": 0.0}, {"id": "v135", "ph": "53f4c78c", "equity": 100000000, "ret": 0.0}, {"id": "v136", "ph": "ceb32a66", "equity": 100000000, "ret": 0.0}, {"id": "v137", "ph": "60ec806f", "equity": 100000000, "ret": 0.0}, {"id": "v138", "ph": "e3acb223", "equity": 100000000, "ret": 0.0}, {"id": "v139", "ph": "cfbc79a5", "equity": 100000000, "ret": 0.0}, {"id": "v140", "ph": "52175b2b", "equity": 100000000, "ret": 0.0}, {"id": "v141", "ph": "47f30434", "equity": 100000000, "ret": 0.0}, {"id": "v142", "ph": "44fae695", "equity": 100000000, "ret": 0.0}, {"id": "v143", "ph": "5cf8f13a", "equity": 100000000, "ret": 0.0}, {"id": "v144", "ph": "6ffe4183", "equity": 100000000, "ret": 0.0}, {"id": "v145", "ph": "a89d85fc", "equity": 100000000, "ret": 0.0}, {"id": "v146", "ph": "071b9cb1", "equity": 100000000, "ret": 0.0}, {"id": "v147", "ph": "2fbeeedb", "equity": 100000000, "ret": 0.0}, {"id": "v148", "ph": "ada71802", "equity": 100000000, "ret": 0.0}, {"id": "v149", "ph": "c5329f8d", "equity": 100000000, "ret": 0.0}, {"id": "v150", "ph": "be41b974", "equity": 100000000, "ret": 0.0}, {"id": "v151", "ph": "2eb1dd06", "equity": 100000000, "ret": 0.0}, {"id": "v152", "ph": "5d2df346", "equity": 100000000, "ret": 0.0}, {"id": "v153", "ph": "49fd09d9", "equity": 100000000, "ret": 0.0}, {"id": "v154", "ph": "7a3a7788", "equity": 100000000, "ret": 0.0}, {"id": "v155", "ph": "31c0d84e", "equity": 100000000, "ret": 0.0}, {"id": "v156", "ph": "3f7bcd1b", "equity": 100000000, "ret": 0.0}, {"id": "v157", "ph": "80f3e23b", "equity": 100000000, "ret": 0.0}, {"id": "v158", "ph": "7e56eae3", "equity": 100000000, "ret": 0.0}, {"id": "v159", "ph": "af80c67a", "equity": 100000000, "ret": 0.0}, {"id": "v160", "ph": "b03f5295", "equity": 100000000, "ret": 0.0}, {"id": "v161", "ph": "ed5677e6", "equity": 100000000, "ret": 0.0}, {"id": "v162", "ph": "b8f71c74", "equity": 100000000, "ret": 0.0}, {"id": "v163", "ph": "452ab819", "equity": 100000000, "ret": 0.0}, {"id": "v164", "ph": "331cec1f", "equity": 100000000, "ret": 0.0}, {"id": "v165", "ph": "8f862b27", "equity": 100000000, "ret": 0.0}, {"id": "v166", "ph": "f684401e", "equity": 100000000, "ret": 0.0}, {"id": "v167", "ph": "b6d6aed8", "equity": 100000000, "ret": 0.0}, {"id": "v168", "ph": "81099b26", "equity": 100000000, "ret": 0.0}, {"id": "v169", "ph": "d595e4fb", "equity": 100000000, "ret": 0.0}, {"id": "v170", "ph": "afd652fd", "equity": 100000000, "ret": 0.0}, {"id": "v171", "ph": "faa4e138", "equity": 100000000, "ret": 0.0}, {"id": "v172", "ph": "98d8acda", "equity": 100000000, "ret": 0.0}, {"id": "v173", "ph": "2ea88e58", "equity": 100000000, "ret": 0.0}, {"id": "v174", "ph": "d8b7e234", "equity": 100000000, "ret": 0.0}, {"id": "v175", "ph": "9b6b3d9c", "equity": 100000000, "ret": 0.0}, {"id": "v176", "ph": "b710fab4", "equity": 100000000, "ret": 0.0}, {"id": "v177", "ph": "87955d67", "equity": 100000000, "ret": 0.0}, {"id": "v178", "ph": "b7ad4c2d", "equity": 100000000, "ret": 0.0}, {"id": "v179", "ph": "bedf0e90", "equity": 100000000, "ret": 0.0}, {"id": "v180", "ph": "4e41501e", "equity": 100000000, "ret": 0.0}, {"id": "v181", "ph": "4614bd55", "equity": 100000000, "ret": 0.0}, {"id": "v182", "ph": "9a4e525e", "equity": 100000000, "ret": 0.0}, {"id": "v183", "ph": "84faca4b", "equity": 100000000, "ret": 0.0}, {"id": "v184", "ph": "3b78ae9c", "equity": 100000000, "ret": 0.0}, {"id": "v185", "ph": "6b7399b9", "equity": 100000000, "ret": 0.0}, {"id": "v186", "ph": "898d23ea", "equity": 100000000, "ret": 0.0}, {"id": "v187", "ph": "7a03131d", "equity": 100000000, "ret": 0.0}, {"id": "v188", "ph": "29798ffd", "equity": 100000000, "ret": 0.0}, {"id": "v189", "ph": "dfdbd0c8", "equity": 100000000, "ret": 0.0}, {"id": "v190", "ph": "e14af339", "equity": 100000000, "ret": 0.0}, {"id": "v191", "ph": "9bb12946", "equity": 100000000, "ret": 0.0}, {"id": "v192", "ph": "96fbbd1c", "equity": 100000000, "ret": 0.0}, {"id": "v193", "ph": "5dd1f4df", "equity": 100000000, "ret": 0.0}, {"id": "v194", "ph": "31aada19", "equity": 100000000, "ret": 0.0}, {"id": "v195", "ph": "dd89cf59", "equity": 100000000, "ret": 0.0}, {"id": "v196", "ph": "a44aeef1", "equity": 100000000, "ret": 0.0}, {"id": "v197", "ph": "5c290a32", "equity": 100000000, "ret": 0.0}, {"id": "v198", "ph": "ffd1ee88", "equity": 100000000, "ret": 0.0}, {"id": "v199", "ph": "390bfab3", "equity": 100000000, "ret": 0.0}, {"id": "v200", "ph": "8bbb6ec7", "equity": 100000000, "ret": 0.0}, {"id": "v201", "ph": "cb8a413e", "equity": 100000000, "ret": 0.0}, {"id": "v202", "ph": "a528b806", "equity": 100000000, "ret": 0.0}, {"id": "v203", "ph": "2071defa", "equity": 100000000, "ret": 0.0}, {"id": "v204", "ph": "434e2f7a", "equity": 100000000, "ret": 0.0}, {"id": "v205", "ph": "02e5a3f5", "equity": 100000000, "ret": 0.0}, {"id": "v206", "ph": "16f62ab7", "equity": 100000000, "ret": 0.0}, {"id": "v207", "ph": "0f6601a0", "equity": 100000000, "ret": 0.0}, {"id": "v208", "ph": "445623de", "equity": 100000000, "ret": 0.0}, {"id": "v209", "ph": "8730802d", "equity": 100000000, "ret": 0.0}, {"id": "v210", "ph": "6f533a9b", "equity": 100000000, "ret": 0.0}, {"id": "v211", "ph": "9227673c", "equity": 100000000, "ret": 0.0}, {"id": "v212", "ph": "b9e1e8d1", "equity": 100000000, "ret": 0.0}, {"id": "v213", "ph": "0e1d8e45", "equity": 100000000, "ret": 0.0}, {"id": "v214", "ph": "0fb624bf", "equity": 100000000, "ret": 0.0}, {"id": "v215", "ph": "a904a49d", "equity": 100000000, "ret": 0.0}, {"id": "v216", "ph": "ee298bd3", "equity": 100000000, "ret": 0.0}, {"id": "v217", "ph": "4c547a61", "equity": 100000000, "ret": 0.0}, {"id": "v218", "ph": "7304d2d4", "equity": 100000000, "ret": 0.0}, {"id": "v219", "ph": "426d3834", "equity": 100000000, "ret": 0.0}, {"id": "v220", "ph": "565c27a7", "equity": 100000000, "ret": 0.0}, {"id": "v221", "ph": "cd2eef94", "equity": 100000000, "ret": 0.0}, {"id": "v222", "ph": "55de9eca", "equity": 100000000, "ret": 0.0}, {"id": "v223", "ph": "b57356b8", "equity": 100000000, "ret": 0.0}, {"id": "v224", "ph": "888ab069", "equity": 100000000, "ret": 0.0}, {"id": "v225", "ph": "e9f40f62", "equity": 100000000, "ret": 0.0}, {"id": "v226", "ph": "98fd37a4", "equity": 100000000, "ret": 0.0}, {"id": "v227", "ph": "9454b07a", "equity": 100000000, "ret": 0.0}, {"id": "v228", "ph": "caa54387", "equity": 100000000, "ret": 0.0}, {"id": "v229", "ph": "d9261dfb", "equity": 100000000, "ret": 0.0}, {"id": "v230", "ph": "141579fe", "equity": 100000000, "ret": 0.0}, {"id": "v231", "ph": "cd9469fa", "equity": 100000000, "ret": 0.0}, {"id": "v232", "ph": "6de1fffa", "equity": 100000000, "ret": 0.0}, {"id": "v233", "ph": "941006e0", "equity": 100000000, "ret": 0.0}, {"id": "v234", "ph": "9a289d18", "equity": 100000000, "ret": 0.0}, {"id": "v235", "ph": "3e6c1666", "equity": 100000000, "ret": 0.0}, {"id": "v236", "ph": "f9c75560", "equity": 100000000, "ret": 0.0}, {"id": "v237", "ph": "a10d68cf", "equity": 100000000, "ret": 0.0}, {"id": "v238", "ph": "f1a74611", "equity": 100000000, "ret": 0.0}, {"id": "v239", "ph": "96e693c4", "equity": 100000000, "ret": 0.0}, {"id": "v240", "ph": "db1869eb", "equity": 100000000, "ret": 0.0}, {"id": "v241", "ph": "52162002", "equity": 100000000, "ret": 0.0}, {"id": "v242", "ph": "e6c70cac", "equity": 100000000, "ret": 0.0}, {"id": "v243", "ph": "fa7a545a", "equity": 100000000, "ret": 0.0}, {"id": "v244", "ph": "520c5a65", "equity": 100000000, "ret": 0.0}, {"id": "v245", "ph": "ac84324f", "equity": 100000000, "ret": 0.0}, {"id": "v246", "ph": "618ddf71", "equity": 100000000, "ret": 0.0}, {"id": "v247", "ph": "ba973fa6", "equity": 100000000, "ret": 0.0}, {"id": "v248", "ph": "9ca5e3dc", "equity": 100000000, "ret": 0.0}, {"id": "v249", "ph": "36a32ca0", "equity": 100000000, "ret": 0.0}, {"id": "v250", "ph": "b37976b8", "equity": 100000000, "ret": 0.0}, {"id": "v251", "ph": "8c5a06da", "equity": 100000000, "ret": 0.0}, {"id": "v252", "ph": "381a65d1", "equity": 100000000, "ret": 0.0}, {"id": "v253", "ph": "87bd57d6", "equity": 100000000, "ret": 0.0}, {"id": "v254", "ph": "75e53118", "equity": 100000000, "ret": 0.0}, {"id": "v255", "ph": "92e3c5e0", "equity": 100000000, "ret": 0.0}, {"id": "v256", "ph": "e583f1dd", "equity": 100000000, "ret": 0.0}, {"id": "v257", "ph": "7fa33f5b", "equity": 100000000, "ret": 0.0}, {"id": "v258", "ph": "0b19bb06", "equity": 100000000, "ret": 0.0}, {"id": "v259", "ph": "178a1fe3", "equity": 100000000, "ret": 0.0}, {"id": "v260", "ph": "bab317db", "equity": 100000000, "ret": 0.0}, {"id": "v261", "ph": "965786e6", "equity": 100000000, "ret": 0.0}, {"id": "v262", "ph": "e07faa54", "equity": 100000000, "ret": 0.0}, {"id": "v263", "ph": "ca392811", "equity": 100000000, "ret": 0.0}, {"id": "v264", "ph": "8c65e60d", "equity": 100000000, "ret": 0.0}, {"id": "v265", "ph": "7faed59d", "equity": 100000000, "ret": 0.0}, {"id": "v266", "ph": "c133b585", "equity": 100000000, "ret": 0.0}, {"id": "v267", "ph": "766c47d7", "equity": 100000000, "ret": 0.0}, {"id": "v268", "ph": "9736502d", "equity": 100000000, "ret": 0.0}, {"id": "v269", "ph": "c0c861c4", "equity": 100000000, "ret": 0.0}, {"id": "v270", "ph": "1ce9fd2b", "equity": 100000000, "ret": 0.0}, {"id": "v271", "ph": "2b9ccdcd", "equity": 100000000, "ret": 0.0}, {"id": "v272", "ph": "2ed2027f", "equity": 100000000, "ret": 0.0}, {"id": "v273", "ph": "c726e8d5", "equity": 100000000, "ret": 0.0}, {"id": "v274", "ph": "62b011c8", "equity": 100000000, "ret": 0.0}, {"id": "v275", "ph": "3ebf0d91", "equity": 100000000, "ret": 0.0}, {"id": "v276", "ph": "51425eab", "equity": 100000000, "ret": 0.0}, {"id": "v277", "ph": "488b612a", "equity": 100000000, "ret": 0.0}, {"id": "v278", "ph": "861fb42b", "equity": 100000000, "ret": 0.0}, {"id": "v279", "ph": "37e203bb", "equity": 100000000, "ret": 0.0}, {"id": "v280", "ph": "60411037", "equity": 100000000, "ret": 0.0}, {"id": "v281", "ph": "7d9e5a9d", "equity": 100000000, "ret": 0.0}, {"id": "v282", "ph": "9ddd111d", "equity": 100000000, "ret": 0.0}, {"id": "v283", "ph": "479e4b25", "equity": 100000000, "ret": 0.0}, {"id": "v284", "ph": "261c5d58", "equity": 100000000, "ret": 0.0}, {"id": "v285", "ph": "962e35cd", "equity": 100000000, "ret": 0.0}, {"id": "v286", "ph": "4f6101e9", "equity": 100000000, "ret": 0.0}, {"id": "v287", "ph": "3bf14815", "equity": 100000000, "ret": 0.0}, {"id": "v288", "ph": "1c732194", "equity": 100000000, "ret": 0.0}], "20260616": [{"id": "v40", "ph": "70731d89", "equity": 100839155, "ret": 0.84}, {"id": "v42", "ph": "f36fddc6", "equity": 100839155, "ret": 0.84}, {"id": "v44", "ph": "364ea434", "equity": 100839155, "ret": 0.84}, {"id": "v2", "ph": "bab0fc2c", "equity": 100488676, "ret": 0.49}, {"id": "v3", "ph": "81d17cca", "equity": 100488676, "ret": 0.49}, {"id": "v4", "ph": "b6219595", "equity": 100488676, "ret": 0.49}, {"id": "v39", "ph": "11c27236", "equity": 100488676, "ret": 0.49}, {"id": "v41", "ph": "e9d84e84", "equity": 100488676, "ret": 0.49}, {"id": "v43", "ph": "94ea3b53", "equity": 100488676, "ret": 0.49}, {"id": "v48", "ph": "18854c6a", "equity": 100493421, "ret": 0.49}, {"id": "v90", "ph": "86e09c47", "equity": 100493421, "ret": 0.49}, {"id": "v98", "ph": "266fc53f", "equity": 100493421, "ret": 0.49}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100493421, "ret": 0.49}, {"id": "v6", "ph": "e96ce9e2", "equity": 100261535, "ret": 0.26}, {"id": "v35", "ph": "6a183375", "equity": 100261535, "ret": 0.26}, {"id": "v47", "ph": "ed758fcf", "equity": 100261535, "ret": 0.26}, {"id": "v105", "ph": "88395429", "equity": 100261535, "ret": 0.26}, {"id": "v27", "ph": "33d43bc6", "equity": 100242607, "ret": 0.24}, {"id": "v31", "ph": "3dc99490", "equity": 100242607, "ret": 0.24}, {"id": "v89", "ph": "c49d5680", "equity": 100242607, "ret": 0.24}, {"id": "v97", "ph": "ebf31977", "equity": 100242607, "ret": 0.24}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v109", "ph": "4c69fc95", "equity": 100000000, "ret": 0.0}, {"id": "v110", "ph": "8164d748", "equity": 100000000, "ret": 0.0}, {"id": "v111", "ph": "826e3d17", "equity": 100000000, "ret": 0.0}, {"id": "v112", "ph": "4cd47646", "equity": 100000000, "ret": 0.0}, {"id": "v113", "ph": "5b43d0bc", "equity": 100000000, "ret": 0.0}, {"id": "v114", "ph": "8686c36c", "equity": 100000000, "ret": 0.0}, {"id": "v115", "ph": "e1790a5a", "equity": 100000000, "ret": 0.0}, {"id": "v116", "ph": "e73fef98", "equity": 100000000, "ret": 0.0}, {"id": "v117", "ph": "c4ae8a11", "equity": 100000000, "ret": 0.0}, {"id": "v118", "ph": "538b63b9", "equity": 100000000, "ret": 0.0}, {"id": "v119", "ph": "ed2208f1", "equity": 100000000, "ret": 0.0}, {"id": "v120", "ph": "d25ca8b0", "equity": 100000000, "ret": 0.0}, {"id": "v131", "ph": "5f8c7082", "equity": 100000000, "ret": 0.0}, {"id": "v134", "ph": "afbb4ab8", "equity": 100000000, "ret": 0.0}, {"id": "v135", "ph": "53f4c78c", "equity": 100000000, "ret": 0.0}, {"id": "v136", "ph": "ceb32a66", "equity": 100000000, "ret": 0.0}, {"id": "v137", "ph": "60ec806f", "equity": 100000000, "ret": 0.0}, {"id": "v138", "ph": "e3acb223", "equity": 100000000, "ret": 0.0}, {"id": "v139", "ph": "cfbc79a5", "equity": 100000000, "ret": 0.0}, {"id": "v140", "ph": "52175b2b", "equity": 100000000, "ret": 0.0}, {"id": "v141", "ph": "47f30434", "equity": 100000000, "ret": 0.0}, {"id": "v142", "ph": "44fae695", "equity": 100000000, "ret": 0.0}, {"id": "v143", "ph": "5cf8f13a", "equity": 100000000, "ret": 0.0}, {"id": "v144", "ph": "6ffe4183", "equity": 100000000, "ret": 0.0}, {"id": "v145", "ph": "a89d85fc", "equity": 100000000, "ret": 0.0}, {"id": "v146", "ph": "071b9cb1", "equity": 100000000, "ret": 0.0}, {"id": "v147", "ph": "2fbeeedb", "equity": 100000000, "ret": 0.0}, {"id": "v148", "ph": "ada71802", "equity": 100000000, "ret": 0.0}, {"id": "v149", "ph": "c5329f8d", "equity": 100000000, "ret": 0.0}, {"id": "v150", "ph": "be41b974", "equity": 100000000, "ret": 0.0}, {"id": "v151", "ph": "2eb1dd06", "equity": 100000000, "ret": 0.0}, {"id": "v152", "ph": "5d2df346", "equity": 100000000, "ret": 0.0}, {"id": "v153", "ph": "49fd09d9", "equity": 100000000, "ret": 0.0}, {"id": "v154", "ph": "7a3a7788", "equity": 100000000, "ret": 0.0}, {"id": "v155", "ph": "31c0d84e", "equity": 100000000, "ret": 0.0}, {"id": "v156", "ph": "3f7bcd1b", "equity": 100000000, "ret": 0.0}, {"id": "v157", "ph": "80f3e23b", "equity": 100000000, "ret": 0.0}, {"id": "v158", "ph": "7e56eae3", "equity": 100000000, "ret": 0.0}, {"id": "v159", "ph": "af80c67a", "equity": 100000000, "ret": 0.0}, {"id": "v160", "ph": "b03f5295", "equity": 100000000, "ret": 0.0}, {"id": "v161", "ph": "ed5677e6", "equity": 100000000, "ret": 0.0}, {"id": "v162", "ph": "b8f71c74", "equity": 100000000, "ret": 0.0}, {"id": "v163", "ph": "452ab819", "equity": 100000000, "ret": 0.0}, {"id": "v164", "ph": "331cec1f", "equity": 100000000, "ret": 0.0}, {"id": "v165", "ph": "8f862b27", "equity": 100000000, "ret": 0.0}, {"id": "v166", "ph": "f684401e", "equity": 100000000, "ret": 0.0}, {"id": "v167", "ph": "b6d6aed8", "equity": 100000000, "ret": 0.0}, {"id": "v168", "ph": "81099b26", "equity": 100000000, "ret": 0.0}, {"id": "v189", "ph": "dfdbd0c8", "equity": 100000000, "ret": 0.0}, {"id": "v190", "ph": "e14af339", "equity": 100000000, "ret": 0.0}, {"id": "v195", "ph": "dd89cf59", "equity": 100000000, "ret": 0.0}, {"id": "v196", "ph": "a44aeef1", "equity": 100000000, "ret": 0.0}, {"id": "v197", "ph": "5c290a32", "equity": 100000000, "ret": 0.0}, {"id": "v198", "ph": "ffd1ee88", "equity": 100000000, "ret": 0.0}, {"id": "v199", "ph": "390bfab3", "equity": 100000000, "ret": 0.0}, {"id": "v200", "ph": "8bbb6ec7", "equity": 100000000, "ret": 0.0}, {"id": "v201", "ph": "cb8a413e", "equity": 100000000, "ret": 0.0}, {"id": "v202", "ph": "a528b806", "equity": 100000000, "ret": 0.0}, {"id": "v203", "ph": "2071defa", "equity": 100000000, "ret": 0.0}, {"id": "v204", "ph": "434e2f7a", "equity": 100000000, "ret": 0.0}, {"id": "v205", "ph": "02e5a3f5", "equity": 100000000, "ret": 0.0}, {"id": "v206", "ph": "16f62ab7", "equity": 100000000, "ret": 0.0}, {"id": "v207", "ph": "0f6601a0", "equity": 100000000, "ret": 0.0}, {"id": "v208", "ph": "445623de", "equity": 100000000, "ret": 0.0}, {"id": "v209", "ph": "8730802d", "equity": 100000000, "ret": 0.0}, {"id": "v210", "ph": "6f533a9b", "equity": 100000000, "ret": 0.0}, {"id": "v211", "ph": "9227673c", "equity": 100000000, "ret": 0.0}, {"id": "v212", "ph": "b9e1e8d1", "equity": 100000000, "ret": 0.0}, {"id": "v213", "ph": "0e1d8e45", "equity": 100000000, "ret": 0.0}, {"id": "v214", "ph": "0fb624bf", "equity": 100000000, "ret": 0.0}, {"id": "v215", "ph": "a904a49d", "equity": 100000000, "ret": 0.0}, {"id": "v216", "ph": "ee298bd3", "equity": 100000000, "ret": 0.0}, {"id": "v217", "ph": "4c547a61", "equity": 100000000, "ret": 0.0}, {"id": "v218", "ph": "7304d2d4", "equity": 100000000, "ret": 0.0}, {"id": "v219", "ph": "426d3834", "equity": 100000000, "ret": 0.0}, {"id": "v220", "ph": "565c27a7", "equity": 100000000, "ret": 0.0}, {"id": "v221", "ph": "cd2eef94", "equity": 100000000, "ret": 0.0}, {"id": "v222", "ph": "55de9eca", "equity": 100000000, "ret": 0.0}, {"id": "v223", "ph": "b57356b8", "equity": 100000000, "ret": 0.0}, {"id": "v224", "ph": "888ab069", "equity": 100000000, "ret": 0.0}, {"id": "v225", "ph": "e9f40f62", "equity": 100000000, "ret": 0.0}, {"id": "v226", "ph": "98fd37a4", "equity": 100000000, "ret": 0.0}, {"id": "v227", "ph": "9454b07a", "equity": 100000000, "ret": 0.0}, {"id": "v228", "ph": "caa54387", "equity": 100000000, "ret": 0.0}, {"id": "v229", "ph": "d9261dfb", "equity": 100000000, "ret": 0.0}, {"id": "v230", "ph": "141579fe", "equity": 100000000, "ret": 0.0}, {"id": "v231", "ph": "cd9469fa", "equity": 100000000, "ret": 0.0}, {"id": "v232", "ph": "6de1fffa", "equity": 100000000, "ret": 0.0}, {"id": "v233", "ph": "941006e0", "equity": 100000000, "ret": 0.0}, {"id": "v234", "ph": "9a289d18", "equity": 100000000, "ret": 0.0}, {"id": "v235", "ph": "3e6c1666", "equity": 100000000, "ret": 0.0}, {"id": "v236", "ph": "f9c75560", "equity": 100000000, "ret": 0.0}, {"id": "v237", "ph": "a10d68cf", "equity": 100000000, "ret": 0.0}, {"id": "v238", "ph": "f1a74611", "equity": 100000000, "ret": 0.0}, {"id": "v239", "ph": "96e693c4", "equity": 100000000, "ret": 0.0}, {"id": "v240", "ph": "db1869eb", "equity": 100000000, "ret": 0.0}, {"id": "v241", "ph": "52162002", "equity": 100000000, "ret": 0.0}, {"id": "v242", "ph": "e6c70cac", "equity": 100000000, "ret": 0.0}, {"id": "v243", "ph": "fa7a545a", "equity": 100000000, "ret": 0.0}, {"id": "v244", "ph": "520c5a65", "equity": 100000000, "ret": 0.0}, {"id": "v245", "ph": "ac84324f", "equity": 100000000, "ret": 0.0}, {"id": "v246", "ph": "618ddf71", "equity": 100000000, "ret": 0.0}, {"id": "v247", "ph": "ba973fa6", "equity": 100000000, "ret": 0.0}, {"id": "v248", "ph": "9ca5e3dc", "equity": 100000000, "ret": 0.0}, {"id": "v249", "ph": "36a32ca0", "equity": 100000000, "ret": 0.0}, {"id": "v250", "ph": "b37976b8", "equity": 100000000, "ret": 0.0}, {"id": "v251", "ph": "8c5a06da", "equity": 100000000, "ret": 0.0}, {"id": "v252", "ph": "381a65d1", "equity": 100000000, "ret": 0.0}, {"id": "v253", "ph": "87bd57d6", "equity": 100000000, "ret": 0.0}, {"id": "v254", "ph": "75e53118", "equity": 100000000, "ret": 0.0}, {"id": "v255", "ph": "92e3c5e0", "equity": 100000000, "ret": 0.0}, {"id": "v256", "ph": "e583f1dd", "equity": 100000000, "ret": 0.0}, {"id": "v257", "ph": "7fa33f5b", "equity": 100000000, "ret": 0.0}, {"id": "v258", "ph": "0b19bb06", "equity": 100000000, "ret": 0.0}, {"id": "v259", "ph": "178a1fe3", "equity": 100000000, "ret": 0.0}, {"id": "v260", "ph": "bab317db", "equity": 100000000, "ret": 0.0}, {"id": "v261", "ph": "965786e6", "equity": 100000000, "ret": 0.0}, {"id": "v262", "ph": "e07faa54", "equity": 100000000, "ret": 0.0}, {"id": "v263", "ph": "ca392811", "equity": 100000000, "ret": 0.0}, {"id": "v264", "ph": "8c65e60d", "equity": 100000000, "ret": 0.0}, {"id": "v265", "ph": "7faed59d", "equity": 100000000, "ret": 0.0}, {"id": "v266", "ph": "c133b585", "equity": 100000000, "ret": 0.0}, {"id": "v267", "ph": "766c47d7", "equity": 100000000, "ret": 0.0}, {"id": "v268", "ph": "9736502d", "equity": 100000000, "ret": 0.0}, {"id": "v269", "ph": "c0c861c4", "equity": 100000000, "ret": 0.0}, {"id": "v270", "ph": "1ce9fd2b", "equity": 100000000, "ret": 0.0}, {"id": "v271", "ph": "2b9ccdcd", "equity": 100000000, "ret": 0.0}, {"id": "v272", "ph": "2ed2027f", "equity": 100000000, "ret": 0.0}, {"id": "v273", "ph": "c726e8d5", "equity": 100000000, "ret": 0.0}, {"id": "v274", "ph": "62b011c8", "equity": 100000000, "ret": 0.0}, {"id": "v275", "ph": "3ebf0d91", "equity": 100000000, "ret": 0.0}, {"id": "v276", "ph": "51425eab", "equity": 100000000, "ret": 0.0}, {"id": "v277", "ph": "488b612a", "equity": 100000000, "ret": 0.0}, {"id": "v278", "ph": "861fb42b", "equity": 100000000, "ret": 0.0}, {"id": "v279", "ph": "37e203bb", "equity": 100000000, "ret": 0.0}, {"id": "v280", "ph": "60411037", "equity": 100000000, "ret": 0.0}, {"id": "v281", "ph": "7d9e5a9d", "equity": 100000000, "ret": 0.0}, {"id": "v282", "ph": "9ddd111d", "equity": 100000000, "ret": 0.0}, {"id": "v283", "ph": "479e4b25", "equity": 100000000, "ret": 0.0}, {"id": "v284", "ph": "261c5d58", "equity": 100000000, "ret": 0.0}, {"id": "v285", "ph": "962e35cd", "equity": 100000000, "ret": 0.0}, {"id": "v286", "ph": "4f6101e9", "equity": 100000000, "ret": 0.0}, {"id": "v287", "ph": "3bf14815", "equity": 100000000, "ret": 0.0}, {"id": "v288", "ph": "1c732194", "equity": 100000000, "ret": 0.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 100000000, "ret": 0.0}, {"id": "v301", "ph": "30da2021", "equity": 100000000, "ret": 0.0}, {"id": "v302", "ph": "3f30502d", "equity": 100000000, "ret": 0.0}, {"id": "v303", "ph": "1a084164", "equity": 100000000, "ret": 0.0}, {"id": "v296", "ph": "4c554378", "equity": 99588927, "ret": -0.41}, {"id": "v298", "ph": "5d4bbec0", "equity": 99481601, "ret": -0.52}, {"id": "v299", "ph": "25046b1a", "equity": 98593265, "ret": -1.41}], "20260617": [{"id": "v40", "ph": "70731d89", "equity": 100652033, "ret": 0.65}, {"id": "v42", "ph": "f36fddc6", "equity": 100652033, "ret": 0.65}, {"id": "v44", "ph": "364ea434", "equity": 100652033, "ret": 0.65}, {"id": "v48", "ph": "18854c6a", "equity": 100383529, "ret": 0.38}, {"id": "v90", "ph": "86e09c47", "equity": 100383642, "ret": 0.38}, {"id": "v98", "ph": "266fc53f", "equity": 100383642, "ret": 0.38}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100383529, "ret": 0.38}, {"id": "v2", "ph": "bab0fc2c", "equity": 100309506, "ret": 0.31}, {"id": "v3", "ph": "81d17cca", "equity": 100309506, "ret": 0.31}, {"id": "v4", "ph": "b6219595", "equity": 100309506, "ret": 0.31}, {"id": "v39", "ph": "11c27236", "equity": 100309506, "ret": 0.31}, {"id": "v41", "ph": "e9d84e84", "equity": 100309506, "ret": 0.31}, {"id": "v43", "ph": "94ea3b53", "equity": 100309506, "ret": 0.31}, {"id": "v6", "ph": "e96ce9e2", "equity": 100166592, "ret": 0.17}, {"id": "v35", "ph": "6a183375", "equity": 100166592, "ret": 0.17}, {"id": "v47", "ph": "ed758fcf", "equity": 100166592, "ret": 0.17}, {"id": "v105", "ph": "88395429", "equity": 100166592, "ret": 0.17}, {"id": "v27", "ph": "33d43bc6", "equity": 100154776, "ret": 0.15}, {"id": "v31", "ph": "3dc99490", "equity": 100154776, "ret": 0.15}, {"id": "v89", "ph": "c49d5680", "equity": 100154776, "ret": 0.15}, {"id": "v97", "ph": "ebf31977", "equity": 100154776, "ret": 0.15}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 99999065, "ret": -0.0}, {"id": "v302", "ph": "3f30502d", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 99870054, "ret": -0.13}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99870054, "ret": -0.13}, {"id": "v12", "ph": "f166fb0e", "equity": 99870054, "ret": -0.13}, {"id": "v26", "ph": "2e5f3fac", "equity": 99869724, "ret": -0.13}, {"id": "v29", "ph": "e46149f5", "equity": 99869724, "ret": -0.13}, {"id": "v32", "ph": "153055e6", "equity": 99870054, "ret": -0.13}, {"id": "v33", "ph": "97ad2410", "equity": 99870054, "ret": -0.13}, {"id": "v34", "ph": "d77f522d", "equity": 99869724, "ret": -0.13}, {"id": "v53", "ph": "2391ee16", "equity": 99870054, "ret": -0.13}, {"id": "v54", "ph": "b975742e", "equity": 99870054, "ret": -0.13}, {"id": "v57", "ph": "e7e98b6d", "equity": 99870054, "ret": -0.13}, {"id": "v58", "ph": "f1e52f55", "equity": 99870054, "ret": -0.13}, {"id": "v59", "ph": "1858e2ec", "equity": 99870054, "ret": -0.13}, {"id": "v60", "ph": "52560b06", "equity": 99870054, "ret": -0.13}, {"id": "v87", "ph": "c0be98c0", "equity": 99869724, "ret": -0.13}, {"id": "v88", "ph": "733579ce", "equity": 99868788, "ret": -0.13}, {"id": "v93", "ph": "f10d4e45", "equity": 99869724, "ret": -0.13}, {"id": "v94", "ph": "3e5d6b8a", "equity": 99868788, "ret": -0.13}, {"id": "v99", "ph": "fb39409b", "equity": 99870054, "ret": -0.13}, {"id": "v100", "ph": "ffa9571a", "equity": 99870054, "ret": -0.13}, {"id": "v101", "ph": "c4354346", "equity": 99870054, "ret": -0.13}, {"id": "v102", "ph": "e1601afe", "equity": 99870054, "ret": -0.13}, {"id": "v103", "ph": "75b0a37c", "equity": 99869724, "ret": -0.13}, {"id": "v104", "ph": "013c3fde", "equity": 99868788, "ret": -0.13}, {"id": "v117", "ph": "c4ae8a11", "equity": 99869288, "ret": -0.13}, {"id": "v119", "ph": "ed2208f1", "equity": 99869288, "ret": -0.13}, {"id": "v120", "ph": "d25ca8b0", "equity": 99869288, "ret": -0.13}, {"id": "v134", "ph": "afbb4ab8", "equity": 99868958, "ret": -0.13}, {"id": "v135", "ph": "53f4c78c", "equity": 99868958, "ret": -0.13}, {"id": "v136", "ph": "ceb32a66", "equity": 99869288, "ret": -0.13}, {"id": "v137", "ph": "60ec806f", "equity": 99868958, "ret": -0.13}, {"id": "v139", "ph": "cfbc79a5", "equity": 99868958, "ret": -0.13}, {"id": "v140", "ph": "52175b2b", "equity": 99869288, "ret": -0.13}, {"id": "v141", "ph": "47f30434", "equity": 99869288, "ret": -0.13}, {"id": "v142", "ph": "44fae695", "equity": 99868958, "ret": -0.13}, {"id": "v161", "ph": "ed5677e6", "equity": 99870054, "ret": -0.13}, {"id": "v162", "ph": "b8f71c74", "equity": 99869288, "ret": -0.13}, {"id": "v165", "ph": "8f862b27", "equity": 99870054, "ret": -0.13}, {"id": "v166", "ph": "f684401e", "equity": 99869288, "ret": -0.13}, {"id": "v167", "ph": "b6d6aed8", "equity": 99870054, "ret": -0.13}, {"id": "v168", "ph": "81099b26", "equity": 99869288, "ret": -0.13}, {"id": "v195", "ph": "dd89cf59", "equity": 99869724, "ret": -0.13}, {"id": "v196", "ph": "a44aeef1", "equity": 99868022, "ret": -0.13}, {"id": "v197", "ph": "5c290a32", "equity": 99869724, "ret": -0.13}, {"id": "v198", "ph": "ffd1ee88", "equity": 99868022, "ret": -0.13}, {"id": "v199", "ph": "390bfab3", "equity": 99870054, "ret": -0.13}, {"id": "v200", "ph": "8bbb6ec7", "equity": 99869288, "ret": -0.13}, {"id": "v201", "ph": "cb8a413e", "equity": 99869724, "ret": -0.13}, {"id": "v202", "ph": "a528b806", "equity": 99868022, "ret": -0.13}, {"id": "v205", "ph": "02e5a3f5", "equity": 99869724, "ret": -0.13}, {"id": "v206", "ph": "16f62ab7", "equity": 99868022, "ret": -0.13}, {"id": "v207", "ph": "0f6601a0", "equity": 99870054, "ret": -0.13}, {"id": "v208", "ph": "445623de", "equity": 99869288, "ret": -0.13}, {"id": "v209", "ph": "8730802d", "equity": 99870054, "ret": -0.13}, {"id": "v210", "ph": "6f533a9b", "equity": 99869288, "ret": -0.13}, {"id": "v211", "ph": "9227673c", "equity": 99869724, "ret": -0.13}, {"id": "v212", "ph": "b9e1e8d1", "equity": 99868022, "ret": -0.13}, {"id": "v217", "ph": "4c547a61", "equity": 99870054, "ret": -0.13}, {"id": "v218", "ph": "7304d2d4", "equity": 99870054, "ret": -0.13}, {"id": "v219", "ph": "426d3834", "equity": 99869288, "ret": -0.13}, {"id": "v220", "ph": "565c27a7", "equity": 99869288, "ret": -0.13}, {"id": "v221", "ph": "cd2eef94", "equity": 99869288, "ret": -0.13}, {"id": "v222", "ph": "55de9eca", "equity": 99869288, "ret": -0.13}, {"id": "v223", "ph": "b57356b8", "equity": 99870054, "ret": -0.13}, {"id": "v224", "ph": "888ab069", "equity": 99870054, "ret": -0.13}, {"id": "v225", "ph": "e9f40f62", "equity": 99869288, "ret": -0.13}, {"id": "v226", "ph": "98fd37a4", "equity": 99869288, "ret": -0.13}, {"id": "v227", "ph": "9454b07a", "equity": 99869288, "ret": -0.13}, {"id": "v228", "ph": "caa54387", "equity": 99869288, "ret": -0.13}, {"id": "v229", "ph": "d9261dfb", "equity": 99870054, "ret": -0.13}, {"id": "v230", "ph": "141579fe", "equity": 99870054, "ret": -0.13}, {"id": "v231", "ph": "cd9469fa", "equity": 99869288, "ret": -0.13}, {"id": "v232", "ph": "6de1fffa", "equity": 99869288, "ret": -0.13}, {"id": "v233", "ph": "941006e0", "equity": 99869288, "ret": -0.13}, {"id": "v234", "ph": "9a289d18", "equity": 99869288, "ret": -0.13}, {"id": "v235", "ph": "3e6c1666", "equity": 99870054, "ret": -0.13}, {"id": "v236", "ph": "f9c75560", "equity": 99870054, "ret": -0.13}, {"id": "v237", "ph": "a10d68cf", "equity": 99869288, "ret": -0.13}, {"id": "v238", "ph": "f1a74611", "equity": 99869288, "ret": -0.13}, {"id": "v239", "ph": "96e693c4", "equity": 99869288, "ret": -0.13}, {"id": "v240", "ph": "db1869eb", "equity": 99869288, "ret": -0.13}, {"id": "v265", "ph": "7faed59d", "equity": 99870054, "ret": -0.13}, {"id": "v266", "ph": "c133b585", "equity": 99870054, "ret": -0.13}, {"id": "v267", "ph": "766c47d7", "equity": 99869288, "ret": -0.13}, {"id": "v268", "ph": "9736502d", "equity": 99869288, "ret": -0.13}, {"id": "v269", "ph": "c0c861c4", "equity": 99869288, "ret": -0.13}, {"id": "v270", "ph": "1ce9fd2b", "equity": 99869288, "ret": -0.13}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99870054, "ret": -0.13}, {"id": "v272", "ph": "2ed2027f", "equity": 99870054, "ret": -0.13}, {"id": "v273", "ph": "c726e8d5", "equity": 99869288, "ret": -0.13}, {"id": "v274", "ph": "62b011c8", "equity": 99869288, "ret": -0.13}, {"id": "v275", "ph": "3ebf0d91", "equity": 99869288, "ret": -0.13}, {"id": "v276", "ph": "51425eab", "equity": 99869288, "ret": -0.13}, {"id": "v277", "ph": "488b612a", "equity": 99870054, "ret": -0.13}, {"id": "v278", "ph": "861fb42b", "equity": 99870054, "ret": -0.13}, {"id": "v279", "ph": "37e203bb", "equity": 99869288, "ret": -0.13}, {"id": "v280", "ph": "60411037", "equity": 99869288, "ret": -0.13}, {"id": "v281", "ph": "7d9e5a9d", "equity": 99869288, "ret": -0.13}, {"id": "v282", "ph": "9ddd111d", "equity": 99869288, "ret": -0.13}, {"id": "v283", "ph": "479e4b25", "equity": 99870054, "ret": -0.13}, {"id": "v284", "ph": "261c5d58", "equity": 99870054, "ret": -0.13}, {"id": "v285", "ph": "962e35cd", "equity": 99869288, "ret": -0.13}, {"id": "v286", "ph": "4f6101e9", "equity": 99869288, "ret": -0.13}, {"id": "v287", "ph": "3bf14815", "equity": 99869288, "ret": -0.13}, {"id": "v288", "ph": "1c732194", "equity": 99869288, "ret": -0.13}, {"id": "v301", "ph": "30da2021", "equity": 99870054, "ret": -0.13}, {"id": "v303", "ph": "1a084164", "equity": 99869305, "ret": -0.13}, {"id": "v1", "ph": "4874f4c9", "equity": 99839277, "ret": -0.16}, {"id": "v5", "ph": "ec2eb05a", "equity": 99839277, "ret": -0.16}, {"id": "v10", "ph": "e48c1012", "equity": 99839277, "ret": -0.16}, {"id": "v36", "ph": "feebff1a", "equity": 99838834, "ret": -0.16}, {"id": "v37", "ph": "fb2247aa", "equity": 99839277, "ret": -0.16}, {"id": "v38", "ph": "9b9083ae", "equity": 99839277, "ret": -0.16}, {"id": "v45", "ph": "964276a8", "equity": 99839277, "ret": -0.16}, {"id": "v46", "ph": "7dc0e360", "equity": 99839277, "ret": -0.16}, {"id": "v55", "ph": "2c44de9b", "equity": 99839277, "ret": -0.16}, {"id": "v56", "ph": "5d99704f", "equity": 99839277, "ret": -0.16}, {"id": "v107", "ph": "be5cd36b", "equity": 99838834, "ret": -0.16}, {"id": "v108", "ph": "67a6679a", "equity": 99837901, "ret": -0.16}, {"id": "v109", "ph": "4c69fc95", "equity": 99838342, "ret": -0.16}, {"id": "v110", "ph": "8164d748", "equity": 99837673, "ret": -0.16}, {"id": "v111", "ph": "826e3d17", "equity": 99837673, "ret": -0.16}, {"id": "v112", "ph": "4cd47646", "equity": 99837673, "ret": -0.16}, {"id": "v113", "ph": "5b43d0bc", "equity": 99838342, "ret": -0.16}, {"id": "v114", "ph": "8686c36c", "equity": 99837899, "ret": -0.16}, {"id": "v115", "ph": "e1790a5a", "equity": 99838342, "ret": -0.16}, {"id": "v116", "ph": "e73fef98", "equity": 99838342, "ret": -0.16}, {"id": "v118", "ph": "538b63b9", "equity": 99838342, "ret": -0.16}, {"id": "v131", "ph": "5f8c7082", "equity": 99838342, "ret": -0.16}, {"id": "v138", "ph": "e3acb223", "equity": 99838342, "ret": -0.16}, {"id": "v143", "ph": "5cf8f13a", "equity": 99837899, "ret": -0.16}, {"id": "v144", "ph": "6ffe4183", "equity": 99837899, "ret": -0.16}, {"id": "v145", "ph": "a89d85fc", "equity": 99839277, "ret": -0.16}, {"id": "v146", "ph": "071b9cb1", "equity": 99838342, "ret": -0.16}, {"id": "v147", "ph": "2fbeeedb", "equity": 99838607, "ret": -0.16}, {"id": "v148", "ph": "ada71802", "equity": 99836740, "ret": -0.16}, {"id": "v149", "ph": "c5329f8d", "equity": 99838607, "ret": -0.16}, {"id": "v150", "ph": "be41b974", "equity": 99836740, "ret": -0.16}, {"id": "v151", "ph": "2eb1dd06", "equity": 99838607, "ret": -0.16}, {"id": "v152", "ph": "5d2df346", "equity": 99836740, "ret": -0.16}, {"id": "v153", "ph": "49fd09d9", "equity": 99839277, "ret": -0.16}, {"id": "v154", "ph": "7a3a7788", "equity": 99838342, "ret": -0.16}, {"id": "v155", "ph": "31c0d84e", "equity": 99838834, "ret": -0.16}, {"id": "v156", "ph": "3f7bcd1b", "equity": 99836966, "ret": -0.16}, {"id": "v157", "ph": "80f3e23b", "equity": 99839277, "ret": -0.16}, {"id": "v158", "ph": "7e56eae3", "equity": 99838342, "ret": -0.16}, {"id": "v159", "ph": "af80c67a", "equity": 99839277, "ret": -0.16}, {"id": "v160", "ph": "b03f5295", "equity": 99838342, "ret": -0.16}, {"id": "v163", "ph": "452ab819", "equity": 99839277, "ret": -0.16}, {"id": "v164", "ph": "331cec1f", "equity": 99838342, "ret": -0.16}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99839277, "ret": -0.16}, {"id": "v190", "ph": "e14af339", "equity": 99838342, "ret": -0.16}, {"id": "v203", "ph": "2071defa", "equity": 99839277, "ret": -0.16}, {"id": "v204", "ph": "434e2f7a", "equity": 99838342, "ret": -0.16}, {"id": "v213", "ph": "0e1d8e45", "equity": 99838834, "ret": -0.16}, {"id": "v214", "ph": "0fb624bf", "equity": 99836966, "ret": -0.16}, {"id": "v215", "ph": "a904a49d", "equity": 99838834, "ret": -0.16}, {"id": "v216", "ph": "ee298bd3", "equity": 99836966, "ret": -0.16}, {"id": "v241", "ph": "52162002", "equity": 99839277, "ret": -0.16}, {"id": "v242", "ph": "e6c70cac", "equity": 99839277, "ret": -0.16}, {"id": "v243", "ph": "fa7a545a", "equity": 99838342, "ret": -0.16}, {"id": "v244", "ph": "520c5a65", "equity": 99838342, "ret": -0.16}, {"id": "v245", "ph": "ac84324f", "equity": 99838342, "ret": -0.16}, {"id": "v246", "ph": "618ddf71", "equity": 99838342, "ret": -0.16}, {"id": "v247", "ph": "ba973fa6", "equity": 99839277, "ret": -0.16}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99839277, "ret": -0.16}, {"id": "v249", "ph": "36a32ca0", "equity": 99838342, "ret": -0.16}, {"id": "v250", "ph": "b37976b8", "equity": 99838342, "ret": -0.16}, {"id": "v251", "ph": "8c5a06da", "equity": 99838342, "ret": -0.16}, {"id": "v252", "ph": "381a65d1", "equity": 99838342, "ret": -0.16}, {"id": "v253", "ph": "87bd57d6", "equity": 99839277, "ret": -0.16}, {"id": "v254", "ph": "75e53118", "equity": 99839277, "ret": -0.16}, {"id": "v255", "ph": "92e3c5e0", "equity": 99838342, "ret": -0.16}, {"id": "v256", "ph": "e583f1dd", "equity": 99838342, "ret": -0.16}, {"id": "v257", "ph": "7fa33f5b", "equity": 99838342, "ret": -0.16}, {"id": "v258", "ph": "0b19bb06", "equity": 99838342, "ret": -0.16}, {"id": "v259", "ph": "178a1fe3", "equity": 99839277, "ret": -0.16}, {"id": "v260", "ph": "bab317db", "equity": 99839277, "ret": -0.16}, {"id": "v261", "ph": "965786e6", "equity": 99838342, "ret": -0.16}, {"id": "v262", "ph": "e07faa54", "equity": 99838342, "ret": -0.16}, {"id": "v263", "ph": "ca392811", "equity": 99838342, "ret": -0.16}, {"id": "v264", "ph": "8c65e60d", "equity": 99838342, "ret": -0.16}, {"id": "v298", "ph": "5d4bbec0", "equity": 99278910, "ret": -0.72}, {"id": "v299", "ph": "25046b1a", "equity": 99269453, "ret": -0.73}, {"id": "v296", "ph": "4c554378", "equity": 98793078, "ret": -1.21}], "20260618": [{"id": "v299", "ph": "25046b1a", "equity": 100522238, "ret": 0.52}, {"id": "v40", "ph": "70731d89", "equity": 100349540, "ret": 0.35}, {"id": "v42", "ph": "f36fddc6", "equity": 100349540, "ret": 0.35}, {"id": "v44", "ph": "364ea434", "equity": 100349540, "ret": 0.35}, {"id": "v48", "ph": "18854c6a", "equity": 100115675, "ret": 0.12}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100115675, "ret": 0.12}, {"id": "v148", "ph": "ada71802", "equity": 100083234, "ret": 0.08}, {"id": "v150", "ph": "be41b974", "equity": 100083234, "ret": 0.08}, {"id": "v152", "ph": "5d2df346", "equity": 100083234, "ret": 0.08}, {"id": "v90", "ph": "86e09c47", "equity": 100043354, "ret": 0.04}, {"id": "v98", "ph": "266fc53f", "equity": 100043354, "ret": 0.04}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v302", "ph": "3f30502d", "equity": 99947951, "ret": -0.05}, {"id": "v28", "ph": "28e87677", "equity": 99943690, "ret": -0.06}, {"id": "v7", "ph": "de835eae", "equity": 99934863, "ret": -0.07}, {"id": "v8", "ph": "18c6740b", "equity": 99934863, "ret": -0.07}, {"id": "v23", "ph": "aec632b1", "equity": 99934863, "ret": -0.07}, {"id": "v30", "ph": "df71f475", "equity": 99934863, "ret": -0.07}, {"id": "v156", "ph": "3f7bcd1b", "equity": 99921725, "ret": -0.08}, {"id": "v214", "ph": "0fb624bf", "equity": 99921725, "ret": -0.08}, {"id": "v108", "ph": "67a6679a", "equity": 99911859, "ret": -0.09}, {"id": "v9", "ph": "141268ab", "equity": 99866254, "ret": -0.13}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99866254, "ret": -0.13}, {"id": "v12", "ph": "f166fb0e", "equity": 99866254, "ret": -0.13}, {"id": "v32", "ph": "153055e6", "equity": 99866254, "ret": -0.13}, {"id": "v33", "ph": "97ad2410", "equity": 99866254, "ret": -0.13}, {"id": "v53", "ph": "2391ee16", "equity": 99866254, "ret": -0.13}, {"id": "v57", "ph": "e7e98b6d", "equity": 99866254, "ret": -0.13}, {"id": "v59", "ph": "1858e2ec", "equity": 99866254, "ret": -0.13}, {"id": "v99", "ph": "fb39409b", "equity": 99866254, "ret": -0.13}, {"id": "v101", "ph": "c4354346", "equity": 99866254, "ret": -0.13}, {"id": "v136", "ph": "ceb32a66", "equity": 99874338, "ret": -0.13}, {"id": "v161", "ph": "ed5677e6", "equity": 99866254, "ret": -0.13}, {"id": "v165", "ph": "8f862b27", "equity": 99866254, "ret": -0.13}, {"id": "v167", "ph": "b6d6aed8", "equity": 99866254, "ret": -0.13}, {"id": "v198", "ph": "ffd1ee88", "equity": 99869669, "ret": -0.13}, {"id": "v199", "ph": "390bfab3", "equity": 99866254, "ret": -0.13}, {"id": "v206", "ph": "16f62ab7", "equity": 99869669, "ret": -0.13}, {"id": "v207", "ph": "0f6601a0", "equity": 99866254, "ret": -0.13}, {"id": "v209", "ph": "8730802d", "equity": 99866254, "ret": -0.13}, {"id": "v217", "ph": "4c547a61", "equity": 99866254, "ret": -0.13}, {"id": "v218", "ph": "7304d2d4", "equity": 99866254, "ret": -0.13}, {"id": "v223", "ph": "b57356b8", "equity": 99866254, "ret": -0.13}, {"id": "v224", "ph": "888ab069", "equity": 99866254, "ret": -0.13}, {"id": "v229", "ph": "d9261dfb", "equity": 99866254, "ret": -0.13}, {"id": "v230", "ph": "141579fe", "equity": 99866254, "ret": -0.13}, {"id": "v235", "ph": "3e6c1666", "equity": 99866254, "ret": -0.13}, {"id": "v236", "ph": "f9c75560", "equity": 99866254, "ret": -0.13}, {"id": "v265", "ph": "7faed59d", "equity": 99866254, "ret": -0.13}, {"id": "v266", "ph": "c133b585", "equity": 99866254, "ret": -0.13}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99866254, "ret": -0.13}, {"id": "v272", "ph": "2ed2027f", "equity": 99866254, "ret": -0.13}, {"id": "v277", "ph": "488b612a", "equity": 99866254, "ret": -0.13}, {"id": "v278", "ph": "861fb42b", "equity": 99866254, "ret": -0.13}, {"id": "v283", "ph": "479e4b25", "equity": 99866254, "ret": -0.13}, {"id": "v284", "ph": "261c5d58", "equity": 99866254, "ret": -0.13}, {"id": "v301", "ph": "30da2021", "equity": 99866254, "ret": -0.13}, {"id": "v88", "ph": "733579ce", "equity": 99861585, "ret": -0.14}, {"id": "v94", "ph": "3e5d6b8a", "equity": 99861585, "ret": -0.14}, {"id": "v104", "ph": "013c3fde", "equity": 99861585, "ret": -0.14}, {"id": "v115", "ph": "e1790a5a", "equity": 99844442, "ret": -0.16}, {"id": "v116", "ph": "e73fef98", "equity": 99844442, "ret": -0.16}, {"id": "v131", "ph": "5f8c7082", "equity": 99844442, "ret": -0.16}, {"id": "v138", "ph": "e3acb223", "equity": 99844442, "ret": -0.16}, {"id": "v1", "ph": "4874f4c9", "equity": 99834577, "ret": -0.17}, {"id": "v5", "ph": "ec2eb05a", "equity": 99834577, "ret": -0.17}, {"id": "v10", "ph": "e48c1012", "equity": 99834577, "ret": -0.17}, {"id": "v37", "ph": "fb2247aa", "equity": 99834577, "ret": -0.17}, {"id": "v45", "ph": "964276a8", "equity": 99834577, "ret": -0.17}, {"id": "v55", "ph": "2c44de9b", "equity": 99834577, "ret": -0.17}, {"id": "v145", "ph": "a89d85fc", "equity": 99834577, "ret": -0.17}, {"id": "v153", "ph": "49fd09d9", "equity": 99834577, "ret": -0.17}, {"id": "v157", "ph": "80f3e23b", "equity": 99834577, "ret": -0.17}, {"id": "v159", "ph": "af80c67a", "equity": 99834577, "ret": -0.17}, {"id": "v163", "ph": "452ab819", "equity": 99834577, "ret": -0.17}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99834577, "ret": -0.17}, {"id": "v203", "ph": "2071defa", "equity": 99834577, "ret": -0.17}, {"id": "v241", "ph": "52162002", "equity": 99834577, "ret": -0.17}, {"id": "v242", "ph": "e6c70cac", "equity": 99834577, "ret": -0.17}, {"id": "v247", "ph": "ba973fa6", "equity": 99834577, "ret": -0.17}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99834577, "ret": -0.17}, {"id": "v253", "ph": "87bd57d6", "equity": 99834577, "ret": -0.17}, {"id": "v254", "ph": "75e53118", "equity": 99834577, "ret": -0.17}, {"id": "v259", "ph": "178a1fe3", "equity": 99834577, "ret": -0.17}, {"id": "v260", "ph": "bab317db", "equity": 99834577, "ret": -0.17}, {"id": "v89", "ph": "c49d5680", "equity": 99817776, "ret": -0.18}, {"id": "v97", "ph": "ebf31977", "equity": 99817776, "ret": -0.18}, {"id": "v47", "ph": "ed758fcf", "equity": 99773192, "ret": -0.23}, {"id": "v105", "ph": "88395429", "equity": 99773192, "ret": -0.23}, {"id": "v27", "ph": "33d43bc6", "equity": 99761770, "ret": -0.24}, {"id": "v31", "ph": "3dc99490", "equity": 99761770, "ret": -0.24}, {"id": "v135", "ph": "53f4c78c", "equity": 99762008, "ret": -0.24}, {"id": "v139", "ph": "cfbc79a5", "equity": 99762008, "ret": -0.24}, {"id": "v26", "ph": "2e5f3fac", "equity": 99753924, "ret": -0.25}, {"id": "v29", "ph": "e46149f5", "equity": 99753924, "ret": -0.25}, {"id": "v34", "ph": "d77f522d", "equity": 99753924, "ret": -0.25}, {"id": "v87", "ph": "c0be98c0", "equity": 99753924, "ret": -0.25}, {"id": "v93", "ph": "f10d4e45", "equity": 99753924, "ret": -0.25}, {"id": "v103", "ph": "75b0a37c", "equity": 99753924, "ret": -0.25}, {"id": "v195", "ph": "dd89cf59", "equity": 99753924, "ret": -0.25}, {"id": "v197", "ph": "5c290a32", "equity": 99753924, "ret": -0.25}, {"id": "v201", "ph": "cb8a413e", "equity": 99753924, "ret": -0.25}, {"id": "v205", "ph": "02e5a3f5", "equity": 99753924, "ret": -0.25}, {"id": "v211", "ph": "9227673c", "equity": 99753924, "ret": -0.25}, {"id": "v6", "ph": "e96ce9e2", "equity": 99708359, "ret": -0.29}, {"id": "v35", "ph": "6a183375", "equity": 99708359, "ret": -0.29}, {"id": "v114", "ph": "8686c36c", "equity": 99693599, "ret": -0.31}, {"id": "v143", "ph": "5cf8f13a", "equity": 99693599, "ret": -0.31}, {"id": "v36", "ph": "feebff1a", "equity": 99683734, "ret": -0.32}, {"id": "v107", "ph": "be5cd36b", "equity": 99683734, "ret": -0.32}, {"id": "v155", "ph": "31c0d84e", "equity": 99683734, "ret": -0.32}, {"id": "v213", "ph": "0e1d8e45", "equity": 99683734, "ret": -0.32}, {"id": "v215", "ph": "a904a49d", "equity": 99683734, "ret": -0.32}, {"id": "v39", "ph": "11c27236", "equity": 99623306, "ret": -0.38}, {"id": "v41", "ph": "e9d84e84", "equity": 99623306, "ret": -0.38}, {"id": "v43", "ph": "94ea3b53", "equity": 99623306, "ret": -0.38}, {"id": "v110", "ph": "8164d748", "equity": 99616573, "ret": -0.38}, {"id": "v111", "ph": "826e3d17", "equity": 99616573, "ret": -0.38}, {"id": "v112", "ph": "4cd47646", "equity": 99616573, "ret": -0.38}, {"id": "v147", "ph": "2fbeeedb", "equity": 99606707, "ret": -0.39}, {"id": "v149", "ph": "c5329f8d", "equity": 99606707, "ret": -0.39}, {"id": "v151", "ph": "2eb1dd06", "equity": 99606707, "ret": -0.39}, {"id": "v2", "ph": "bab0fc2c", "equity": 99558474, "ret": -0.44}, {"id": "v3", "ph": "81d17cca", "equity": 99558474, "ret": -0.44}, {"id": "v4", "ph": "b6219595", "equity": 99558474, "ret": -0.44}, {"id": "v92", "ph": "14a13097", "equity": 99557044, "ret": -0.44}, {"id": "v200", "ph": "8bbb6ec7", "equity": 99487901, "ret": -0.51}, {"id": "v54", "ph": "b975742e", "equity": 99479817, "ret": -0.52}, {"id": "v58", "ph": "f1e52f55", "equity": 99479817, "ret": -0.52}, {"id": "v60", "ph": "52560b06", "equity": 99479817, "ret": -0.52}, {"id": "v100", "ph": "ffa9571a", "equity": 99479817, "ret": -0.52}, {"id": "v102", "ph": "e1601afe", "equity": 99479817, "ret": -0.52}, {"id": "v50", "ph": "690a50b5", "equity": 99473000, "ret": -0.53}, {"id": "v52", "ph": "c1939d0b", "equity": 99473000, "ret": -0.53}, {"id": "v82", "ph": "01847af6", "equity": 99473000, "ret": -0.53}, {"id": "v96", "ph": "095b119f", "equity": 99473000, "ret": -0.53}, {"id": "v117", "ph": "c4ae8a11", "equity": 99411094, "ret": -0.59}, {"id": "v119", "ph": "ed2208f1", "equity": 99411094, "ret": -0.59}, {"id": "v120", "ph": "d25ca8b0", "equity": 99411094, "ret": -0.59}, {"id": "v140", "ph": "52175b2b", "equity": 99411094, "ret": -0.59}, {"id": "v141", "ph": "47f30434", "equity": 99411094, "ret": -0.59}, {"id": "v196", "ph": "a44aeef1", "equity": 99406425, "ret": -0.59}, {"id": "v202", "ph": "a528b806", "equity": 99406425, "ret": -0.59}, {"id": "v212", "ph": "b9e1e8d1", "equity": 99406425, "ret": -0.59}, {"id": "v219", "ph": "426d3834", "equity": 99411094, "ret": -0.59}, {"id": "v220", "ph": "565c27a7", "equity": 99411094, "ret": -0.59}, {"id": "v225", "ph": "e9f40f62", "equity": 99411094, "ret": -0.59}, {"id": "v226", "ph": "98fd37a4", "equity": 99411094, "ret": -0.59}, {"id": "v231", "ph": "cd9469fa", "equity": 99411094, "ret": -0.59}, {"id": "v232", "ph": "6de1fffa", "equity": 99411094, "ret": -0.59}, {"id": "v237", "ph": "a10d68cf", "equity": 99411094, "ret": -0.59}, {"id": "v238", "ph": "f1a74611", "equity": 99411094, "ret": -0.59}, {"id": "v267", "ph": "766c47d7", "equity": 99411094, "ret": -0.59}, {"id": "v268", "ph": "9736502d", "equity": 99411094, "ret": -0.59}, {"id": "v273", "ph": "c726e8d5", "equity": 99411094, "ret": -0.59}, {"id": "v274", "ph": "62b011c8", "equity": 99411094, "ret": -0.59}, {"id": "v279", "ph": "37e203bb", "equity": 99411094, "ret": -0.59}, {"id": "v280", "ph": "60411037", "equity": 99411094, "ret": -0.59}, {"id": "v285", "ph": "962e35cd", "equity": 99411094, "ret": -0.59}, {"id": "v286", "ph": "4f6101e9", "equity": 99411094, "ret": -0.59}, {"id": "v303", "ph": "1a084164", "equity": 99410912, "ret": -0.59}, {"id": "v158", "ph": "7e56eae3", "equity": 99382788, "ret": -0.62}, {"id": "v160", "ph": "b03f5295", "equity": 99382788, "ret": -0.62}, {"id": "v190", "ph": "e14af339", "equity": 99382788, "ret": -0.62}, {"id": "v204", "ph": "434e2f7a", "equity": 99382788, "ret": -0.62}, {"id": "v134", "ph": "afbb4ab8", "equity": 99298764, "ret": -0.7}, {"id": "v137", "ph": "60ec806f", "equity": 99298764, "ret": -0.7}, {"id": "v142", "ph": "44fae695", "equity": 99298764, "ret": -0.7}, {"id": "v216", "ph": "ee298bd3", "equity": 99295527, "ret": -0.7}, {"id": "v38", "ph": "9b9083ae", "equity": 99223798, "ret": -0.78}, {"id": "v46", "ph": "7dc0e360", "equity": 99223798, "ret": -0.78}, {"id": "v56", "ph": "5d99704f", "equity": 99223798, "ret": -0.78}, {"id": "v221", "ph": "cd2eef94", "equity": 99186752, "ret": -0.81}, {"id": "v227", "ph": "9454b07a", "equity": 99186752, "ret": -0.81}, {"id": "v233", "ph": "941006e0", "equity": 99186752, "ret": -0.81}, {"id": "v239", "ph": "96e693c4", "equity": 99186752, "ret": -0.81}, {"id": "v269", "ph": "c0c861c4", "equity": 99186752, "ret": -0.81}, {"id": "v275", "ph": "3ebf0d91", "equity": 99186752, "ret": -0.81}, {"id": "v281", "ph": "7d9e5a9d", "equity": 99186752, "ret": -0.81}, {"id": "v287", "ph": "3bf14815", "equity": 99186752, "ret": -0.81}, {"id": "v144", "ph": "6ffe4183", "equity": 99068189, "ret": -0.93}, {"id": "v109", "ph": "4c69fc95", "equity": 99020588, "ret": -0.98}, {"id": "v113", "ph": "5b43d0bc", "equity": 99020588, "ret": -0.98}, {"id": "v118", "ph": "538b63b9", "equity": 99020588, "ret": -0.98}, {"id": "v162", "ph": "b8f71c74", "equity": 99024658, "ret": -0.98}, {"id": "v166", "ph": "f684401e", "equity": 99024658, "ret": -0.98}, {"id": "v168", "ph": "81099b26", "equity": 99024658, "ret": -0.98}, {"id": "v208", "ph": "445623de", "equity": 99024658, "ret": -0.98}, {"id": "v210", "ph": "6f533a9b", "equity": 99024658, "ret": -0.98}, {"id": "v222", "ph": "55de9eca", "equity": 99024658, "ret": -0.98}, {"id": "v228", "ph": "caa54387", "equity": 99024658, "ret": -0.98}, {"id": "v234", "ph": "9a289d18", "equity": 99024658, "ret": -0.98}, {"id": "v240", "ph": "db1869eb", "equity": 99024658, "ret": -0.98}, {"id": "v243", "ph": "fa7a545a", "equity": 99020588, "ret": -0.98}, {"id": "v244", "ph": "520c5a65", "equity": 99020588, "ret": -0.98}, {"id": "v249", "ph": "36a32ca0", "equity": 99020588, "ret": -0.98}, {"id": "v250", "ph": "b37976b8", "equity": 99020588, "ret": -0.98}, {"id": "v255", "ph": "92e3c5e0", "equity": 99020588, "ret": -0.98}, {"id": "v256", "ph": "e583f1dd", "equity": 99020588, "ret": -0.98}, {"id": "v261", "ph": "965786e6", "equity": 99020588, "ret": -0.98}, {"id": "v262", "ph": "e07faa54", "equity": 99020588, "ret": -0.98}, {"id": "v270", "ph": "1ce9fd2b", "equity": 99024658, "ret": -0.98}, {"id": "v276", "ph": "51425eab", "equity": 99024658, "ret": -0.98}, {"id": "v282", "ph": "9ddd111d", "equity": 99024658, "ret": -0.98}, {"id": "v288", "ph": "1c732194", "equity": 99024658, "ret": -0.98}, {"id": "v245", "ph": "ac84324f", "equity": 98570594, "ret": -1.43}, {"id": "v251", "ph": "8c5a06da", "equity": 98570594, "ret": -1.43}, {"id": "v257", "ph": "7fa33f5b", "equity": 98570594, "ret": -1.43}, {"id": "v263", "ph": "ca392811", "equity": 98570594, "ret": -1.43}, {"id": "v146", "ph": "071b9cb1", "equity": 98408500, "ret": -1.59}, {"id": "v154", "ph": "7a3a7788", "equity": 98408500, "ret": -1.59}, {"id": "v164", "ph": "331cec1f", "equity": 98408500, "ret": -1.59}, {"id": "v246", "ph": "618ddf71", "equity": 98408500, "ret": -1.59}, {"id": "v252", "ph": "381a65d1", "equity": 98408500, "ret": -1.59}, {"id": "v258", "ph": "0b19bb06", "equity": 98408500, "ret": -1.59}, {"id": "v264", "ph": "8c65e60d", "equity": 98408500, "ret": -1.59}, {"id": "v300", "ph": "c6ddc17b", "equity": 98414155, "ret": -1.59}, {"id": "v296", "ph": "4c554378", "equity": 98369185, "ret": -1.63}, {"id": "v298", "ph": "5d4bbec0", "equity": 97903330, "ret": -2.1}], "20260619": [{"id": "v81", "ph": "a6eac1e4", "equity": 100012103, "ret": 0.01}, {"id": "v91", "ph": "5674a3d7", "equity": 100012103, "ret": 0.01}, {"id": "v95", "ph": "7e28e756", "equity": 100012103, "ret": 0.01}, {"id": "v49", "ph": "cdba73e0", "equity": 99771263, "ret": -0.23}, {"id": "v51", "ph": "21a98e46", "equity": 99771263, "ret": -0.23}, {"id": "v99", "ph": "fb39409b", "equity": 99699720, "ret": -0.3}, {"id": "v101", "ph": "c4354346", "equity": 99699720, "ret": -0.3}, {"id": "v199", "ph": "390bfab3", "equity": 99699720, "ret": -0.3}, {"id": "v207", "ph": "0f6601a0", "equity": 99699720, "ret": -0.3}, {"id": "v209", "ph": "8730802d", "equity": 99699720, "ret": -0.3}, {"id": "v28", "ph": "28e87677", "equity": 99582892, "ret": -0.42}, {"id": "v32", "ph": "153055e6", "equity": 99539606, "ret": -0.46}, {"id": "v33", "ph": "97ad2410", "equity": 99539606, "ret": -0.46}, {"id": "v89", "ph": "c49d5680", "equity": 99535129, "ret": -0.46}, {"id": "v97", "ph": "ebf31977", "equity": 99535129, "ret": -0.46}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99539444, "ret": -0.46}, {"id": "v203", "ph": "2071defa", "equity": 99539444, "ret": -0.46}, {"id": "v302", "ph": "3f30502d", "equity": 99534056, "ret": -0.47}, {"id": "v9", "ph": "141268ab", "equity": 99523104, "ret": -0.48}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99523104, "ret": -0.48}, {"id": "v12", "ph": "f166fb0e", "equity": 99523104, "ret": -0.48}, {"id": "v53", "ph": "2391ee16", "equity": 99523104, "ret": -0.48}, {"id": "v57", "ph": "e7e98b6d", "equity": 99523104, "ret": -0.48}, {"id": "v59", "ph": "1858e2ec", "equity": 99523104, "ret": -0.48}, {"id": "v161", "ph": "ed5677e6", "equity": 99523104, "ret": -0.48}, {"id": "v165", "ph": "8f862b27", "equity": 99523104, "ret": -0.48}, {"id": "v167", "ph": "b6d6aed8", "equity": 99523104, "ret": -0.48}, {"id": "v217", "ph": "4c547a61", "equity": 99511038, "ret": -0.49}, {"id": "v218", "ph": "7304d2d4", "equity": 99511038, "ret": -0.49}, {"id": "v23", "ph": "aec632b1", "equity": 99482492, "ret": -0.52}, {"id": "v30", "ph": "df71f475", "equity": 99482492, "ret": -0.52}, {"id": "v301", "ph": "30da2021", "equity": 99470408, "ret": -0.53}, {"id": "v7", "ph": "de835eae", "equity": 99459988, "ret": -0.54}, {"id": "v8", "ph": "18c6740b", "equity": 99459988, "ret": -0.54}, {"id": "v87", "ph": "c0be98c0", "equity": 99461390, "ret": -0.54}, {"id": "v93", "ph": "f10d4e45", "equity": 99461390, "ret": -0.54}, {"id": "v103", "ph": "75b0a37c", "equity": 99461390, "ret": -0.54}, {"id": "v195", "ph": "dd89cf59", "equity": 99461390, "ret": -0.54}, {"id": "v197", "ph": "5c290a32", "equity": 99461390, "ret": -0.54}, {"id": "v201", "ph": "cb8a413e", "equity": 99461390, "ret": -0.54}, {"id": "v205", "ph": "02e5a3f5", "equity": 99461390, "ret": -0.54}, {"id": "v211", "ph": "9227673c", "equity": 99461390, "ret": -0.54}, {"id": "v223", "ph": "b57356b8", "equity": 99438670, "ret": -0.56}, {"id": "v224", "ph": "888ab069", "equity": 99438670, "ret": -0.56}, {"id": "v229", "ph": "d9261dfb", "equity": 99438670, "ret": -0.56}, {"id": "v230", "ph": "141579fe", "equity": 99438670, "ret": -0.56}, {"id": "v235", "ph": "3e6c1666", "equity": 99438670, "ret": -0.56}, {"id": "v236", "ph": "f9c75560", "equity": 99438670, "ret": -0.56}, {"id": "v265", "ph": "7faed59d", "equity": 99438670, "ret": -0.56}, {"id": "v266", "ph": "c133b585", "equity": 99438670, "ret": -0.56}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99438670, "ret": -0.56}, {"id": "v272", "ph": "2ed2027f", "equity": 99438670, "ret": -0.56}, {"id": "v277", "ph": "488b612a", "equity": 99438670, "ret": -0.56}, {"id": "v278", "ph": "861fb42b", "equity": 99438670, "ret": -0.56}, {"id": "v283", "ph": "479e4b25", "equity": 99438670, "ret": -0.56}, {"id": "v284", "ph": "261c5d58", "equity": 99438670, "ret": -0.56}, {"id": "v105", "ph": "88395429", "equity": 99433845, "ret": -0.57}, {"id": "v1", "ph": "4874f4c9", "equity": 99368847, "ret": -0.63}, {"id": "v5", "ph": "ec2eb05a", "equity": 99368847, "ret": -0.63}, {"id": "v10", "ph": "e48c1012", "equity": 99368847, "ret": -0.63}, {"id": "v37", "ph": "fb2247aa", "equity": 99368847, "ret": -0.63}, {"id": "v45", "ph": "964276a8", "equity": 99368847, "ret": -0.63}, {"id": "v55", "ph": "2c44de9b", "equity": 99368847, "ret": -0.63}, {"id": "v145", "ph": "a89d85fc", "equity": 99368847, "ret": -0.63}, {"id": "v153", "ph": "49fd09d9", "equity": 99368847, "ret": -0.63}, {"id": "v163", "ph": "452ab819", "equity": 99368847, "ret": -0.63}, {"id": "v136", "ph": "ceb32a66", "equity": 99344140, "ret": -0.66}, {"id": "v26", "ph": "2e5f3fac", "equity": 99301276, "ret": -0.7}, {"id": "v29", "ph": "e46149f5", "equity": 99301276, "ret": -0.7}, {"id": "v34", "ph": "d77f522d", "equity": 99301276, "ret": -0.7}, {"id": "v157", "ph": "80f3e23b", "equity": 99298604, "ret": -0.7}, {"id": "v159", "ph": "af80c67a", "equity": 99298604, "ret": -0.7}, {"id": "v241", "ph": "52162002", "equity": 99284413, "ret": -0.72}, {"id": "v242", "ph": "e6c70cac", "equity": 99284413, "ret": -0.72}, {"id": "v247", "ph": "ba973fa6", "equity": 99284413, "ret": -0.72}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99284413, "ret": -0.72}, {"id": "v253", "ph": "87bd57d6", "equity": 99284413, "ret": -0.72}, {"id": "v254", "ph": "75e53118", "equity": 99284413, "ret": -0.72}, {"id": "v259", "ph": "178a1fe3", "equity": 99284413, "ret": -0.72}, {"id": "v260", "ph": "bab317db", "equity": 99284413, "ret": -0.72}, {"id": "v107", "ph": "be5cd36b", "equity": 99219401, "ret": -0.78}, {"id": "v213", "ph": "0e1d8e45", "equity": 99219401, "ret": -0.78}, {"id": "v215", "ph": "a904a49d", "equity": 99219401, "ret": -0.78}, {"id": "v47", "ph": "ed758fcf", "equity": 99193004, "ret": -0.81}, {"id": "v299", "ph": "25046b1a", "equity": 99138724, "ret": -0.86}, {"id": "v27", "ph": "33d43bc6", "equity": 99107373, "ret": -0.89}, {"id": "v31", "ph": "3dc99490", "equity": 99107373, "ret": -0.89}, {"id": "v135", "ph": "53f4c78c", "equity": 99105810, "ret": -0.89}, {"id": "v139", "ph": "cfbc79a5", "equity": 99105810, "ret": -0.89}, {"id": "v131", "ph": "5f8c7082", "equity": 99082573, "ret": -0.92}, {"id": "v138", "ph": "e3acb223", "equity": 99082573, "ret": -0.92}, {"id": "v115", "ph": "e1790a5a", "equity": 99060069, "ret": -0.94}, {"id": "v116", "ph": "e73fef98", "equity": 99060069, "ret": -0.94}, {"id": "v36", "ph": "feebff1a", "equity": 99001064, "ret": -1.0}, {"id": "v155", "ph": "31c0d84e", "equity": 98978560, "ret": -1.02}, {"id": "v92", "ph": "14a13097", "equity": 98940531, "ret": -1.06}, {"id": "v35", "ph": "6a183375", "equity": 98905688, "ret": -1.09}, {"id": "v88", "ph": "733579ce", "equity": 98898771, "ret": -1.1}, {"id": "v94", "ph": "3e5d6b8a", "equity": 98898771, "ret": -1.1}, {"id": "v100", "ph": "ffa9571a", "equity": 98896303, "ret": -1.1}, {"id": "v102", "ph": "e1601afe", "equity": 98896303, "ret": -1.1}, {"id": "v104", "ph": "013c3fde", "equity": 98898771, "ret": -1.1}, {"id": "v147", "ph": "2fbeeedb", "equity": 98885377, "ret": -1.11}, {"id": "v149", "ph": "c5329f8d", "equity": 98885377, "ret": -1.11}, {"id": "v151", "ph": "2eb1dd06", "equity": 98885377, "ret": -1.11}, {"id": "v6", "ph": "e96ce9e2", "equity": 98883184, "ret": -1.12}, {"id": "v54", "ph": "b975742e", "equity": 98879801, "ret": -1.12}, {"id": "v58", "ph": "f1e52f55", "equity": 98879801, "ret": -1.12}, {"id": "v60", "ph": "52560b06", "equity": 98879801, "ret": -1.12}, {"id": "v90", "ph": "86e09c47", "equity": 98830140, "ret": -1.17}, {"id": "v98", "ph": "266fc53f", "equity": 98830140, "ret": -1.17}, {"id": "v39", "ph": "11c27236", "equity": 98778663, "ret": -1.22}, {"id": "v41", "ph": "e9d84e84", "equity": 98778663, "ret": -1.22}, {"id": "v43", "ph": "94ea3b53", "equity": 98778663, "ret": -1.22}, {"id": "v143", "ph": "5cf8f13a", "equity": 98762492, "ret": -1.24}, {"id": "v114", "ph": "8686c36c", "equity": 98739989, "ret": -1.26}, {"id": "v198", "ph": "ffd1ee88", "equity": 98703305, "ret": -1.3}, {"id": "v200", "ph": "8bbb6ec7", "equity": 98700837, "ret": -1.3}, {"id": "v206", "ph": "16f62ab7", "equity": 98703305, "ret": -1.3}, {"id": "v82", "ph": "01847af6", "equity": 98682113, "ret": -1.32}, {"id": "v96", "ph": "095b119f", "equity": 98682113, "ret": -1.32}, {"id": "v50", "ph": "690a50b5", "equity": 98659610, "ret": -1.34}, {"id": "v52", "ph": "c1939d0b", "equity": 98659610, "ret": -1.34}, {"id": "v110", "ph": "8164d748", "equity": 98646805, "ret": -1.35}, {"id": "v111", "ph": "826e3d17", "equity": 98646805, "ret": -1.35}, {"id": "v112", "ph": "4cd47646", "equity": 98646805, "ret": -1.35}, {"id": "v106", "ph": "d0f5fbc1", "equity": 98511272, "ret": -1.49}, {"id": "v48", "ph": "18854c6a", "equity": 98488769, "ret": -1.51}, {"id": "v2", "ph": "bab0fc2c", "equity": 98468880, "ret": -1.53}, {"id": "v3", "ph": "81d17cca", "equity": 98468880, "ret": -1.53}, {"id": "v4", "ph": "b6219595", "equity": 98468880, "ret": -1.53}, {"id": "v108", "ph": "67a6679a", "equity": 98463181, "ret": -1.54}, {"id": "v140", "ph": "52175b2b", "equity": 98333401, "ret": -1.67}, {"id": "v141", "ph": "47f30434", "equity": 98333401, "ret": -1.67}, {"id": "v117", "ph": "c4ae8a11", "equity": 98316898, "ret": -1.68}, {"id": "v119", "ph": "ed2208f1", "equity": 98316898, "ret": -1.68}, {"id": "v120", "ph": "d25ca8b0", "equity": 98316898, "ret": -1.68}, {"id": "v190", "ph": "e14af339", "equity": 98281253, "ret": -1.72}, {"id": "v204", "ph": "434e2f7a", "equity": 98281253, "ret": -1.72}, {"id": "v38", "ph": "9b9083ae", "equity": 98256402, "ret": -1.74}, {"id": "v46", "ph": "7dc0e360", "equity": 98256402, "ret": -1.74}, {"id": "v56", "ph": "5d99704f", "equity": 98256402, "ret": -1.74}, {"id": "v158", "ph": "7e56eae3", "equity": 98258749, "ret": -1.74}, {"id": "v160", "ph": "b03f5295", "equity": 98258749, "ret": -1.74}, {"id": "v303", "ph": "1a084164", "equity": 98252307, "ret": -1.75}, {"id": "v40", "ph": "70731d89", "equity": 98226593, "ret": -1.77}, {"id": "v42", "ph": "f36fddc6", "equity": 98226593, "ret": -1.77}, {"id": "v44", "ph": "364ea434", "equity": 98226593, "ret": -1.77}, {"id": "v219", "ph": "426d3834", "equity": 98233635, "ret": -1.77}, {"id": "v220", "ph": "565c27a7", "equity": 98233635, "ret": -1.77}, {"id": "v225", "ph": "e9f40f62", "equity": 98233635, "ret": -1.77}, {"id": "v226", "ph": "98fd37a4", "equity": 98233635, "ret": -1.77}, {"id": "v231", "ph": "cd9469fa", "equity": 98233635, "ret": -1.77}, {"id": "v232", "ph": "6de1fffa", "equity": 98233635, "ret": -1.77}, {"id": "v237", "ph": "a10d68cf", "equity": 98233635, "ret": -1.77}, {"id": "v238", "ph": "f1a74611", "equity": 98233635, "ret": -1.77}, {"id": "v267", "ph": "766c47d7", "equity": 98233635, "ret": -1.77}, {"id": "v268", "ph": "9736502d", "equity": 98233635, "ret": -1.77}, {"id": "v273", "ph": "c726e8d5", "equity": 98233635, "ret": -1.77}, {"id": "v274", "ph": "62b011c8", "equity": 98233635, "ret": -1.77}, {"id": "v279", "ph": "37e203bb", "equity": 98233635, "ret": -1.77}, {"id": "v280", "ph": "60411037", "equity": 98233635, "ret": -1.77}, {"id": "v285", "ph": "962e35cd", "equity": 98233635, "ret": -1.77}, {"id": "v286", "ph": "4f6101e9", "equity": 98233635, "ret": -1.77}, {"id": "v214", "ph": "0fb624bf", "equity": 98224647, "ret": -1.78}, {"id": "v156", "ph": "3f7bcd1b", "equity": 98202143, "ret": -1.8}, {"id": "v148", "ph": "ada71802", "equity": 98105237, "ret": -1.89}, {"id": "v150", "ph": "be41b974", "equity": 98105237, "ret": -1.89}, {"id": "v152", "ph": "5d2df346", "equity": 98105237, "ret": -1.89}, {"id": "v134", "ph": "afbb4ab8", "equity": 98095071, "ret": -1.9}, {"id": "v137", "ph": "60ec806f", "equity": 98095071, "ret": -1.9}, {"id": "v142", "ph": "44fae695", "equity": 98095071, "ret": -1.9}, {"id": "v221", "ph": "cd2eef94", "equity": 97811265, "ret": -2.19}, {"id": "v227", "ph": "9454b07a", "equity": 97811265, "ret": -2.19}, {"id": "v233", "ph": "941006e0", "equity": 97811265, "ret": -2.19}, {"id": "v239", "ph": "96e693c4", "equity": 97811265, "ret": -2.19}, {"id": "v269", "ph": "c0c861c4", "equity": 97811265, "ret": -2.19}, {"id": "v275", "ph": "3ebf0d91", "equity": 97811265, "ret": -2.19}, {"id": "v281", "ph": "7d9e5a9d", "equity": 97811265, "ret": -2.19}, {"id": "v287", "ph": "3bf14815", "equity": 97811265, "ret": -2.19}, {"id": "v144", "ph": "6ffe4183", "equity": 97714288, "ret": -2.29}, {"id": "v196", "ph": "a44aeef1", "equity": 97692640, "ret": -2.31}, {"id": "v202", "ph": "a528b806", "equity": 97692640, "ret": -2.31}, {"id": "v208", "ph": "445623de", "equity": 97690172, "ret": -2.31}, {"id": "v210", "ph": "6f533a9b", "equity": 97690172, "ret": -2.31}, {"id": "v212", "ph": "b9e1e8d1", "equity": 97692640, "ret": -2.31}, {"id": "v162", "ph": "b8f71c74", "equity": 97673670, "ret": -2.33}, {"id": "v166", "ph": "f684401e", "equity": 97673670, "ret": -2.33}, {"id": "v168", "ph": "81099b26", "equity": 97673670, "ret": -2.33}, {"id": "v222", "ph": "55de9eca", "equity": 97649183, "ret": -2.35}, {"id": "v228", "ph": "caa54387", "equity": 97649183, "ret": -2.35}, {"id": "v234", "ph": "9a289d18", "equity": 97649183, "ret": -2.35}, {"id": "v240", "ph": "db1869eb", "equity": 97649183, "ret": -2.35}, {"id": "v270", "ph": "1ce9fd2b", "equity": 97649183, "ret": -2.35}, {"id": "v276", "ph": "51425eab", "equity": 97649183, "ret": -2.35}, {"id": "v282", "ph": "9ddd111d", "equity": 97649183, "ret": -2.35}, {"id": "v288", "ph": "1c732194", "equity": 97649183, "ret": -2.35}, {"id": "v109", "ph": "4c69fc95", "equity": 97333763, "ret": -2.67}, {"id": "v113", "ph": "5b43d0bc", "equity": 97333763, "ret": -2.67}, {"id": "v118", "ph": "538b63b9", "equity": 97333763, "ret": -2.67}, {"id": "v296", "ph": "4c554378", "equity": 97307249, "ret": -2.69}, {"id": "v243", "ph": "fa7a545a", "equity": 97250574, "ret": -2.75}, {"id": "v244", "ph": "520c5a65", "equity": 97250574, "ret": -2.75}, {"id": "v249", "ph": "36a32ca0", "equity": 97250574, "ret": -2.75}, {"id": "v250", "ph": "b37976b8", "equity": 97250574, "ret": -2.75}, {"id": "v255", "ph": "92e3c5e0", "equity": 97250574, "ret": -2.75}, {"id": "v256", "ph": "e583f1dd", "equity": 97250574, "ret": -2.75}, {"id": "v261", "ph": "965786e6", "equity": 97250574, "ret": -2.75}, {"id": "v262", "ph": "e07faa54", "equity": 97250574, "ret": -2.75}, {"id": "v216", "ph": "ee298bd3", "equity": 97177429, "ret": -2.82}, {"id": "v300", "ph": "c6ddc17b", "equity": 96771577, "ret": -3.23}, {"id": "v245", "ph": "ac84324f", "equity": 96386213, "ret": -3.61}, {"id": "v251", "ph": "8c5a06da", "equity": 96386213, "ret": -3.61}, {"id": "v257", "ph": "7fa33f5b", "equity": 96386213, "ret": -3.61}, {"id": "v263", "ph": "ca392811", "equity": 96386213, "ret": -3.61}, {"id": "v146", "ph": "071b9cb1", "equity": 96216557, "ret": -3.78}, {"id": "v154", "ph": "7a3a7788", "equity": 96216557, "ret": -3.78}, {"id": "v164", "ph": "331cec1f", "equity": 96216557, "ret": -3.78}, {"id": "v246", "ph": "618ddf71", "equity": 96224131, "ret": -3.78}, {"id": "v252", "ph": "381a65d1", "equity": 96224131, "ret": -3.78}, {"id": "v258", "ph": "0b19bb06", "equity": 96224131, "ret": -3.78}, {"id": "v264", "ph": "8c65e60d", "equity": 96224131, "ret": -3.78}, {"id": "v298", "ph": "5d4bbec0", "equity": 95473086, "ret": -4.53}], "20260622": [{"id": "v308", "ph": "cb12dd0b", "equity": 100110463, "ret": 0.11}, {"id": "v304", "ph": "96c7e8e1", "equity": 99999382, "ret": -0.0}, {"id": "v305", "ph": "8cc4eea6", "equity": 99999253, "ret": -0.0}, {"id": "v306", "ph": "6966b8f6", "equity": 100000000, "ret": 0.0}, {"id": "v307", "ph": "6abce93d", "equity": 100000000, "ret": 0.0}, {"id": "v313", "ph": "b9f4ee72", "equity": 100000000, "ret": 0.0}, {"id": "v314", "ph": "7511570e", "equity": 100000000, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 100000000, "ret": 0.0}, {"id": "v316", "ph": "8dc1d197", "equity": 99999482, "ret": -0.0}, {"id": "v317", "ph": "51f8ee6d", "equity": 100000000, "ret": 0.0}, {"id": "v319", "ph": "ca25f043", "equity": 99999612, "ret": -0.0}, {"id": "v320", "ph": "48d6a9ef", "equity": 99999353, "ret": -0.0}, {"id": "v321", "ph": "e82de49b", "equity": 100000000, "ret": 0.0}, {"id": "v311", "ph": "8409c6e5", "equity": 99975492, "ret": -0.02}, {"id": "v81", "ph": "a6eac1e4", "equity": 99862143, "ret": -0.14}, {"id": "v91", "ph": "5674a3d7", "equity": 99862143, "ret": -0.14}, {"id": "v95", "ph": "7e28e756", "equity": 99862143, "ret": -0.14}, {"id": "v312", "ph": "4c23846f", "equity": 99850935, "ret": -0.15}, {"id": "v309", "ph": "07610040", "equity": 99839047, "ret": -0.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 99823142, "ret": -0.18}, {"id": "v318", "ph": "c99872ef", "equity": 99752651, "ret": -0.25}, {"id": "v299", "ph": "25046b1a", "equity": 99624684, "ret": -0.38}, {"id": "v49", "ph": "cdba73e0", "equity": 99546303, "ret": -0.45}, {"id": "v51", "ph": "21a98e46", "equity": 99546303, "ret": -0.45}, {"id": "v40", "ph": "70731d89", "equity": 99480770, "ret": -0.52}, {"id": "v99", "ph": "fb39409b", "equity": 99432420, "ret": -0.57}, {"id": "v101", "ph": "c4354346", "equity": 99432420, "ret": -0.57}, {"id": "v199", "ph": "390bfab3", "equity": 99432420, "ret": -0.57}, {"id": "v207", "ph": "0f6601a0", "equity": 99432420, "ret": -0.57}, {"id": "v209", "ph": "8730802d", "equity": 99432420, "ret": -0.57}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99389944, "ret": -0.61}, {"id": "v203", "ph": "2071defa", "equity": 99389944, "ret": -0.61}, {"id": "v89", "ph": "c49d5680", "equity": 99365419, "ret": -0.63}, {"id": "v97", "ph": "ebf31977", "equity": 99365419, "ret": -0.63}, {"id": "v217", "ph": "4c547a61", "equity": 99338238, "ret": -0.66}, {"id": "v218", "ph": "7304d2d4", "equity": 99338238, "ret": -0.66}, {"id": "v87", "ph": "c0be98c0", "equity": 99330590, "ret": -0.67}, {"id": "v93", "ph": "f10d4e45", "equity": 99330590, "ret": -0.67}, {"id": "v103", "ph": "75b0a37c", "equity": 99330590, "ret": -0.67}, {"id": "v195", "ph": "dd89cf59", "equity": 99330590, "ret": -0.67}, {"id": "v197", "ph": "5c290a32", "equity": 99330590, "ret": -0.67}, {"id": "v201", "ph": "cb8a413e", "equity": 99330590, "ret": -0.67}, {"id": "v205", "ph": "02e5a3f5", "equity": 99330590, "ret": -0.67}, {"id": "v211", "ph": "9227673c", "equity": 99330590, "ret": -0.67}, {"id": "v105", "ph": "88395429", "equity": 99298435, "ret": -0.7}, {"id": "v223", "ph": "b57356b8", "equity": 99265870, "ret": -0.73}, {"id": "v224", "ph": "888ab069", "equity": 99265870, "ret": -0.73}, {"id": "v229", "ph": "d9261dfb", "equity": 99265870, "ret": -0.73}, {"id": "v230", "ph": "141579fe", "equity": 99265870, "ret": -0.73}, {"id": "v235", "ph": "3e6c1666", "equity": 99265870, "ret": -0.73}, {"id": "v236", "ph": "f9c75560", "equity": 99265870, "ret": -0.73}, {"id": "v265", "ph": "7faed59d", "equity": 99265870, "ret": -0.73}, {"id": "v266", "ph": "c133b585", "equity": 99265870, "ret": -0.73}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99265870, "ret": -0.73}, {"id": "v272", "ph": "2ed2027f", "equity": 99265870, "ret": -0.73}, {"id": "v277", "ph": "488b612a", "equity": 99265870, "ret": -0.73}, {"id": "v278", "ph": "861fb42b", "equity": 99265870, "ret": -0.73}, {"id": "v283", "ph": "479e4b25", "equity": 99265870, "ret": -0.73}, {"id": "v284", "ph": "261c5d58", "equity": 99265870, "ret": -0.73}, {"id": "v107", "ph": "be5cd36b", "equity": 99253201, "ret": -0.75}, {"id": "v213", "ph": "0e1d8e45", "equity": 99253201, "ret": -0.75}, {"id": "v215", "ph": "a904a49d", "equity": 99253201, "ret": -0.75}, {"id": "v302", "ph": "3f30502d", "equity": 99230216, "ret": -0.77}, {"id": "v57", "ph": "e7e98b6d", "equity": 99200804, "ret": -0.8}, {"id": "v59", "ph": "1858e2ec", "equity": 99200804, "ret": -0.8}, {"id": "v161", "ph": "ed5677e6", "equity": 99200804, "ret": -0.8}, {"id": "v165", "ph": "8f862b27", "equity": 99200804, "ret": -0.8}, {"id": "v167", "ph": "b6d6aed8", "equity": 99200804, "ret": -0.8}, {"id": "v301", "ph": "30da2021", "equity": 99168468, "ret": -0.83}, {"id": "v157", "ph": "80f3e23b", "equity": 99074104, "ret": -0.93}, {"id": "v159", "ph": "af80c67a", "equity": 99074104, "ret": -0.93}, {"id": "v1", "ph": "4874f4c9", "equity": 98993647, "ret": -1.01}, {"id": "v47", "ph": "ed758fcf", "equity": 98982594, "ret": -1.02}, {"id": "v155", "ph": "31c0d84e", "equity": 98937360, "ret": -1.06}, {"id": "v147", "ph": "2fbeeedb", "equity": 98787077, "ret": -1.21}, {"id": "v149", "ph": "c5329f8d", "equity": 98787077, "ret": -1.21}, {"id": "v151", "ph": "2eb1dd06", "equity": 98787077, "ret": -1.21}, {"id": "v41", "ph": "e9d84e84", "equity": 98506853, "ret": -1.49}, {"id": "v4", "ph": "b6219595", "equity": 98047970, "ret": -1.95}, {"id": "v303", "ph": "1a084164", "equity": 97958407, "ret": -2.04}, {"id": "v300", "ph": "c6ddc17b", "equity": 97936863, "ret": -2.06}, {"id": "v296", "ph": "4c554378", "equity": 96948991, "ret": -3.05}, {"id": "v298", "ph": "5d4bbec0", "equity": 95566672, "ret": -4.43}], "20260623": [{"id": "v306", "ph": "6966b8f6", "equity": 100000000, "ret": 0.0}, {"id": "v307", "ph": "6abce93d", "equity": 100000000, "ret": 0.0}, {"id": "v313", "ph": "b9f4ee72", "equity": 100000000, "ret": 0.0}, {"id": "v314", "ph": "7511570e", "equity": 100000000, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 100000000, "ret": 0.0}, {"id": "v317", "ph": "51f8ee6d", "equity": 100000000, "ret": 0.0}, {"id": "v321", "ph": "e82de49b", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 99876259, "ret": -0.12}, {"id": "v91", "ph": "5674a3d7", "equity": 99876259, "ret": -0.12}, {"id": "v95", "ph": "7e28e756", "equity": 99876259, "ret": -0.12}, {"id": "v319", "ph": "ca25f043", "equity": 99660626, "ret": -0.34}, {"id": "v316", "ph": "8dc1d197", "equity": 99602340, "ret": -0.4}, {"id": "v304", "ph": "96c7e8e1", "equity": 99583541, "ret": -0.42}, {"id": "v320", "ph": "48d6a9ef", "equity": 99522538, "ret": -0.48}, {"id": "v308", "ph": "cb12dd0b", "equity": 99484063, "ret": -0.52}, {"id": "v305", "ph": "8cc4eea6", "equity": 99455619, "ret": -0.54}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99404017, "ret": -0.6}, {"id": "v203", "ph": "2071defa", "equity": 99404017, "ret": -0.6}, {"id": "v99", "ph": "fb39409b", "equity": 99365571, "ret": -0.63}, {"id": "v101", "ph": "c4354346", "equity": 99365571, "ret": -0.63}, {"id": "v199", "ph": "390bfab3", "equity": 99365571, "ret": -0.63}, {"id": "v207", "ph": "0f6601a0", "equity": 99365571, "ret": -0.63}, {"id": "v209", "ph": "8730802d", "equity": 99365571, "ret": -0.63}, {"id": "v49", "ph": "cdba73e0", "equity": 99355488, "ret": -0.64}, {"id": "v51", "ph": "21a98e46", "equity": 99355488, "ret": -0.64}, {"id": "v87", "ph": "c0be98c0", "equity": 99018741, "ret": -0.98}, {"id": "v93", "ph": "f10d4e45", "equity": 99018741, "ret": -0.98}, {"id": "v103", "ph": "75b0a37c", "equity": 99018741, "ret": -0.98}, {"id": "v195", "ph": "dd89cf59", "equity": 99018741, "ret": -0.98}, {"id": "v197", "ph": "5c290a32", "equity": 99018741, "ret": -0.98}, {"id": "v201", "ph": "cb8a413e", "equity": 99018741, "ret": -0.98}, {"id": "v205", "ph": "02e5a3f5", "equity": 99018741, "ret": -0.98}, {"id": "v211", "ph": "9227673c", "equity": 99018741, "ret": -0.98}, {"id": "v217", "ph": "4c547a61", "equity": 99002738, "ret": -1.0}, {"id": "v218", "ph": "7304d2d4", "equity": 99002738, "ret": -1.0}, {"id": "v223", "ph": "b57356b8", "equity": 98930370, "ret": -1.07}, {"id": "v224", "ph": "888ab069", "equity": 98930370, "ret": -1.07}, {"id": "v229", "ph": "d9261dfb", "equity": 98930370, "ret": -1.07}, {"id": "v230", "ph": "141579fe", "equity": 98930370, "ret": -1.07}, {"id": "v235", "ph": "3e6c1666", "equity": 98930370, "ret": -1.07}, {"id": "v236", "ph": "f9c75560", "equity": 98930370, "ret": -1.07}, {"id": "v265", "ph": "7faed59d", "equity": 98930370, "ret": -1.07}, {"id": "v266", "ph": "c133b585", "equity": 98930370, "ret": -1.07}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98930370, "ret": -1.07}, {"id": "v272", "ph": "2ed2027f", "equity": 98930370, "ret": -1.07}, {"id": "v277", "ph": "488b612a", "equity": 98930370, "ret": -1.07}, {"id": "v278", "ph": "861fb42b", "equity": 98930370, "ret": -1.07}, {"id": "v283", "ph": "479e4b25", "equity": 98930370, "ret": -1.07}, {"id": "v284", "ph": "261c5d58", "equity": 98930370, "ret": -1.07}, {"id": "v57", "ph": "e7e98b6d", "equity": 98879376, "ret": -1.12}, {"id": "v59", "ph": "1858e2ec", "equity": 98879376, "ret": -1.12}, {"id": "v157", "ph": "80f3e23b", "equity": 98883246, "ret": -1.12}, {"id": "v159", "ph": "af80c67a", "equity": 98883246, "ret": -1.12}, {"id": "v161", "ph": "ed5677e6", "equity": 98879376, "ret": -1.12}, {"id": "v165", "ph": "8f862b27", "equity": 98879376, "ret": -1.12}, {"id": "v167", "ph": "b6d6aed8", "equity": 98879376, "ret": -1.12}, {"id": "v302", "ph": "3f30502d", "equity": 98829145, "ret": -1.17}, {"id": "v107", "ph": "be5cd36b", "equity": 98682584, "ret": -1.32}, {"id": "v213", "ph": "0e1d8e45", "equity": 98682584, "ret": -1.32}, {"id": "v215", "ph": "a904a49d", "equity": 98682584, "ret": -1.32}, {"id": "v89", "ph": "c49d5680", "equity": 98634536, "ret": -1.37}, {"id": "v97", "ph": "ebf31977", "equity": 98634536, "ret": -1.37}, {"id": "v318", "ph": "c99872ef", "equity": 98484983, "ret": -1.52}, {"id": "v105", "ph": "88395429", "equity": 98446363, "ret": -1.55}, {"id": "v310", "ph": "ec9dd55c", "equity": 98385145, "ret": -1.61}, {"id": "v301", "ph": "30da2021", "equity": 98256277, "ret": -1.74}, {"id": "v155", "ph": "31c0d84e", "equity": 98161814, "ret": -1.84}, {"id": "v1", "ph": "4874f4c9", "equity": 97995717, "ret": -2.0}, {"id": "v47", "ph": "ed758fcf", "equity": 97925592, "ret": -2.07}, {"id": "v311", "ph": "8409c6e5", "equity": 97922048, "ret": -2.08}, {"id": "v147", "ph": "2fbeeedb", "equity": 97833766, "ret": -2.17}, {"id": "v149", "ph": "c5329f8d", "equity": 97833766, "ret": -2.17}, {"id": "v151", "ph": "2eb1dd06", "equity": 97833766, "ret": -2.17}, {"id": "v303", "ph": "1a084164", "equity": 97432486, "ret": -2.57}, {"id": "v312", "ph": "4c23846f", "equity": 96768473, "ret": -3.23}, {"id": "v41", "ph": "e9d84e84", "equity": 96633673, "ret": -3.37}, {"id": "v309", "ph": "07610040", "equity": 96389485, "ret": -3.61}, {"id": "v4", "ph": "b6219595", "equity": 96036004, "ret": -3.96}, {"id": "v40", "ph": "70731d89", "equity": 95687271, "ret": -4.31}, {"id": "v296", "ph": "4c554378", "equity": 95071919, "ret": -4.93}, {"id": "v300", "ph": "c6ddc17b", "equity": 93918078, "ret": -6.08}, {"id": "v299", "ph": "25046b1a", "equity": 93683292, "ret": -6.32}, {"id": "v298", "ph": "5d4bbec0", "equity": 92518385, "ret": -7.48}], "20260624": [{"id": "v321", "ph": "e82de49b", "equity": 100085854, "ret": 0.09}, {"id": "v317", "ph": "51f8ee6d", "equity": 100060486, "ret": 0.06}, {"id": "v306", "ph": "6966b8f6", "equity": 100000522, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 99883355, "ret": -0.12}, {"id": "v313", "ph": "b9f4ee72", "equity": 99826917, "ret": -0.17}, {"id": "v307", "ph": "6abce93d", "equity": 99802993, "ret": -0.2}, {"id": "v314", "ph": "7511570e", "equity": 99792429, "ret": -0.21}, {"id": "v91", "ph": "5674a3d7", "equity": 99663265, "ret": -0.34}, {"id": "v81", "ph": "a6eac1e4", "equity": 99636149, "ret": -0.36}, {"id": "v95", "ph": "7e28e756", "equity": 99636149, "ret": -0.36}, {"id": "v308", "ph": "cb12dd0b", "equity": 99546904, "ret": -0.45}, {"id": "v304", "ph": "96c7e8e1", "equity": 99355993, "ret": -0.64}, {"id": "v319", "ph": "ca25f043", "equity": 99288100, "ret": -0.71}, {"id": "v316", "ph": "8dc1d197", "equity": 99193213, "ret": -0.81}, {"id": "v305", "ph": "8cc4eea6", "equity": 99183211, "ret": -0.82}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99163907, "ret": -0.84}, {"id": "v203", "ph": "2071defa", "equity": 99163907, "ret": -0.84}, {"id": "v99", "ph": "fb39409b", "equity": 99152577, "ret": -0.85}, {"id": "v101", "ph": "c4354346", "equity": 99152577, "ret": -0.85}, {"id": "v199", "ph": "390bfab3", "equity": 99152577, "ret": -0.85}, {"id": "v207", "ph": "0f6601a0", "equity": 99152577, "ret": -0.85}, {"id": "v209", "ph": "8730802d", "equity": 99152577, "ret": -0.85}, {"id": "v49", "ph": "cdba73e0", "equity": 99115378, "ret": -0.88}, {"id": "v51", "ph": "21a98e46", "equity": 99115378, "ret": -0.88}, {"id": "v320", "ph": "48d6a9ef", "equity": 99096561, "ret": -0.9}, {"id": "v87", "ph": "c0be98c0", "equity": 99066109, "ret": -0.93}, {"id": "v93", "ph": "f10d4e45", "equity": 99066109, "ret": -0.93}, {"id": "v103", "ph": "75b0a37c", "equity": 99066109, "ret": -0.93}, {"id": "v197", "ph": "5c290a32", "equity": 99066109, "ret": -0.93}, {"id": "v205", "ph": "02e5a3f5", "equity": 99066109, "ret": -0.93}, {"id": "v195", "ph": "dd89cf59", "equity": 98899102, "ret": -1.1}, {"id": "v201", "ph": "cb8a413e", "equity": 98899102, "ret": -1.1}, {"id": "v211", "ph": "9227673c", "equity": 98899102, "ret": -1.1}, {"id": "v107", "ph": "be5cd36b", "equity": 98777904, "ret": -1.22}, {"id": "v213", "ph": "0e1d8e45", "equity": 98777904, "ret": -1.22}, {"id": "v57", "ph": "e7e98b6d", "equity": 98666382, "ret": -1.33}, {"id": "v59", "ph": "1858e2ec", "equity": 98666382, "ret": -1.33}, {"id": "v161", "ph": "ed5677e6", "equity": 98666382, "ret": -1.33}, {"id": "v165", "ph": "8f862b27", "equity": 98666382, "ret": -1.33}, {"id": "v167", "ph": "b6d6aed8", "equity": 98666382, "ret": -1.33}, {"id": "v217", "ph": "4c547a61", "equity": 98672158, "ret": -1.33}, {"id": "v218", "ph": "7304d2d4", "equity": 98672158, "ret": -1.33}, {"id": "v157", "ph": "80f3e23b", "equity": 98643136, "ret": -1.36}, {"id": "v159", "ph": "af80c67a", "equity": 98643136, "ret": -1.36}, {"id": "v89", "ph": "c49d5680", "equity": 98615759, "ret": -1.38}, {"id": "v97", "ph": "ebf31977", "equity": 98615759, "ret": -1.38}, {"id": "v105", "ph": "88395429", "equity": 98597406, "ret": -1.4}, {"id": "v223", "ph": "b57356b8", "equity": 98599790, "ret": -1.4}, {"id": "v224", "ph": "888ab069", "equity": 98599790, "ret": -1.4}, {"id": "v229", "ph": "d9261dfb", "equity": 98599790, "ret": -1.4}, {"id": "v230", "ph": "141579fe", "equity": 98599790, "ret": -1.4}, {"id": "v235", "ph": "3e6c1666", "equity": 98599790, "ret": -1.4}, {"id": "v236", "ph": "f9c75560", "equity": 98599790, "ret": -1.4}, {"id": "v265", "ph": "7faed59d", "equity": 98599790, "ret": -1.4}, {"id": "v266", "ph": "c133b585", "equity": 98599790, "ret": -1.4}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98599790, "ret": -1.4}, {"id": "v272", "ph": "2ed2027f", "equity": 98599790, "ret": -1.4}, {"id": "v277", "ph": "488b612a", "equity": 98599790, "ret": -1.4}, {"id": "v278", "ph": "861fb42b", "equity": 98599790, "ret": -1.4}, {"id": "v283", "ph": "479e4b25", "equity": 98599790, "ret": -1.4}, {"id": "v284", "ph": "261c5d58", "equity": 98599790, "ret": -1.4}, {"id": "v215", "ph": "a904a49d", "equity": 98584893, "ret": -1.42}, {"id": "v302", "ph": "3f30502d", "equity": 98415182, "ret": -1.58}, {"id": "v155", "ph": "31c0d84e", "equity": 98262712, "ret": -1.74}, {"id": "v47", "ph": "ed758fcf", "equity": 98075491, "ret": -1.92}, {"id": "v318", "ph": "c99872ef", "equity": 98060011, "ret": -1.94}, {"id": "v147", "ph": "2fbeeedb", "equity": 97921225, "ret": -2.08}, {"id": "v149", "ph": "c5329f8d", "equity": 97921225, "ret": -2.08}, {"id": "v151", "ph": "2eb1dd06", "equity": 97921225, "ret": -2.08}, {"id": "v311", "ph": "8409c6e5", "equity": 97891655, "ret": -2.11}, {"id": "v301", "ph": "30da2021", "equity": 97750914, "ret": -2.25}, {"id": "v310", "ph": "ec9dd55c", "equity": 97639577, "ret": -2.36}, {"id": "v1", "ph": "4874f4c9", "equity": 97475814, "ret": -2.52}, {"id": "v303", "ph": "1a084164", "equity": 97118111, "ret": -2.88}, {"id": "v41", "ph": "e9d84e84", "equity": 96580621, "ret": -3.42}, {"id": "v4", "ph": "b6219595", "equity": 95980663, "ret": -4.02}, {"id": "v312", "ph": "4c23846f", "equity": 95969821, "ret": -4.03}, {"id": "v309", "ph": "07610040", "equity": 95955384, "ret": -4.04}, {"id": "v40", "ph": "70731d89", "equity": 95748230, "ret": -4.25}, {"id": "v296", "ph": "4c554378", "equity": 94163911, "ret": -5.84}, {"id": "v300", "ph": "c6ddc17b", "equity": 93696621, "ret": -6.3}, {"id": "v299", "ph": "25046b1a", "equity": 93194033, "ret": -6.81}, {"id": "v298", "ph": "5d4bbec0", "equity": 92404552, "ret": -7.6}], "20260625": [{"id": "v317", "ph": "51f8ee6d", "equity": 99993632, "ret": -0.01}, {"id": "v321", "ph": "e82de49b", "equity": 99982218, "ret": -0.02}, {"id": "v315", "ph": "e6d5b283", "equity": 99958954, "ret": -0.04}, {"id": "v306", "ph": "6966b8f6", "equity": 99920351, "ret": -0.08}, {"id": "v314", "ph": "7511570e", "equity": 99898729, "ret": -0.1}, {"id": "v313", "ph": "b9f4ee72", "equity": 99812686, "ret": -0.19}, {"id": "v81", "ph": "a6eac1e4", "equity": 99778449, "ret": -0.22}, {"id": "v91", "ph": "5674a3d7", "equity": 99775565, "ret": -0.22}, {"id": "v95", "ph": "7e28e756", "equity": 99778449, "ret": -0.22}, {"id": "v307", "ph": "6abce93d", "equity": 99783177, "ret": -0.22}, {"id": "v308", "ph": "cb12dd0b", "equity": 99549413, "ret": -0.45}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99326774, "ret": -0.67}, {"id": "v203", "ph": "2071defa", "equity": 99326774, "ret": -0.67}, {"id": "v199", "ph": "390bfab3", "equity": 99282766, "ret": -0.72}, {"id": "v207", "ph": "0f6601a0", "equity": 99282766, "ret": -0.72}, {"id": "v209", "ph": "8730802d", "equity": 99282766, "ret": -0.72}, {"id": "v49", "ph": "cdba73e0", "equity": 99257678, "ret": -0.74}, {"id": "v51", "ph": "21a98e46", "equity": 99257678, "ret": -0.74}, {"id": "v99", "ph": "fb39409b", "equity": 99264877, "ret": -0.74}, {"id": "v101", "ph": "c4354346", "equity": 99264877, "ret": -0.74}, {"id": "v319", "ph": "ca25f043", "equity": 99151697, "ret": -0.85}, {"id": "v304", "ph": "96c7e8e1", "equity": 99087927, "ret": -0.91}, {"id": "v316", "ph": "8dc1d197", "equity": 99064791, "ret": -0.94}, {"id": "v197", "ph": "5c290a32", "equity": 99022763, "ret": -0.98}, {"id": "v205", "ph": "02e5a3f5", "equity": 99022763, "ret": -0.98}, {"id": "v87", "ph": "c0be98c0", "equity": 99004874, "ret": -1.0}, {"id": "v93", "ph": "f10d4e45", "equity": 99004874, "ret": -1.0}, {"id": "v103", "ph": "75b0a37c", "equity": 99004874, "ret": -1.0}, {"id": "v320", "ph": "48d6a9ef", "equity": 98966439, "ret": -1.03}, {"id": "v305", "ph": "8cc4eea6", "equity": 98834032, "ret": -1.17}, {"id": "v157", "ph": "80f3e23b", "equity": 98805812, "ret": -1.19}, {"id": "v159", "ph": "af80c67a", "equity": 98805812, "ret": -1.19}, {"id": "v161", "ph": "ed5677e6", "equity": 98796476, "ret": -1.2}, {"id": "v165", "ph": "8f862b27", "equity": 98796476, "ret": -1.2}, {"id": "v167", "ph": "b6d6aed8", "equity": 98796476, "ret": -1.2}, {"id": "v195", "ph": "dd89cf59", "equity": 98801518, "ret": -1.2}, {"id": "v201", "ph": "cb8a413e", "equity": 98801518, "ret": -1.2}, {"id": "v211", "ph": "9227673c", "equity": 98801518, "ret": -1.2}, {"id": "v57", "ph": "e7e98b6d", "equity": 98778682, "ret": -1.22}, {"id": "v59", "ph": "1858e2ec", "equity": 98778682, "ret": -1.22}, {"id": "v89", "ph": "c49d5680", "equity": 98647719, "ret": -1.35}, {"id": "v97", "ph": "ebf31977", "equity": 98647719, "ret": -1.35}, {"id": "v302", "ph": "3f30502d", "equity": 98641582, "ret": -1.36}, {"id": "v217", "ph": "4c547a61", "equity": 98614246, "ret": -1.39}, {"id": "v218", "ph": "7304d2d4", "equity": 98614246, "ret": -1.39}, {"id": "v213", "ph": "0e1d8e45", "equity": 98585038, "ret": -1.41}, {"id": "v107", "ph": "be5cd36b", "equity": 98564470, "ret": -1.44}, {"id": "v223", "ph": "b57356b8", "equity": 98541878, "ret": -1.46}, {"id": "v224", "ph": "888ab069", "equity": 98541878, "ret": -1.46}, {"id": "v229", "ph": "d9261dfb", "equity": 98541878, "ret": -1.46}, {"id": "v230", "ph": "141579fe", "equity": 98541878, "ret": -1.46}, {"id": "v235", "ph": "3e6c1666", "equity": 98541878, "ret": -1.46}, {"id": "v236", "ph": "f9c75560", "equity": 98541878, "ret": -1.46}, {"id": "v265", "ph": "7faed59d", "equity": 98541878, "ret": -1.46}, {"id": "v266", "ph": "c133b585", "equity": 98541878, "ret": -1.46}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98541878, "ret": -1.46}, {"id": "v272", "ph": "2ed2027f", "equity": 98541878, "ret": -1.46}, {"id": "v277", "ph": "488b612a", "equity": 98541878, "ret": -1.46}, {"id": "v278", "ph": "861fb42b", "equity": 98541878, "ret": -1.46}, {"id": "v283", "ph": "479e4b25", "equity": 98541878, "ret": -1.46}, {"id": "v284", "ph": "261c5d58", "equity": 98541878, "ret": -1.46}, {"id": "v318", "ph": "c99872ef", "equity": 98448234, "ret": -1.55}, {"id": "v105", "ph": "88395429", "equity": 98368172, "ret": -1.63}, {"id": "v215", "ph": "a904a49d", "equity": 98337789, "ret": -1.66}, {"id": "v155", "ph": "31c0d84e", "equity": 98064390, "ret": -1.94}, {"id": "v301", "ph": "30da2021", "equity": 97971314, "ret": -2.03}, {"id": "v310", "ph": "ec9dd55c", "equity": 97969177, "ret": -2.03}, {"id": "v47", "ph": "ed758fcf", "equity": 97846897, "ret": -2.15}, {"id": "v147", "ph": "2fbeeedb", "equity": 97810659, "ret": -2.19}, {"id": "v149", "ph": "c5329f8d", "equity": 97810659, "ret": -2.19}, {"id": "v151", "ph": "2eb1dd06", "equity": 97810659, "ret": -2.19}, {"id": "v1", "ph": "4874f4c9", "equity": 97699714, "ret": -2.3}, {"id": "v311", "ph": "8409c6e5", "equity": 97612070, "ret": -2.39}, {"id": "v40", "ph": "70731d89", "equity": 97128790, "ret": -2.87}, {"id": "v312", "ph": "4c23846f", "equity": 97086568, "ret": -2.91}, {"id": "v303", "ph": "1a084164", "equity": 97078943, "ret": -2.92}, {"id": "v41", "ph": "e9d84e84", "equity": 96647542, "ret": -3.35}, {"id": "v309", "ph": "07610040", "equity": 96637545, "ret": -3.36}, {"id": "v4", "ph": "b6219595", "equity": 96048864, "ret": -3.95}, {"id": "v296", "ph": "4c554378", "equity": 95720669, "ret": -4.28}, {"id": "v299", "ph": "25046b1a", "equity": 95394672, "ret": -4.61}, {"id": "v300", "ph": "c6ddc17b", "equity": 94713522, "ret": -5.29}, {"id": "v298", "ph": "5d4bbec0", "equity": 94020155, "ret": -5.98}], "20260626": [{"id": "v314", "ph": "7511570e", "equity": 99900880, "ret": -0.1}, {"id": "v315", "ph": "e6d5b283", "equity": 99816609, "ret": -0.18}, {"id": "v81", "ph": "a6eac1e4", "equity": 99807451, "ret": -0.19}, {"id": "v95", "ph": "7e28e756", "equity": 99807451, "ret": -0.19}, {"id": "v321", "ph": "e82de49b", "equity": 99813711, "ret": -0.19}, {"id": "v91", "ph": "5674a3d7", "equity": 99782191, "ret": -0.22}, {"id": "v313", "ph": "b9f4ee72", "equity": 99685397, "ret": -0.31}, {"id": "v307", "ph": "6abce93d", "equity": 99640613, "ret": -0.36}, {"id": "v306", "ph": "6966b8f6", "equity": 99583813, "ret": -0.42}, {"id": "v317", "ph": "51f8ee6d", "equity": 99551515, "ret": -0.45}, {"id": "v49", "ph": "cdba73e0", "equity": 99286680, "ret": -0.71}, {"id": "v51", "ph": "21a98e46", "equity": 99286680, "ret": -0.71}, {"id": "v308", "ph": "cb12dd0b", "equity": 99293485, "ret": -0.71}, {"id": "v99", "ph": "fb39409b", "equity": 99271503, "ret": -0.73}, {"id": "v101", "ph": "c4354346", "equity": 99271503, "ret": -0.73}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99108526, "ret": -0.89}, {"id": "v203", "ph": "2071defa", "equity": 99108526, "ret": -0.89}, {"id": "v199", "ph": "390bfab3", "equity": 99074342, "ret": -0.93}, {"id": "v207", "ph": "0f6601a0", "equity": 99074342, "ret": -0.93}, {"id": "v209", "ph": "8730802d", "equity": 99074342, "ret": -0.93}, {"id": "v87", "ph": "c0be98c0", "equity": 98896181, "ret": -1.1}, {"id": "v93", "ph": "f10d4e45", "equity": 98896181, "ret": -1.1}, {"id": "v103", "ph": "75b0a37c", "equity": 98896181, "ret": -1.1}, {"id": "v319", "ph": "ca25f043", "equity": 98901880, "ret": -1.1}, {"id": "v304", "ph": "96c7e8e1", "equity": 98807436, "ret": -1.19}, {"id": "v57", "ph": "e7e98b6d", "equity": 98785308, "ret": -1.21}, {"id": "v59", "ph": "1858e2ec", "equity": 98785308, "ret": -1.21}, {"id": "v316", "ph": "8dc1d197", "equity": 98720505, "ret": -1.28}, {"id": "v197", "ph": "5c290a32", "equity": 98699020, "ret": -1.3}, {"id": "v205", "ph": "02e5a3f5", "equity": 98699020, "ret": -1.3}, {"id": "v302", "ph": "3f30502d", "equity": 98665893, "ret": -1.33}, {"id": "v157", "ph": "80f3e23b", "equity": 98589864, "ret": -1.41}, {"id": "v159", "ph": "af80c67a", "equity": 98589864, "ret": -1.41}, {"id": "v161", "ph": "ed5677e6", "equity": 98589202, "ret": -1.41}, {"id": "v165", "ph": "8f862b27", "equity": 98589202, "ret": -1.41}, {"id": "v167", "ph": "b6d6aed8", "equity": 98589202, "ret": -1.41}, {"id": "v320", "ph": "48d6a9ef", "equity": 98583273, "ret": -1.42}, {"id": "v89", "ph": "c49d5680", "equity": 98542206, "ret": -1.46}, {"id": "v97", "ph": "ebf31977", "equity": 98542206, "ret": -1.46}, {"id": "v195", "ph": "dd89cf59", "equity": 98454369, "ret": -1.55}, {"id": "v201", "ph": "cb8a413e", "equity": 98454369, "ret": -1.55}, {"id": "v211", "ph": "9227673c", "equity": 98454369, "ret": -1.55}, {"id": "v305", "ph": "8cc4eea6", "equity": 98401081, "ret": -1.6}, {"id": "v217", "ph": "4c547a61", "equity": 98351778, "ret": -1.65}, {"id": "v218", "ph": "7304d2d4", "equity": 98351778, "ret": -1.65}, {"id": "v223", "ph": "b57356b8", "equity": 98279410, "ret": -1.72}, {"id": "v224", "ph": "888ab069", "equity": 98279410, "ret": -1.72}, {"id": "v229", "ph": "d9261dfb", "equity": 98279410, "ret": -1.72}, {"id": "v230", "ph": "141579fe", "equity": 98279410, "ret": -1.72}, {"id": "v235", "ph": "3e6c1666", "equity": 98279410, "ret": -1.72}, {"id": "v236", "ph": "f9c75560", "equity": 98279410, "ret": -1.72}, {"id": "v265", "ph": "7faed59d", "equity": 98279410, "ret": -1.72}, {"id": "v266", "ph": "c133b585", "equity": 98279410, "ret": -1.72}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98279410, "ret": -1.72}, {"id": "v272", "ph": "2ed2027f", "equity": 98279410, "ret": -1.72}, {"id": "v277", "ph": "488b612a", "equity": 98279410, "ret": -1.72}, {"id": "v278", "ph": "861fb42b", "equity": 98279410, "ret": -1.72}, {"id": "v283", "ph": "479e4b25", "equity": 98279410, "ret": -1.72}, {"id": "v284", "ph": "261c5d58", "equity": 98279410, "ret": -1.72}, {"id": "v105", "ph": "88395429", "equity": 98222164, "ret": -1.78}, {"id": "v107", "ph": "be5cd36b", "equity": 98198994, "ret": -1.8}, {"id": "v301", "ph": "30da2021", "equity": 97988925, "ret": -2.01}, {"id": "v213", "ph": "0e1d8e45", "equity": 97972312, "ret": -2.03}, {"id": "v1", "ph": "4874f4c9", "equity": 97711838, "ret": -2.29}, {"id": "v47", "ph": "ed758fcf", "equity": 97704069, "ret": -2.3}, {"id": "v215", "ph": "a904a49d", "equity": 97701657, "ret": -2.3}, {"id": "v155", "ph": "31c0d84e", "equity": 97449295, "ret": -2.55}, {"id": "v318", "ph": "c99872ef", "equity": 97391096, "ret": -2.61}, {"id": "v147", "ph": "2fbeeedb", "equity": 97369471, "ret": -2.63}, {"id": "v149", "ph": "c5329f8d", "equity": 97369471, "ret": -2.63}, {"id": "v151", "ph": "2eb1dd06", "equity": 97369471, "ret": -2.63}, {"id": "v311", "ph": "8409c6e5", "equity": 96938905, "ret": -3.06}, {"id": "v303", "ph": "1a084164", "equity": 96838921, "ret": -3.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 96814041, "ret": -3.19}, {"id": "v41", "ph": "e9d84e84", "equity": 96436419, "ret": -3.56}, {"id": "v40", "ph": "70731d89", "equity": 96034565, "ret": -3.97}, {"id": "v309", "ph": "07610040", "equity": 95970701, "ret": -4.03}, {"id": "v4", "ph": "b6219595", "equity": 95844101, "ret": -4.16}, {"id": "v312", "ph": "4c23846f", "equity": 94932436, "ret": -5.07}, {"id": "v296", "ph": "4c554378", "equity": 93944044, "ret": -6.06}, {"id": "v300", "ph": "c6ddc17b", "equity": 93694239, "ret": -6.31}, {"id": "v298", "ph": "5d4bbec0", "equity": 92024557, "ret": -7.98}, {"id": "v299", "ph": "25046b1a", "equity": 91806294, "ret": -8.19}], "20260629": [{"id": "v306", "ph": "6966b8f6", "equity": 100300459, "ret": 0.3}, {"id": "v321", "ph": "e82de49b", "equity": 100189547, "ret": 0.19}, {"id": "v308", "ph": "cb12dd0b", "equity": 99999961, "ret": -0.0}, {"id": "v314", "ph": "7511570e", "equity": 99813480, "ret": -0.19}, {"id": "v313", "ph": "b9f4ee72", "equity": 99730074, "ret": -0.27}, {"id": "v307", "ph": "6abce93d", "equity": 99697202, "ret": -0.3}, {"id": "v317", "ph": "51f8ee6d", "equity": 99696555, "ret": -0.3}, {"id": "v91", "ph": "5674a3d7", "equity": 99687191, "ret": -0.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 99674451, "ret": -0.33}, {"id": "v95", "ph": "7e28e756", "equity": 99674451, "ret": -0.33}, {"id": "v315", "ph": "e6d5b283", "equity": 99654810, "ret": -0.35}, {"id": "v87", "ph": "c0be98c0", "equity": 99491935, "ret": -0.51}, {"id": "v93", "ph": "f10d4e45", "equity": 99491935, "ret": -0.51}, {"id": "v103", "ph": "75b0a37c", "equity": 99491935, "ret": -0.51}, {"id": "v197", "ph": "5c290a32", "equity": 99388275, "ret": -0.61}, {"id": "v205", "ph": "02e5a3f5", "equity": 99388275, "ret": -0.61}, {"id": "v99", "ph": "fb39409b", "equity": 99176503, "ret": -0.82}, {"id": "v101", "ph": "c4354346", "equity": 99176503, "ret": -0.82}, {"id": "v49", "ph": "cdba73e0", "equity": 99153680, "ret": -0.85}, {"id": "v51", "ph": "21a98e46", "equity": 99153680, "ret": -0.85}, {"id": "v195", "ph": "dd89cf59", "equity": 99143624, "ret": -0.86}, {"id": "v201", "ph": "cb8a413e", "equity": 99143624, "ret": -0.86}, {"id": "v211", "ph": "9227673c", "equity": 99143624, "ret": -0.86}, {"id": "v89", "ph": "c49d5680", "equity": 99133820, "ret": -0.87}, {"id": "v97", "ph": "ebf31977", "equity": 99133820, "ret": -0.87}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99083026, "ret": -0.92}, {"id": "v203", "ph": "2071defa", "equity": 99083026, "ret": -0.92}, {"id": "v199", "ph": "390bfab3", "equity": 99072842, "ret": -0.93}, {"id": "v207", "ph": "0f6601a0", "equity": 99072842, "ret": -0.93}, {"id": "v209", "ph": "8730802d", "equity": 99072842, "ret": -0.93}, {"id": "v319", "ph": "ca25f043", "equity": 99052498, "ret": -0.95}, {"id": "v105", "ph": "88395429", "equity": 99012940, "ret": -0.99}, {"id": "v107", "ph": "be5cd36b", "equity": 98985970, "ret": -1.01}, {"id": "v316", "ph": "8dc1d197", "equity": 98925942, "ret": -1.07}, {"id": "v304", "ph": "96c7e8e1", "equity": 98923153, "ret": -1.08}, {"id": "v213", "ph": "0e1d8e45", "equity": 98866788, "ret": -1.13}, {"id": "v320", "ph": "48d6a9ef", "equity": 98801732, "ret": -1.2}, {"id": "v305", "ph": "8cc4eea6", "equity": 98794030, "ret": -1.21}, {"id": "v57", "ph": "e7e98b6d", "equity": 98690308, "ret": -1.31}, {"id": "v59", "ph": "1858e2ec", "equity": 98690308, "ret": -1.31}, {"id": "v147", "ph": "2fbeeedb", "equity": 98693892, "ret": -1.31}, {"id": "v149", "ph": "c5329f8d", "equity": 98693892, "ret": -1.31}, {"id": "v151", "ph": "2eb1dd06", "equity": 98693892, "ret": -1.31}, {"id": "v215", "ph": "a904a49d", "equity": 98596133, "ret": -1.4}, {"id": "v161", "ph": "ed5677e6", "equity": 98587202, "ret": -1.41}, {"id": "v165", "ph": "8f862b27", "equity": 98587202, "ret": -1.41}, {"id": "v167", "ph": "b6d6aed8", "equity": 98587202, "ret": -1.41}, {"id": "v157", "ph": "80f3e23b", "equity": 98563364, "ret": -1.44}, {"id": "v159", "ph": "af80c67a", "equity": 98563364, "ret": -1.44}, {"id": "v302", "ph": "3f30502d", "equity": 98543843, "ret": -1.46}, {"id": "v47", "ph": "ed758fcf", "equity": 98490705, "ret": -1.51}, {"id": "v217", "ph": "4c547a61", "equity": 98406867, "ret": -1.59}, {"id": "v218", "ph": "7304d2d4", "equity": 98406867, "ret": -1.59}, {"id": "v155", "ph": "31c0d84e", "equity": 98342931, "ret": -1.66}, {"id": "v223", "ph": "b57356b8", "equity": 98334499, "ret": -1.67}, {"id": "v224", "ph": "888ab069", "equity": 98334499, "ret": -1.67}, {"id": "v229", "ph": "d9261dfb", "equity": 98334499, "ret": -1.67}, {"id": "v230", "ph": "141579fe", "equity": 98334499, "ret": -1.67}, {"id": "v235", "ph": "3e6c1666", "equity": 98334499, "ret": -1.67}, {"id": "v236", "ph": "f9c75560", "equity": 98334499, "ret": -1.67}, {"id": "v265", "ph": "7faed59d", "equity": 98334499, "ret": -1.67}, {"id": "v266", "ph": "c133b585", "equity": 98334499, "ret": -1.67}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98334499, "ret": -1.67}, {"id": "v272", "ph": "2ed2027f", "equity": 98334499, "ret": -1.67}, {"id": "v277", "ph": "488b612a", "equity": 98334499, "ret": -1.67}, {"id": "v278", "ph": "861fb42b", "equity": 98334499, "ret": -1.67}, {"id": "v283", "ph": "479e4b25", "equity": 98334499, "ret": -1.67}, {"id": "v284", "ph": "261c5d58", "equity": 98334499, "ret": -1.67}, {"id": "v301", "ph": "30da2021", "equity": 97870675, "ret": -2.13}, {"id": "v41", "ph": "e9d84e84", "equity": 97642337, "ret": -2.36}, {"id": "v1", "ph": "4874f4c9", "equity": 97618226, "ret": -2.38}, {"id": "v4", "ph": "b6219595", "equity": 97133478, "ret": -2.87}, {"id": "v40", "ph": "70731d89", "equity": 97128027, "ret": -2.87}, {"id": "v303", "ph": "1a084164", "equity": 96941008, "ret": -3.06}, {"id": "v310", "ph": "ec9dd55c", "equity": 96874396, "ret": -3.13}, {"id": "v318", "ph": "c99872ef", "equity": 96778920, "ret": -3.22}, {"id": "v311", "ph": "8409c6e5", "equity": 96345178, "ret": -3.65}, {"id": "v309", "ph": "07610040", "equity": 95447771, "ret": -4.55}, {"id": "v300", "ph": "c6ddc17b", "equity": 94255949, "ret": -5.74}, {"id": "v296", "ph": "4c554378", "equity": 93871964, "ret": -6.13}, {"id": "v312", "ph": "4c23846f", "equity": 93604983, "ret": -6.4}, {"id": "v298", "ph": "5d4bbec0", "equity": 91385783, "ret": -8.61}, {"id": "v299", "ph": "25046b1a", "equity": 91015801, "ret": -8.98}], "20260630": [{"id": "v308", "ph": "cb12dd0b", "equity": 102469206, "ret": 2.47}, {"id": "v147", "ph": "2fbeeedb", "equity": 102192163, "ret": 2.19}, {"id": "v149", "ph": "c5329f8d", "equity": 102192163, "ret": 2.19}, {"id": "v151", "ph": "2eb1dd06", "equity": 102192163, "ret": 2.19}, {"id": "v306", "ph": "6966b8f6", "equity": 102132719, "ret": 2.13}, {"id": "v40", "ph": "70731d89", "equity": 101679673, "ret": 1.68}, {"id": "v321", "ph": "e82de49b", "equity": 101535047, "ret": 1.54}, {"id": "v41", "ph": "e9d84e84", "equity": 101160969, "ret": 1.16}, {"id": "v105", "ph": "88395429", "equity": 101130434, "ret": 1.13}, {"id": "v107", "ph": "be5cd36b", "equity": 101112564, "ret": 1.11}, {"id": "v87", "ph": "c0be98c0", "equity": 101073595, "ret": 1.07}, {"id": "v93", "ph": "f10d4e45", "equity": 101073595, "ret": 1.07}, {"id": "v103", "ph": "75b0a37c", "equity": 101073595, "ret": 1.07}, {"id": "v47", "ph": "ed758fcf", "equity": 100911006, "ret": 0.91}, {"id": "v4", "ph": "b6219595", "equity": 100843214, "ret": 0.84}, {"id": "v197", "ph": "5c290a32", "equity": 100829685, "ret": 0.83}, {"id": "v205", "ph": "02e5a3f5", "equity": 100829685, "ret": 0.83}, {"id": "v213", "ph": "0e1d8e45", "equity": 100832132, "ret": 0.83}, {"id": "v89", "ph": "c49d5680", "equity": 100713689, "ret": 0.71}, {"id": "v97", "ph": "ebf31977", "equity": 100713689, "ret": 0.71}, {"id": "v155", "ph": "31c0d84e", "equity": 100602732, "ret": 0.6}, {"id": "v195", "ph": "dd89cf59", "equity": 100586342, "ret": 0.59}, {"id": "v201", "ph": "cb8a413e", "equity": 100586342, "ret": 0.59}, {"id": "v211", "ph": "9227673c", "equity": 100586342, "ret": 0.59}, {"id": "v215", "ph": "a904a49d", "equity": 100561477, "ret": 0.56}, {"id": "v317", "ph": "51f8ee6d", "equity": 100498339, "ret": 0.5}, {"id": "v315", "ph": "e6d5b283", "equity": 100458935, "ret": 0.46}, {"id": "v314", "ph": "7511570e", "equity": 100173078, "ret": 0.17}, {"id": "v81", "ph": "a6eac1e4", "equity": 99935386, "ret": -0.06}, {"id": "v95", "ph": "7e28e756", "equity": 99935386, "ret": -0.06}, {"id": "v91", "ph": "5674a3d7", "equity": 99861051, "ret": -0.14}, {"id": "v307", "ph": "6abce93d", "equity": 99777709, "ret": -0.22}, {"id": "v305", "ph": "8cc4eea6", "equity": 99743065, "ret": -0.26}, {"id": "v313", "ph": "b9f4ee72", "equity": 99742527, "ret": -0.26}, {"id": "v49", "ph": "cdba73e0", "equity": 99721831, "ret": -0.28}, {"id": "v51", "ph": "21a98e46", "equity": 99721831, "ret": -0.28}, {"id": "v316", "ph": "8dc1d197", "equity": 99373992, "ret": -0.63}, {"id": "v302", "ph": "3f30502d", "equity": 99359071, "ret": -0.64}, {"id": "v99", "ph": "fb39409b", "equity": 99351671, "ret": -0.65}, {"id": "v101", "ph": "c4354346", "equity": 99351671, "ret": -0.65}, {"id": "v304", "ph": "96c7e8e1", "equity": 99275158, "ret": -0.72}, {"id": "v320", "ph": "48d6a9ef", "equity": 99264932, "ret": -0.74}, {"id": "v319", "ph": "ca25f043", "equity": 99228748, "ret": -0.77}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99184020, "ret": -0.82}, {"id": "v203", "ph": "2071defa", "equity": 99184020, "ret": -0.82}, {"id": "v199", "ph": "390bfab3", "equity": 99107760, "ret": -0.89}, {"id": "v207", "ph": "0f6601a0", "equity": 99107760, "ret": -0.89}, {"id": "v209", "ph": "8730802d", "equity": 99107760, "ret": -0.89}, {"id": "v57", "ph": "e7e98b6d", "equity": 99089809, "ret": -0.91}, {"id": "v59", "ph": "1858e2ec", "equity": 99089809, "ret": -0.91}, {"id": "v157", "ph": "80f3e23b", "equity": 98971766, "ret": -1.03}, {"id": "v159", "ph": "af80c67a", "equity": 98971766, "ret": -1.03}, {"id": "v161", "ph": "ed5677e6", "equity": 98847202, "ret": -1.15}, {"id": "v165", "ph": "8f862b27", "equity": 98847202, "ret": -1.15}, {"id": "v167", "ph": "b6d6aed8", "equity": 98847202, "ret": -1.15}, {"id": "v311", "ph": "8409c6e5", "equity": 98788881, "ret": -1.21}, {"id": "v301", "ph": "30da2021", "equity": 98678112, "ret": -1.32}, {"id": "v1", "ph": "4874f4c9", "equity": 98537662, "ret": -1.46}, {"id": "v217", "ph": "4c547a61", "equity": 98541610, "ret": -1.46}, {"id": "v218", "ph": "7304d2d4", "equity": 98541610, "ret": -1.46}, {"id": "v309", "ph": "07610040", "equity": 98525429, "ret": -1.47}, {"id": "v310", "ph": "ec9dd55c", "equity": 98512835, "ret": -1.49}, {"id": "v223", "ph": "b57356b8", "equity": 98469242, "ret": -1.53}, {"id": "v224", "ph": "888ab069", "equity": 98469242, "ret": -1.53}, {"id": "v229", "ph": "d9261dfb", "equity": 98469242, "ret": -1.53}, {"id": "v230", "ph": "141579fe", "equity": 98469242, "ret": -1.53}, {"id": "v235", "ph": "3e6c1666", "equity": 98469242, "ret": -1.53}, {"id": "v236", "ph": "f9c75560", "equity": 98469242, "ret": -1.53}, {"id": "v265", "ph": "7faed59d", "equity": 98469242, "ret": -1.53}, {"id": "v266", "ph": "c133b585", "equity": 98469242, "ret": -1.53}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98469242, "ret": -1.53}, {"id": "v272", "ph": "2ed2027f", "equity": 98469242, "ret": -1.53}, {"id": "v277", "ph": "488b612a", "equity": 98469242, "ret": -1.53}, {"id": "v278", "ph": "861fb42b", "equity": 98469242, "ret": -1.53}, {"id": "v283", "ph": "479e4b25", "equity": 98469242, "ret": -1.53}, {"id": "v284", "ph": "261c5d58", "equity": 98469242, "ret": -1.53}, {"id": "v318", "ph": "c99872ef", "equity": 97999020, "ret": -2.0}, {"id": "v303", "ph": "1a084164", "equity": 97258359, "ret": -2.74}, {"id": "v300", "ph": "c6ddc17b", "equity": 96532942, "ret": -3.47}, {"id": "v312", "ph": "4c23846f", "equity": 96196017, "ret": -3.8}, {"id": "v298", "ph": "5d4bbec0", "equity": 94827463, "ret": -5.17}, {"id": "v296", "ph": "4c554378", "equity": 94813548, "ret": -5.19}, {"id": "v299", "ph": "25046b1a", "equity": 93333201, "ret": -6.67}], "20260701": [{"id": "v308", "ph": "cb12dd0b", "equity": 101360932, "ret": 1.36}, {"id": "v306", "ph": "6966b8f6", "equity": 101023539, "ret": 1.02}, {"id": "v321", "ph": "e82de49b", "equity": 100836847, "ret": 0.84}, {"id": "v315", "ph": "e6d5b283", "equity": 100570300, "ret": 0.57}, {"id": "v314", "ph": "7511570e", "equity": 100059178, "ret": 0.06}, {"id": "v87", "ph": "c0be98c0", "equity": 99918552, "ret": -0.08}, {"id": "v93", "ph": "f10d4e45", "equity": 99918552, "ret": -0.08}, {"id": "v103", "ph": "75b0a37c", "equity": 99860630, "ret": -0.14}, {"id": "v317", "ph": "51f8ee6d", "equity": 99859195, "ret": -0.14}, {"id": "v81", "ph": "a6eac1e4", "equity": 99804200, "ret": -0.2}, {"id": "v95", "ph": "7e28e756", "equity": 99804200, "ret": -0.2}, {"id": "v91", "ph": "5674a3d7", "equity": 99732447, "ret": -0.27}, {"id": "v147", "ph": "2fbeeedb", "equity": 99693486, "ret": -0.31}, {"id": "v151", "ph": "2eb1dd06", "equity": 99693486, "ret": -0.31}, {"id": "v49", "ph": "cdba73e0", "equity": 99613131, "ret": -0.39}, {"id": "v51", "ph": "21a98e46", "equity": 99613131, "ret": -0.39}, {"id": "v197", "ph": "5c290a32", "equity": 99601051, "ret": -0.4}, {"id": "v149", "ph": "c5329f8d", "equity": 99575229, "ret": -0.42}, {"id": "v89", "ph": "c49d5680", "equity": 99567185, "ret": -0.43}, {"id": "v105", "ph": "88395429", "equity": 99565829, "ret": -0.43}, {"id": "v107", "ph": "be5cd36b", "equity": 99546459, "ret": -0.45}, {"id": "v205", "ph": "02e5a3f5", "equity": 99543130, "ret": -0.46}, {"id": "v97", "ph": "ebf31977", "equity": 99509263, "ret": -0.49}, {"id": "v195", "ph": "dd89cf59", "equity": 99462748, "ret": -0.54}, {"id": "v201", "ph": "cb8a413e", "equity": 99462748, "ret": -0.54}, {"id": "v211", "ph": "9227673c", "equity": 99404827, "ret": -0.6}, {"id": "v47", "ph": "ed758fcf", "equity": 99370627, "ret": -0.63}, {"id": "v99", "ph": "fb39409b", "equity": 99226467, "ret": -0.77}, {"id": "v101", "ph": "c4354346", "equity": 99226467, "ret": -0.77}, {"id": "v213", "ph": "0e1d8e45", "equity": 99196638, "ret": -0.8}, {"id": "v302", "ph": "3f30502d", "equity": 99089671, "ret": -0.91}, {"id": "v40", "ph": "70731d89", "equity": 99078373, "ret": -0.92}, {"id": "v313", "ph": "b9f4ee72", "equity": 99063825, "ret": -0.94}, {"id": "v215", "ph": "a904a49d", "equity": 99027622, "ret": -0.97}, {"id": "v207", "ph": "0f6601a0", "equity": 99015662, "ret": -0.98}, {"id": "v209", "ph": "8730802d", "equity": 99015662, "ret": -0.98}, {"id": "v155", "ph": "31c0d84e", "equity": 98992814, "ret": -1.01}, {"id": "v189", "ph": "dfdbd0c8", "equity": 98988762, "ret": -1.01}, {"id": "v203", "ph": "2071defa", "equity": 98988762, "ret": -1.01}, {"id": "v57", "ph": "e7e98b6d", "equity": 98982309, "ret": -1.02}, {"id": "v59", "ph": "1858e2ec", "equity": 98982309, "ret": -1.02}, {"id": "v199", "ph": "390bfab3", "equity": 98915940, "ret": -1.08}, {"id": "v307", "ph": "6abce93d", "equity": 98890484, "ret": -1.11}, {"id": "v319", "ph": "ca25f043", "equity": 98830572, "ret": -1.17}, {"id": "v157", "ph": "80f3e23b", "equity": 98795294, "ret": -1.2}, {"id": "v159", "ph": "af80c67a", "equity": 98795294, "ret": -1.2}, {"id": "v161", "ph": "ed5677e6", "equity": 98767602, "ret": -1.23}, {"id": "v165", "ph": "8f862b27", "equity": 98767602, "ret": -1.23}, {"id": "v167", "ph": "b6d6aed8", "equity": 98767602, "ret": -1.23}, {"id": "v316", "ph": "8dc1d197", "equity": 98752327, "ret": -1.25}, {"id": "v41", "ph": "e9d84e84", "equity": 98699639, "ret": -1.3}, {"id": "v305", "ph": "8cc4eea6", "equity": 98581531, "ret": -1.42}, {"id": "v304", "ph": "96c7e8e1", "equity": 98559814, "ret": -1.44}, {"id": "v320", "ph": "48d6a9ef", "equity": 98556948, "ret": -1.44}, {"id": "v4", "ph": "b6219595", "equity": 98505594, "ret": -1.49}, {"id": "v301", "ph": "30da2021", "equity": 98413612, "ret": -1.59}, {"id": "v1", "ph": "4874f4c9", "equity": 98294162, "ret": -1.71}, {"id": "v310", "ph": "ec9dd55c", "equity": 97841463, "ret": -2.16}, {"id": "v217", "ph": "4c547a61", "equity": 97681778, "ret": -2.32}, {"id": "v218", "ph": "7304d2d4", "equity": 97681778, "ret": -2.32}, {"id": "v223", "ph": "b57356b8", "equity": 97609410, "ret": -2.39}, {"id": "v224", "ph": "888ab069", "equity": 97609410, "ret": -2.39}, {"id": "v229", "ph": "d9261dfb", "equity": 97609410, "ret": -2.39}, {"id": "v230", "ph": "141579fe", "equity": 97609410, "ret": -2.39}, {"id": "v235", "ph": "3e6c1666", "equity": 97609410, "ret": -2.39}, {"id": "v236", "ph": "f9c75560", "equity": 97609410, "ret": -2.39}, {"id": "v265", "ph": "7faed59d", "equity": 97609410, "ret": -2.39}, {"id": "v266", "ph": "c133b585", "equity": 97609410, "ret": -2.39}, {"id": "v271", "ph": "2b9ccdcd", "equity": 97609410, "ret": -2.39}, {"id": "v272", "ph": "2ed2027f", "equity": 97609410, "ret": -2.39}, {"id": "v277", "ph": "488b612a", "equity": 97609410, "ret": -2.39}, {"id": "v278", "ph": "861fb42b", "equity": 97609410, "ret": -2.39}, {"id": "v283", "ph": "479e4b25", "equity": 97609410, "ret": -2.39}, {"id": "v284", "ph": "261c5d58", "equity": 97609410, "ret": -2.39}, {"id": "v309", "ph": "07610040", "equity": 97561429, "ret": -2.44}, {"id": "v311", "ph": "8409c6e5", "equity": 97339411, "ret": -2.66}, {"id": "v318", "ph": "c99872ef", "equity": 96866665, "ret": -3.13}, {"id": "v303", "ph": "1a084164", "equity": 96567001, "ret": -3.43}, {"id": "v312", "ph": "4c23846f", "equity": 94754537, "ret": -5.25}, {"id": "v300", "ph": "c6ddc17b", "equity": 93711266, "ret": -6.29}, {"id": "v296", "ph": "4c554378", "equity": 93238208, "ret": -6.76}, {"id": "v298", "ph": "5d4bbec0", "equity": 91885138, "ret": -8.11}, {"id": "v299", "ph": "25046b1a", "equity": 90740541, "ret": -9.26}], "20260702": [{"id": "v321", "ph": "e82de49b", "equity": 98791447, "ret": -1.21}, {"id": "v319", "ph": "ca25f043", "equity": 98585872, "ret": -1.41}, {"id": "v313", "ph": "b9f4ee72", "equity": 98254344, "ret": -1.75}, {"id": "v317", "ph": "51f8ee6d", "equity": 98083547, "ret": -1.92}, {"id": "v316", "ph": "8dc1d197", "equity": 97958697, "ret": -2.04}, {"id": "v306", "ph": "6966b8f6", "equity": 97799665, "ret": -2.2}, {"id": "v320", "ph": "48d6a9ef", "equity": 97726108, "ret": -2.27}, {"id": "v314", "ph": "7511570e", "equity": 97620794, "ret": -2.38}, {"id": "v307", "ph": "6abce93d", "equity": 97389674, "ret": -2.61}, {"id": "v205", "ph": "02e5a3f5", "equity": 97246999, "ret": -2.75}, {"id": "v91", "ph": "5674a3d7", "equity": 97234833, "ret": -2.77}, {"id": "v81", "ph": "a6eac1e4", "equity": 96929027, "ret": -3.07}, {"id": "v95", "ph": "7e28e756", "equity": 96929027, "ret": -3.07}, {"id": "v99", "ph": "fb39409b", "equity": 96779933, "ret": -3.22}, {"id": "v101", "ph": "c4354346", "equity": 96779933, "ret": -3.22}, {"id": "v49", "ph": "cdba73e0", "equity": 96739834, "ret": -3.26}, {"id": "v51", "ph": "21a98e46", "equity": 96739834, "ret": -3.26}, {"id": "v199", "ph": "390bfab3", "equity": 96631456, "ret": -3.37}, {"id": "v304", "ph": "96c7e8e1", "equity": 96611170, "ret": -3.39}, {"id": "v197", "ph": "5c290a32", "equity": 96566014, "ret": -3.43}, {"id": "v207", "ph": "0f6601a0", "equity": 96572081, "ret": -3.43}, {"id": "v209", "ph": "8730802d", "equity": 96572081, "ret": -3.43}, {"id": "v57", "ph": "e7e98b6d", "equity": 96539505, "ret": -3.46}, {"id": "v59", "ph": "1858e2ec", "equity": 96539505, "ret": -3.46}, {"id": "v103", "ph": "75b0a37c", "equity": 96385631, "ret": -3.61}, {"id": "v161", "ph": "ed5677e6", "equity": 96318491, "ret": -3.68}, {"id": "v165", "ph": "8f862b27", "equity": 96318491, "ret": -3.68}, {"id": "v167", "ph": "b6d6aed8", "equity": 96318491, "ret": -3.68}, {"id": "v315", "ph": "e6d5b283", "equity": 96255988, "ret": -3.74}, {"id": "v195", "ph": "dd89cf59", "equity": 96182658, "ret": -3.82}, {"id": "v201", "ph": "cb8a413e", "equity": 96182658, "ret": -3.82}, {"id": "v189", "ph": "dfdbd0c8", "equity": 96136966, "ret": -3.86}, {"id": "v203", "ph": "2071defa", "equity": 96136966, "ret": -3.86}, {"id": "v217", "ph": "4c547a61", "equity": 96094928, "ret": -3.91}, {"id": "v218", "ph": "7304d2d4", "equity": 96094928, "ret": -3.91}, {"id": "v305", "ph": "8cc4eea6", "equity": 96059397, "ret": -3.94}, {"id": "v308", "ph": "cb12dd0b", "equity": 96046199, "ret": -3.95}, {"id": "v223", "ph": "b57356b8", "equity": 96022560, "ret": -3.98}, {"id": "v224", "ph": "888ab069", "equity": 96022560, "ret": -3.98}, {"id": "v229", "ph": "d9261dfb", "equity": 96022560, "ret": -3.98}, {"id": "v230", "ph": "141579fe", "equity": 96022560, "ret": -3.98}, {"id": "v235", "ph": "3e6c1666", "equity": 96022560, "ret": -3.98}, {"id": "v236", "ph": "f9c75560", "equity": 96022560, "ret": -3.98}, {"id": "v265", "ph": "7faed59d", "equity": 96022560, "ret": -3.98}, {"id": "v266", "ph": "c133b585", "equity": 96022560, "ret": -3.98}, {"id": "v271", "ph": "2b9ccdcd", "equity": 96022560, "ret": -3.98}, {"id": "v272", "ph": "2ed2027f", "equity": 96022560, "ret": -3.98}, {"id": "v277", "ph": "488b612a", "equity": 96022560, "ret": -3.98}, {"id": "v278", "ph": "861fb42b", "equity": 96022560, "ret": -3.98}, {"id": "v283", "ph": "479e4b25", "equity": 96022560, "ret": -3.98}, {"id": "v284", "ph": "261c5d58", "equity": 96022560, "ret": -3.98}, {"id": "v97", "ph": "ebf31977", "equity": 95995095, "ret": -4.0}, {"id": "v157", "ph": "80f3e23b", "equity": 95937374, "ret": -4.06}, {"id": "v159", "ph": "af80c67a", "equity": 95937374, "ret": -4.06}, {"id": "v211", "ph": "9227673c", "equity": 95933695, "ret": -4.07}, {"id": "v87", "ph": "c0be98c0", "equity": 95582492, "ret": -4.42}, {"id": "v93", "ph": "f10d4e45", "equity": 95582492, "ret": -4.42}, {"id": "v302", "ph": "3f30502d", "equity": 95445187, "ret": -4.55}, {"id": "v105", "ph": "88395429", "equity": 95443794, "ret": -4.56}, {"id": "v107", "ph": "be5cd36b", "equity": 95420371, "ret": -4.58}, {"id": "v47", "ph": "ed758fcf", "equity": 95248102, "ret": -4.75}, {"id": "v89", "ph": "c49d5680", "equity": 95191756, "ret": -4.81}, {"id": "v213", "ph": "0e1d8e45", "equity": 95032623, "ret": -4.97}, {"id": "v303", "ph": "1a084164", "equity": 94973975, "ret": -5.03}, {"id": "v301", "ph": "30da2021", "equity": 94918817, "ret": -5.08}, {"id": "v155", "ph": "31c0d84e", "equity": 94884928, "ret": -5.12}, {"id": "v149", "ph": "c5329f8d", "equity": 94835485, "ret": -5.16}, {"id": "v215", "ph": "a904a49d", "equity": 94714687, "ret": -5.29}, {"id": "v310", "ph": "ec9dd55c", "equity": 94667951, "ret": -5.33}, {"id": "v1", "ph": "4874f4c9", "equity": 94529504, "ret": -5.47}, {"id": "v318", "ph": "c99872ef", "equity": 94498663, "ret": -5.5}, {"id": "v147", "ph": "2fbeeedb", "equity": 93309835, "ret": -6.69}, {"id": "v151", "ph": "2eb1dd06", "equity": 93309835, "ret": -6.69}, {"id": "v41", "ph": "e9d84e84", "equity": 92888798, "ret": -7.11}, {"id": "v309", "ph": "07610040", "equity": 92000675, "ret": -8.0}, {"id": "v311", "ph": "8409c6e5", "equity": 91855356, "ret": -8.14}, {"id": "v4", "ph": "b6219595", "equity": 91060410, "ret": -8.94}, {"id": "v40", "ph": "70731d89", "equity": 90588484, "ret": -9.41}, {"id": "v312", "ph": "4c23846f", "equity": 90083317, "ret": -9.92}, {"id": "v296", "ph": "4c554378", "equity": 89998698, "ret": -10.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 85532266, "ret": -14.47}, {"id": "v299", "ph": "25046b1a", "equity": 84271313, "ret": -15.73}, {"id": "v298", "ph": "5d4bbec0", "equity": 84062899, "ret": -15.94}], "20260703": [{"id": "v319", "ph": "ca25f043", "equity": 98425166, "ret": -1.57}, {"id": "v321", "ph": "e82de49b", "equity": 98254043, "ret": -1.75}, {"id": "v313", "ph": "b9f4ee72", "equity": 98201465, "ret": -1.8}, {"id": "v316", "ph": "8dc1d197", "equity": 97685295, "ret": -2.31}, {"id": "v317", "ph": "51f8ee6d", "equity": 97525130, "ret": -2.47}, {"id": "v320", "ph": "48d6a9ef", "equity": 97485037, "ret": -2.51}, {"id": "v314", "ph": "7511570e", "equity": 97275856, "ret": -2.72}, {"id": "v307", "ph": "6abce93d", "equity": 97013909, "ret": -2.99}, {"id": "v205", "ph": "02e5a3f5", "equity": 96883635, "ret": -3.12}, {"id": "v91", "ph": "5674a3d7", "equity": 96607445, "ret": -3.39}, {"id": "v306", "ph": "6966b8f6", "equity": 96557673, "ret": -3.44}, {"id": "v199", "ph": "390bfab3", "equity": 96554368, "ret": -3.45}, {"id": "v304", "ph": "96c7e8e1", "equity": 96441037, "ret": -3.56}, {"id": "v197", "ph": "5c290a32", "equity": 96399937, "ret": -3.6}, {"id": "v99", "ph": "fb39409b", "equity": 96145358, "ret": -3.85}, {"id": "v101", "ph": "c4354346", "equity": 96145358, "ret": -3.85}, {"id": "v207", "ph": "0f6601a0", "equity": 96048256, "ret": -3.95}, {"id": "v209", "ph": "8730802d", "equity": 96048256, "ret": -3.95}, {"id": "v57", "ph": "e7e98b6d", "equity": 95904930, "ret": -4.1}, {"id": "v59", "ph": "1858e2ec", "equity": 95904930, "ret": -4.1}, {"id": "v315", "ph": "e6d5b283", "equity": 95877764, "ret": -4.12}, {"id": "v103", "ph": "75b0a37c", "equity": 95790009, "ret": -4.21}, {"id": "v161", "ph": "ed5677e6", "equity": 95776078, "ret": -4.22}, {"id": "v165", "ph": "8f862b27", "equity": 95776078, "ret": -4.22}, {"id": "v167", "ph": "b6d6aed8", "equity": 95776078, "ret": -4.22}, {"id": "v49", "ph": "cdba73e0", "equity": 95750950, "ret": -4.25}, {"id": "v51", "ph": "21a98e46", "equity": 95750950, "ret": -4.25}, {"id": "v195", "ph": "dd89cf59", "equity": 95673198, "ret": -4.33}, {"id": "v201", "ph": "cb8a413e", "equity": 95673198, "ret": -4.33}, {"id": "v217", "ph": "4c547a61", "equity": 95667983, "ret": -4.33}, {"id": "v218", "ph": "7304d2d4", "equity": 95667983, "ret": -4.33}, {"id": "v81", "ph": "a6eac1e4", "equity": 95606729, "ret": -4.39}, {"id": "v95", "ph": "7e28e756", "equity": 95606729, "ret": -4.39}, {"id": "v223", "ph": "b57356b8", "equity": 95595615, "ret": -4.4}, {"id": "v224", "ph": "888ab069", "equity": 95595615, "ret": -4.4}, {"id": "v229", "ph": "d9261dfb", "equity": 95595615, "ret": -4.4}, {"id": "v230", "ph": "141579fe", "equity": 95595615, "ret": -4.4}, {"id": "v235", "ph": "3e6c1666", "equity": 95595615, "ret": -4.4}, {"id": "v236", "ph": "f9c75560", "equity": 95595615, "ret": -4.4}, {"id": "v265", "ph": "7faed59d", "equity": 95595615, "ret": -4.4}, {"id": "v266", "ph": "c133b585", "equity": 95595615, "ret": -4.4}, {"id": "v271", "ph": "2b9ccdcd", "equity": 95595615, "ret": -4.4}, {"id": "v272", "ph": "2ed2027f", "equity": 95595615, "ret": -4.4}, {"id": "v277", "ph": "488b612a", "equity": 95595615, "ret": -4.4}, {"id": "v278", "ph": "861fb42b", "equity": 95595615, "ret": -4.4}, {"id": "v283", "ph": "479e4b25", "equity": 95595615, "ret": -4.4}, {"id": "v284", "ph": "261c5d58", "equity": 95595615, "ret": -4.4}, {"id": "v305", "ph": "8cc4eea6", "equity": 95541925, "ret": -4.46}, {"id": "v211", "ph": "9227673c", "equity": 95426636, "ret": -4.57}, {"id": "v157", "ph": "80f3e23b", "equity": 95415410, "ret": -4.58}, {"id": "v159", "ph": "af80c67a", "equity": 95415410, "ret": -4.58}, {"id": "v189", "ph": "dfdbd0c8", "equity": 95279466, "ret": -4.72}, {"id": "v203", "ph": "2071defa", "equity": 95279466, "ret": -4.72}, {"id": "v97", "ph": "ebf31977", "equity": 95090844, "ret": -4.91}, {"id": "v87", "ph": "c0be98c0", "equity": 94984959, "ret": -5.02}, {"id": "v93", "ph": "f10d4e45", "equity": 94984959, "ret": -5.02}, {"id": "v308", "ph": "cb12dd0b", "equity": 94777607, "ret": -5.22}, {"id": "v302", "ph": "3f30502d", "equity": 94528879, "ret": -5.47}, {"id": "v303", "ph": "1a084164", "equity": 94528920, "ret": -5.47}, {"id": "v310", "ph": "ec9dd55c", "equity": 94363260, "ret": -5.64}, {"id": "v107", "ph": "be5cd36b", "equity": 94341505, "ret": -5.66}, {"id": "v89", "ph": "c49d5680", "equity": 94285756, "ret": -5.71}, {"id": "v155", "ph": "31c0d84e", "equity": 94292507, "ret": -5.71}, {"id": "v47", "ph": "ed758fcf", "equity": 94188860, "ret": -5.81}, {"id": "v213", "ph": "0e1d8e45", "equity": 94106686, "ret": -5.89}, {"id": "v105", "ph": "88395429", "equity": 94051138, "ret": -5.95}, {"id": "v301", "ph": "30da2021", "equity": 94001763, "ret": -6.0}, {"id": "v149", "ph": "c5329f8d", "equity": 93961371, "ret": -6.04}, {"id": "v318", "ph": "c99872ef", "equity": 93732003, "ret": -6.27}, {"id": "v215", "ph": "a904a49d", "equity": 93655835, "ret": -6.34}, {"id": "v1", "ph": "4874f4c9", "equity": 93473178, "ret": -6.53}, {"id": "v147", "ph": "2fbeeedb", "equity": 92615293, "ret": -7.38}, {"id": "v151", "ph": "2eb1dd06", "equity": 92615293, "ret": -7.38}, {"id": "v309", "ph": "07610040", "equity": 91881104, "ret": -8.12}, {"id": "v41", "ph": "e9d84e84", "equity": 91480991, "ret": -8.52}, {"id": "v311", "ph": "8409c6e5", "equity": 91180769, "ret": -8.82}, {"id": "v312", "ph": "4c23846f", "equity": 89938849, "ret": -10.06}, {"id": "v296", "ph": "4c554378", "equity": 89823803, "ret": -10.18}, {"id": "v4", "ph": "b6219595", "equity": 89703610, "ret": -10.3}, {"id": "v40", "ph": "70731d89", "equity": 89146216, "ret": -10.85}, {"id": "v300", "ph": "c6ddc17b", "equity": 84388306, "ret": -15.61}, {"id": "v298", "ph": "5d4bbec0", "equity": 83997991, "ret": -16.0}, {"id": "v299", "ph": "25046b1a", "equity": 83603796, "ret": -16.4}], "20260706": [{"id": "v319", "ph": "ca25f043", "equity": 98197566, "ret": -1.8}, {"id": "v313", "ph": "b9f4ee72", "equity": 97603564, "ret": -2.4}, {"id": "v316", "ph": "8dc1d197", "equity": 97234734, "ret": -2.77}, {"id": "v321", "ph": "e82de49b", "equity": 97144508, "ret": -2.86}, {"id": "v317", "ph": "51f8ee6d", "equity": 96840895, "ret": -3.16}, {"id": "v320", "ph": "48d6a9ef", "equity": 96760128, "ret": -3.24}, {"id": "v307", "ph": "6abce93d", "equity": 96230218, "ret": -3.77}, {"id": "v314", "ph": "7511570e", "equity": 95751362, "ret": -4.25}, {"id": "v205", "ph": "02e5a3f5", "equity": 95544491, "ret": -4.46}, {"id": "v91", "ph": "5674a3d7", "equity": 95510977, "ret": -4.49}, {"id": "v199", "ph": "390bfab3", "equity": 95397379, "ret": -4.6}, {"id": "v304", "ph": "96c7e8e1", "equity": 95339874, "ret": -4.66}, {"id": "v99", "ph": "fb39409b", "equity": 95236824, "ret": -4.76}, {"id": "v101", "ph": "c4354346", "equity": 95236824, "ret": -4.76}, {"id": "v207", "ph": "0f6601a0", "equity": 95075567, "ret": -4.92}, {"id": "v209", "ph": "8730802d", "equity": 95075567, "ret": -4.92}, {"id": "v81", "ph": "a6eac1e4", "equity": 95007002, "ret": -4.99}, {"id": "v95", "ph": "7e28e756", "equity": 95007002, "ret": -4.99}, {"id": "v197", "ph": "5c290a32", "equity": 94741409, "ret": -5.26}, {"id": "v57", "ph": "e7e98b6d", "equity": 94699077, "ret": -5.3}, {"id": "v59", "ph": "1858e2ec", "equity": 94699077, "ret": -5.3}, {"id": "v103", "ph": "75b0a37c", "equity": 94668122, "ret": -5.33}, {"id": "v306", "ph": "6966b8f6", "equity": 94605287, "ret": -5.39}, {"id": "v161", "ph": "ed5677e6", "equity": 94496826, "ret": -5.5}, {"id": "v165", "ph": "8f862b27", "equity": 94496826, "ret": -5.5}, {"id": "v167", "ph": "b6d6aed8", "equity": 94496826, "ret": -5.5}, {"id": "v189", "ph": "dfdbd0c8", "equity": 94488662, "ret": -5.51}, {"id": "v203", "ph": "2071defa", "equity": 94488662, "ret": -5.51}, {"id": "v217", "ph": "4c547a61", "equity": 94426233, "ret": -5.57}, {"id": "v218", "ph": "7304d2d4", "equity": 94426233, "ret": -5.57}, {"id": "v49", "ph": "cdba73e0", "equity": 94406113, "ret": -5.59}, {"id": "v51", "ph": "21a98e46", "equity": 94406113, "ret": -5.59}, {"id": "v223", "ph": "b57356b8", "equity": 94355882, "ret": -5.64}, {"id": "v224", "ph": "888ab069", "equity": 94355882, "ret": -5.64}, {"id": "v229", "ph": "d9261dfb", "equity": 94355882, "ret": -5.64}, {"id": "v230", "ph": "141579fe", "equity": 94355882, "ret": -5.64}, {"id": "v235", "ph": "3e6c1666", "equity": 94355882, "ret": -5.64}, {"id": "v236", "ph": "f9c75560", "equity": 94355882, "ret": -5.64}, {"id": "v265", "ph": "7faed59d", "equity": 94355882, "ret": -5.64}, {"id": "v266", "ph": "c133b585", "equity": 94355882, "ret": -5.64}, {"id": "v271", "ph": "2b9ccdcd", "equity": 94355882, "ret": -5.64}, {"id": "v272", "ph": "2ed2027f", "equity": 94355882, "ret": -5.64}, {"id": "v277", "ph": "488b612a", "equity": 94355882, "ret": -5.64}, {"id": "v278", "ph": "861fb42b", "equity": 94355882, "ret": -5.64}, {"id": "v283", "ph": "479e4b25", "equity": 94355882, "ret": -5.64}, {"id": "v284", "ph": "261c5d58", "equity": 94355882, "ret": -5.64}, {"id": "v211", "ph": "9227673c", "equity": 94235871, "ret": -5.76}, {"id": "v305", "ph": "8cc4eea6", "equity": 94224669, "ret": -5.78}, {"id": "v195", "ph": "dd89cf59", "equity": 94212019, "ret": -5.79}, {"id": "v201", "ph": "cb8a413e", "equity": 94212019, "ret": -5.79}, {"id": "v157", "ph": "80f3e23b", "equity": 93957691, "ret": -6.04}, {"id": "v159", "ph": "af80c67a", "equity": 93957691, "ret": -6.04}, {"id": "v310", "ph": "ec9dd55c", "equity": 93938789, "ret": -6.06}, {"id": "v107", "ph": "be5cd36b", "equity": 93866495, "ret": -6.13}, {"id": "v97", "ph": "ebf31977", "equity": 93770220, "ret": -6.23}, {"id": "v315", "ph": "e6d5b283", "equity": 93711754, "ret": -6.29}, {"id": "v87", "ph": "c0be98c0", "equity": 93450916, "ret": -6.55}, {"id": "v93", "ph": "f10d4e45", "equity": 93450916, "ret": -6.55}, {"id": "v303", "ph": "1a084164", "equity": 93378687, "ret": -6.62}, {"id": "v105", "ph": "88395429", "equity": 93223229, "ret": -6.78}, {"id": "v213", "ph": "0e1d8e45", "equity": 93085970, "ret": -6.91}, {"id": "v215", "ph": "a904a49d", "equity": 92982818, "ret": -7.02}, {"id": "v308", "ph": "cb12dd0b", "equity": 92964903, "ret": -7.04}, {"id": "v318", "ph": "c99872ef", "equity": 92867651, "ret": -7.13}, {"id": "v47", "ph": "ed758fcf", "equity": 92618653, "ret": -7.38}, {"id": "v155", "ph": "31c0d84e", "equity": 92607149, "ret": -7.39}, {"id": "v302", "ph": "3f30502d", "equity": 92518208, "ret": -7.48}, {"id": "v89", "ph": "c49d5680", "equity": 92511480, "ret": -7.49}, {"id": "v301", "ph": "30da2021", "equity": 92319361, "ret": -7.68}, {"id": "v1", "ph": "4874f4c9", "equity": 91573111, "ret": -8.43}, {"id": "v149", "ph": "c5329f8d", "equity": 91557578, "ret": -8.44}, {"id": "v147", "ph": "2fbeeedb", "equity": 89660568, "ret": -10.34}, {"id": "v151", "ph": "2eb1dd06", "equity": 89660568, "ret": -10.34}, {"id": "v309", "ph": "07610040", "equity": 89431315, "ret": -10.57}, {"id": "v311", "ph": "8409c6e5", "equity": 89401928, "ret": -10.6}, {"id": "v296", "ph": "4c554378", "equity": 89247261, "ret": -10.75}, {"id": "v41", "ph": "e9d84e84", "equity": 88846484, "ret": -11.15}, {"id": "v312", "ph": "4c23846f", "equity": 88019396, "ret": -11.98}, {"id": "v4", "ph": "b6219595", "equity": 86554007, "ret": -13.45}, {"id": "v40", "ph": "70731d89", "equity": 85831302, "ret": -14.17}, {"id": "v300", "ph": "c6ddc17b", "equity": 82944532, "ret": -17.06}, {"id": "v298", "ph": "5d4bbec0", "equity": 81095511, "ret": -18.9}, {"id": "v299", "ph": "25046b1a", "equity": 80278493, "ret": -19.72}], "20260707": [{"id": "v319", "ph": "ca25f043", "equity": 98693670, "ret": -1.31}, {"id": "v316", "ph": "8dc1d197", "equity": 98305505, "ret": -1.69}, {"id": "v313", "ph": "b9f4ee72", "equity": 98262263, "ret": -1.74}, {"id": "v320", "ph": "48d6a9ef", "equity": 98247893, "ret": -1.75}, {"id": "v317", "ph": "51f8ee6d", "equity": 97707033, "ret": -2.29}, {"id": "v314", "ph": "7511570e", "equity": 97509493, "ret": -2.49}, {"id": "v91", "ph": "5674a3d7", "equity": 97333001, "ret": -2.67}, {"id": "v199", "ph": "390bfab3", "equity": 97277991, "ret": -2.72}, {"id": "v321", "ph": "e82de49b", "equity": 97253215, "ret": -2.75}, {"id": "v81", "ph": "a6eac1e4", "equity": 97049213, "ret": -2.95}, {"id": "v95", "ph": "7e28e756", "equity": 97050436, "ret": -2.95}, {"id": "v306", "ph": "6966b8f6", "equity": 96847146, "ret": -3.15}, {"id": "v307", "ph": "6abce93d", "equity": 96696164, "ret": -3.3}, {"id": "v189", "ph": "dfdbd0c8", "equity": 96556561, "ret": -3.44}, {"id": "v203", "ph": "2071defa", "equity": 96557781, "ret": -3.44}, {"id": "v99", "ph": "fb39409b", "equity": 96461789, "ret": -3.54}, {"id": "v101", "ph": "c4354346", "equity": 96462037, "ret": -3.54}, {"id": "v205", "ph": "02e5a3f5", "equity": 96453452, "ret": -3.55}, {"id": "v304", "ph": "96c7e8e1", "equity": 96428577, "ret": -3.57}, {"id": "v305", "ph": "8cc4eea6", "equity": 96418011, "ret": -3.58}, {"id": "v103", "ph": "75b0a37c", "equity": 96298247, "ret": -3.7}, {"id": "v49", "ph": "cdba73e0", "equity": 96002579, "ret": -4.0}, {"id": "v51", "ph": "21a98e46", "equity": 96001353, "ret": -4.0}, {"id": "v107", "ph": "be5cd36b", "equity": 95993990, "ret": -4.01}, {"id": "v197", "ph": "5c290a32", "equity": 95968207, "ret": -4.03}, {"id": "v302", "ph": "3f30502d", "equity": 95614631, "ret": -4.39}, {"id": "v157", "ph": "80f3e23b", "equity": 95569082, "ret": -4.43}, {"id": "v159", "ph": "af80c67a", "equity": 95567859, "ret": -4.43}, {"id": "v57", "ph": "e7e98b6d", "equity": 95554443, "ret": -4.45}, {"id": "v59", "ph": "1858e2ec", "equity": 95554690, "ret": -4.45}, {"id": "v207", "ph": "0f6601a0", "equity": 95525632, "ret": -4.47}, {"id": "v209", "ph": "8730802d", "equity": 95525880, "ret": -4.47}, {"id": "v217", "ph": "4c547a61", "equity": 95450761, "ret": -4.55}, {"id": "v218", "ph": "7304d2d4", "equity": 95450761, "ret": -4.55}, {"id": "v223", "ph": "b57356b8", "equity": 95388809, "ret": -4.61}, {"id": "v224", "ph": "888ab069", "equity": 95388809, "ret": -4.61}, {"id": "v229", "ph": "d9261dfb", "equity": 95388809, "ret": -4.61}, {"id": "v230", "ph": "141579fe", "equity": 95388809, "ret": -4.61}, {"id": "v235", "ph": "3e6c1666", "equity": 95388809, "ret": -4.61}, {"id": "v236", "ph": "f9c75560", "equity": 95388809, "ret": -4.61}, {"id": "v265", "ph": "7faed59d", "equity": 95388809, "ret": -4.61}, {"id": "v266", "ph": "c133b585", "equity": 95388809, "ret": -4.61}, {"id": "v271", "ph": "2b9ccdcd", "equity": 95388809, "ret": -4.61}, {"id": "v272", "ph": "2ed2027f", "equity": 95388809, "ret": -4.61}, {"id": "v277", "ph": "488b612a", "equity": 95388809, "ret": -4.61}, {"id": "v278", "ph": "861fb42b", "equity": 95388809, "ret": -4.61}, {"id": "v283", "ph": "479e4b25", "equity": 95388809, "ret": -4.61}, {"id": "v284", "ph": "261c5d58", "equity": 95388809, "ret": -4.61}, {"id": "v105", "ph": "88395429", "equity": 95282295, "ret": -4.72}, {"id": "v87", "ph": "c0be98c0", "equity": 95222534, "ret": -4.78}, {"id": "v93", "ph": "f10d4e45", "equity": 95222534, "ret": -4.78}, {"id": "v195", "ph": "dd89cf59", "equity": 95180923, "ret": -4.82}, {"id": "v201", "ph": "cb8a413e", "equity": 95180923, "ret": -4.82}, {"id": "v213", "ph": "0e1d8e45", "equity": 95176202, "ret": -4.82}, {"id": "v211", "ph": "9227673c", "equity": 95089597, "ret": -4.91}, {"id": "v308", "ph": "cb12dd0b", "equity": 94879582, "ret": -5.12}, {"id": "v303", "ph": "1a084164", "equity": 94738991, "ret": -5.26}, {"id": "v97", "ph": "ebf31977", "equity": 94655179, "ret": -5.34}, {"id": "v161", "ph": "ed5677e6", "equity": 94577324, "ret": -5.42}, {"id": "v165", "ph": "8f862b27", "equity": 94577324, "ret": -5.42}, {"id": "v167", "ph": "b6d6aed8", "equity": 94577572, "ret": -5.42}, {"id": "v155", "ph": "31c0d84e", "equity": 94245039, "ret": -5.75}, {"id": "v47", "ph": "ed758fcf", "equity": 94237190, "ret": -5.76}, {"id": "v215", "ph": "a904a49d", "equity": 94242294, "ret": -5.76}, {"id": "v301", "ph": "30da2021", "equity": 93978996, "ret": -6.02}, {"id": "v310", "ph": "ec9dd55c", "equity": 93711421, "ret": -6.29}, {"id": "v89", "ph": "c49d5680", "equity": 93531243, "ret": -6.47}, {"id": "v315", "ph": "e6d5b283", "equity": 93396771, "ret": -6.6}, {"id": "v1", "ph": "4874f4c9", "equity": 93346275, "ret": -6.65}, {"id": "v149", "ph": "c5329f8d", "equity": 92610472, "ret": -7.39}, {"id": "v318", "ph": "c99872ef", "equity": 91695304, "ret": -8.3}, {"id": "v147", "ph": "2fbeeedb", "equity": 91607410, "ret": -8.39}, {"id": "v151", "ph": "2eb1dd06", "equity": 91608014, "ret": -8.39}, {"id": "v41", "ph": "e9d84e84", "equity": 89790563, "ret": -10.21}, {"id": "v311", "ph": "8409c6e5", "equity": 89611335, "ret": -10.39}, {"id": "v309", "ph": "07610040", "equity": 89551113, "ret": -10.45}, {"id": "v4", "ph": "b6219595", "equity": 88521115, "ret": -11.48}, {"id": "v296", "ph": "4c554378", "equity": 88093113, "ret": -11.91}, {"id": "v40", "ph": "70731d89", "equity": 87995606, "ret": -12.0}, {"id": "v312", "ph": "4c23846f", "equity": 86480137, "ret": -13.52}, {"id": "v300", "ph": "c6ddc17b", "equity": 85099596, "ret": -14.9}, {"id": "v298", "ph": "5d4bbec0", "equity": 81378493, "ret": -18.62}, {"id": "v299", "ph": "25046b1a", "equity": 81031423, "ret": -18.97}], "20260708": [{"id": "v319", "ph": "ca25f043", "equity": 97470051, "ret": -2.53}, {"id": "v321", "ph": "e82de49b", "equity": 95863837, "ret": -4.14}, {"id": "v313", "ph": "b9f4ee72", "equity": 95481223, "ret": -4.52}, {"id": "v101", "ph": "c4354346", "equity": 94493731, "ret": -5.51}, {"id": "v317", "ph": "51f8ee6d", "equity": 94450610, "ret": -5.55}, {"id": "v209", "ph": "8730802d", "equity": 94203324, "ret": -5.8}, {"id": "v59", "ph": "1858e2ec", "equity": 93894385, "ret": -6.11}, {"id": "v307", "ph": "6abce93d", "equity": 93837086, "ret": -6.16}, {"id": "v316", "ph": "8dc1d197", "equity": 93831128, "ret": -6.17}, {"id": "v99", "ph": "fb39409b", "equity": 93816583, "ret": -6.18}, {"id": "v167", "ph": "b6d6aed8", "equity": 93564546, "ret": -6.44}, {"id": "v207", "ph": "0f6601a0", "equity": 93526176, "ret": -6.47}, {"id": "v315", "ph": "e6d5b283", "equity": 93303825, "ret": -6.7}, {"id": "v205", "ph": "02e5a3f5", "equity": 93270613, "ret": -6.73}, {"id": "v57", "ph": "e7e98b6d", "equity": 93217237, "ret": -6.78}, {"id": "v320", "ph": "48d6a9ef", "equity": 93176307, "ret": -6.82}, {"id": "v161", "ph": "ed5677e6", "equity": 92887398, "ret": -7.11}, {"id": "v165", "ph": "8f862b27", "equity": 92887398, "ret": -7.11}, {"id": "v103", "ph": "75b0a37c", "equity": 92752222, "ret": -7.25}, {"id": "v314", "ph": "7511570e", "equity": 92717172, "ret": -7.28}, {"id": "v197", "ph": "5c290a32", "equity": 92525434, "ret": -7.47}, {"id": "v304", "ph": "96c7e8e1", "equity": 92465058, "ret": -7.53}, {"id": "v95", "ph": "7e28e756", "equity": 92376183, "ret": -7.62}, {"id": "v91", "ph": "5674a3d7", "equity": 92342374, "ret": -7.66}, {"id": "v211", "ph": "9227673c", "equity": 92194352, "ret": -7.81}, {"id": "v199", "ph": "390bfab3", "equity": 91895564, "ret": -8.1}, {"id": "v97", "ph": "ebf31977", "equity": 91886112, "ret": -8.11}, {"id": "v306", "ph": "6966b8f6", "equity": 91650241, "ret": -8.35}, {"id": "v195", "ph": "dd89cf59", "equity": 91566277, "ret": -8.43}, {"id": "v201", "ph": "cb8a413e", "equity": 91566277, "ret": -8.43}, {"id": "v49", "ph": "cdba73e0", "equity": 91326648, "ret": -8.67}, {"id": "v203", "ph": "2071defa", "equity": 91153904, "ret": -8.85}, {"id": "v107", "ph": "be5cd36b", "equity": 91033303, "ret": -8.97}, {"id": "v87", "ph": "c0be98c0", "equity": 90966948, "ret": -9.03}, {"id": "v93", "ph": "f10d4e45", "equity": 90966948, "ret": -9.03}, {"id": "v81", "ph": "a6eac1e4", "equity": 90865296, "ret": -9.13}, {"id": "v301", "ph": "30da2021", "equity": 90473273, "ret": -9.53}, {"id": "v318", "ph": "c99872ef", "equity": 90470932, "ret": -9.53}, {"id": "v157", "ph": "80f3e23b", "equity": 90163528, "ret": -9.84}, {"id": "v310", "ph": "ec9dd55c", "equity": 89945372, "ret": -10.05}, {"id": "v217", "ph": "4c547a61", "equity": 89912014, "ret": -10.09}, {"id": "v218", "ph": "7304d2d4", "equity": 89912014, "ret": -10.09}, {"id": "v223", "ph": "b57356b8", "equity": 89843062, "ret": -10.16}, {"id": "v224", "ph": "888ab069", "equity": 89843062, "ret": -10.16}, {"id": "v229", "ph": "d9261dfb", "equity": 89843062, "ret": -10.16}, {"id": "v230", "ph": "141579fe", "equity": 89843062, "ret": -10.16}, {"id": "v235", "ph": "3e6c1666", "equity": 89843062, "ret": -10.16}, {"id": "v236", "ph": "f9c75560", "equity": 89843062, "ret": -10.16}, {"id": "v265", "ph": "7faed59d", "equity": 89843062, "ret": -10.16}, {"id": "v266", "ph": "c133b585", "equity": 89843062, "ret": -10.16}, {"id": "v271", "ph": "2b9ccdcd", "equity": 89843062, "ret": -10.16}, {"id": "v272", "ph": "2ed2027f", "equity": 89843062, "ret": -10.16}, {"id": "v277", "ph": "488b612a", "equity": 89843062, "ret": -10.16}, {"id": "v278", "ph": "861fb42b", "equity": 89843062, "ret": -10.16}, {"id": "v283", "ph": "479e4b25", "equity": 89843062, "ret": -10.16}, {"id": "v284", "ph": "261c5d58", "equity": 89843062, "ret": -10.16}, {"id": "v1", "ph": "4874f4c9", "equity": 89831124, "ret": -10.17}, {"id": "v51", "ph": "21a98e46", "equity": 89813662, "ret": -10.19}, {"id": "v89", "ph": "c49d5680", "equity": 89757086, "ret": -10.24}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89645117, "ret": -10.35}, {"id": "v303", "ph": "1a084164", "equity": 89566981, "ret": -10.43}, {"id": "v308", "ph": "cb12dd0b", "equity": 89416268, "ret": -10.58}, {"id": "v305", "ph": "8cc4eea6", "equity": 89391615, "ret": -10.61}, {"id": "v215", "ph": "a904a49d", "equity": 89291041, "ret": -10.71}, {"id": "v105", "ph": "88395429", "equity": 88899445, "ret": -11.1}, {"id": "v159", "ph": "af80c67a", "equity": 88652641, "ret": -11.35}, {"id": "v149", "ph": "c5329f8d", "equity": 88050190, "ret": -11.95}, {"id": "v213", "ph": "0e1d8e45", "equity": 88053066, "ret": -11.95}, {"id": "v47", "ph": "ed758fcf", "equity": 87850567, "ret": -12.15}, {"id": "v302", "ph": "3f30502d", "equity": 87442505, "ret": -12.56}, {"id": "v155", "ph": "31c0d84e", "equity": 87118129, "ret": -12.88}, {"id": "v296", "ph": "4c554378", "equity": 86292842, "ret": -13.71}, {"id": "v311", "ph": "8409c6e5", "equity": 86084678, "ret": -13.92}, {"id": "v151", "ph": "2eb1dd06", "equity": 86032047, "ret": -13.97}, {"id": "v312", "ph": "4c23846f", "equity": 85522576, "ret": -14.48}, {"id": "v41", "ph": "e9d84e84", "equity": 85291413, "ret": -14.71}, {"id": "v309", "ph": "07610040", "equity": 85107529, "ret": -14.89}, {"id": "v147", "ph": "2fbeeedb", "equity": 84376797, "ret": -15.62}, {"id": "v4", "ph": "b6219595", "equity": 82925280, "ret": -17.07}, {"id": "v40", "ph": "70731d89", "equity": 81170051, "ret": -18.83}, {"id": "v298", "ph": "5d4bbec0", "equity": 79196319, "ret": -20.8}, {"id": "v299", "ph": "25046b1a", "equity": 76919853, "ret": -23.08}, {"id": "v300", "ph": "c6ddc17b", "equity": 73167500, "ret": -26.83}], "20260709": [{"id": "v319", "ph": "ca25f043", "equity": 97029426, "ret": -2.97}, {"id": "v321", "ph": "e82de49b", "equity": 95372120, "ret": -4.63}, {"id": "v313", "ph": "b9f4ee72", "equity": 94897989, "ret": -5.1}, {"id": "v101", "ph": "c4354346", "equity": 94371518, "ret": -5.63}, {"id": "v317", "ph": "51f8ee6d", "equity": 94152545, "ret": -5.85}, {"id": "v99", "ph": "fb39409b", "equity": 93694369, "ret": -6.31}, {"id": "v59", "ph": "1858e2ec", "equity": 93648469, "ret": -6.35}, {"id": "v209", "ph": "8730802d", "equity": 93379392, "ret": -6.62}, {"id": "v316", "ph": "8dc1d197", "equity": 93225309, "ret": -6.77}, {"id": "v307", "ph": "6abce93d", "equity": 93189093, "ret": -6.81}, {"id": "v57", "ph": "e7e98b6d", "equity": 92971321, "ret": -7.03}, {"id": "v103", "ph": "75b0a37c", "equity": 92831928, "ret": -7.17}, {"id": "v207", "ph": "0f6601a0", "equity": 92702244, "ret": -7.3}, {"id": "v167", "ph": "b6d6aed8", "equity": 92619115, "ret": -7.38}, {"id": "v205", "ph": "02e5a3f5", "equity": 92574760, "ret": -7.43}, {"id": "v95", "ph": "7e28e756", "equity": 92521583, "ret": -7.48}, {"id": "v320", "ph": "48d6a9ef", "equity": 92421366, "ret": -7.58}, {"id": "v91", "ph": "5674a3d7", "equity": 92146760, "ret": -7.85}, {"id": "v315", "ph": "e6d5b283", "equity": 92046625, "ret": -7.95}, {"id": "v161", "ph": "ed5677e6", "equity": 91941966, "ret": -8.06}, {"id": "v165", "ph": "8f862b27", "equity": 91941966, "ret": -8.06}, {"id": "v314", "ph": "7511570e", "equity": 91879039, "ret": -8.12}, {"id": "v304", "ph": "96c7e8e1", "equity": 91855794, "ret": -8.14}, {"id": "v197", "ph": "5c290a32", "equity": 91841551, "ret": -8.16}, {"id": "v97", "ph": "ebf31977", "equity": 91705949, "ret": -8.29}, {"id": "v211", "ph": "9227673c", "equity": 91570738, "ret": -8.43}, {"id": "v49", "ph": "cdba73e0", "equity": 91460358, "ret": -8.54}, {"id": "v203", "ph": "2071defa", "equity": 91259889, "ret": -8.74}, {"id": "v199", "ph": "390bfab3", "equity": 91193283, "ret": -8.81}, {"id": "v87", "ph": "c0be98c0", "equity": 91057754, "ret": -8.94}, {"id": "v93", "ph": "f10d4e45", "equity": 91057754, "ret": -8.94}, {"id": "v81", "ph": "a6eac1e4", "equity": 91014210, "ret": -8.99}, {"id": "v195", "ph": "dd89cf59", "equity": 90952863, "ret": -9.05}, {"id": "v201", "ph": "cb8a413e", "equity": 90952863, "ret": -9.05}, {"id": "v107", "ph": "be5cd36b", "equity": 90911509, "ret": -9.09}, {"id": "v306", "ph": "6966b8f6", "equity": 90826472, "ret": -9.17}, {"id": "v157", "ph": "80f3e23b", "equity": 90259699, "ret": -9.74}, {"id": "v318", "ph": "c99872ef", "equity": 89956910, "ret": -10.04}, {"id": "v51", "ph": "21a98e46", "equity": 89951186, "ret": -10.05}, {"id": "v89", "ph": "c49d5680", "equity": 89823123, "ret": -10.18}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89754616, "ret": -10.25}, {"id": "v301", "ph": "30da2021", "equity": 89630173, "ret": -10.37}, {"id": "v215", "ph": "a904a49d", "equity": 89171184, "ret": -10.83}, {"id": "v217", "ph": "4c547a61", "equity": 89102440, "ret": -10.9}, {"id": "v218", "ph": "7304d2d4", "equity": 89102440, "ret": -10.9}, {"id": "v223", "ph": "b57356b8", "equity": 89036088, "ret": -10.96}, {"id": "v224", "ph": "888ab069", "equity": 89036088, "ret": -10.96}, {"id": "v229", "ph": "d9261dfb", "equity": 89036088, "ret": -10.96}, {"id": "v230", "ph": "141579fe", "equity": 89036088, "ret": -10.96}, {"id": "v235", "ph": "3e6c1666", "equity": 89036088, "ret": -10.96}, {"id": "v236", "ph": "f9c75560", "equity": 89036088, "ret": -10.96}, {"id": "v265", "ph": "7faed59d", "equity": 89036088, "ret": -10.96}, {"id": "v266", "ph": "c133b585", "equity": 89036088, "ret": -10.96}, {"id": "v271", "ph": "2b9ccdcd", "equity": 89036088, "ret": -10.96}, {"id": "v272", "ph": "2ed2027f", "equity": 89036088, "ret": -10.96}, {"id": "v277", "ph": "488b612a", "equity": 89036088, "ret": -10.96}, {"id": "v278", "ph": "861fb42b", "equity": 89036088, "ret": -10.96}, {"id": "v283", "ph": "479e4b25", "equity": 89036088, "ret": -10.96}, {"id": "v284", "ph": "261c5d58", "equity": 89036088, "ret": -10.96}, {"id": "v1", "ph": "4874f4c9", "equity": 88779474, "ret": -11.22}, {"id": "v105", "ph": "88395429", "equity": 88758699, "ret": -11.24}, {"id": "v159", "ph": "af80c67a", "equity": 88749577, "ret": -11.25}, {"id": "v305", "ph": "8cc4eea6", "equity": 88509485, "ret": -11.49}, {"id": "v308", "ph": "cb12dd0b", "equity": 88508656, "ret": -11.49}, {"id": "v303", "ph": "1a084164", "equity": 88400399, "ret": -11.6}, {"id": "v310", "ph": "ec9dd55c", "equity": 88282336, "ret": -11.72}, {"id": "v213", "ph": "0e1d8e45", "equity": 87872908, "ret": -12.13}, {"id": "v47", "ph": "ed758fcf", "equity": 87700307, "ret": -12.3}, {"id": "v149", "ph": "c5329f8d", "equity": 87295308, "ret": -12.7}, {"id": "v302", "ph": "3f30502d", "equity": 87005003, "ret": -12.99}, {"id": "v155", "ph": "31c0d84e", "equity": 86926728, "ret": -13.07}, {"id": "v311", "ph": "8409c6e5", "equity": 85710417, "ret": -14.29}, {"id": "v151", "ph": "2eb1dd06", "equity": 85488465, "ret": -14.51}, {"id": "v41", "ph": "e9d84e84", "equity": 85404189, "ret": -14.6}, {"id": "v312", "ph": "4c23846f", "equity": 84462620, "ret": -15.54}, {"id": "v296", "ph": "4c554378", "equity": 84397596, "ret": -15.6}, {"id": "v309", "ph": "07610040", "equity": 84155459, "ret": -15.84}, {"id": "v147", "ph": "2fbeeedb", "equity": 83834534, "ret": -16.17}, {"id": "v4", "ph": "b6219595", "equity": 82094579, "ret": -17.91}, {"id": "v40", "ph": "70731d89", "equity": 80360480, "ret": -19.64}, {"id": "v298", "ph": "5d4bbec0", "equity": 78505369, "ret": -21.49}, {"id": "v299", "ph": "25046b1a", "equity": 75857462, "ret": -24.14}, {"id": "v300", "ph": "c6ddc17b", "equity": 73074500, "ret": -26.93}], "20260710": [{"id": "v321", "ph": "e82de49b", "equity": 98078466, "ret": -1.92}, {"id": "v319", "ph": "ca25f043", "equity": 97310052, "ret": -2.69}, {"id": "v313", "ph": "b9f4ee72", "equity": 97070899, "ret": -2.93}, {"id": "v317", "ph": "51f8ee6d", "equity": 96658854, "ret": -3.34}, {"id": "v307", "ph": "6abce93d", "equity": 95735759, "ret": -4.26}, {"id": "v316", "ph": "8dc1d197", "equity": 95238005, "ret": -4.76}, {"id": "v320", "ph": "48d6a9ef", "equity": 95010028, "ret": -4.99}, {"id": "v205", "ph": "02e5a3f5", "equity": 94946029, "ret": -5.05}, {"id": "v197", "ph": "5c290a32", "equity": 94826304, "ret": -5.17}, {"id": "v95", "ph": "7e28e756", "equity": 94712823, "ret": -5.29}, {"id": "v101", "ph": "c4354346", "equity": 94284391, "ret": -5.72}, {"id": "v203", "ph": "2071defa", "equity": 94078563, "ret": -5.92}, {"id": "v103", "ph": "75b0a37c", "equity": 94044661, "ret": -5.96}, {"id": "v91", "ph": "5674a3d7", "equity": 94024918, "ret": -5.98}, {"id": "v314", "ph": "7511570e", "equity": 93928332, "ret": -6.07}, {"id": "v199", "ph": "390bfab3", "equity": 93733922, "ret": -6.27}, {"id": "v59", "ph": "1858e2ec", "equity": 93680067, "ret": -6.32}, {"id": "v99", "ph": "fb39409b", "equity": 93607255, "ret": -6.39}, {"id": "v49", "ph": "cdba73e0", "equity": 93559466, "ret": -6.44}, {"id": "v306", "ph": "6966b8f6", "equity": 93513081, "ret": -6.49}, {"id": "v97", "ph": "ebf31977", "equity": 93408327, "ret": -6.59}, {"id": "v209", "ph": "8730802d", "equity": 93286824, "ret": -6.71}, {"id": "v81", "ph": "a6eac1e4", "equity": 93172304, "ret": -6.83}, {"id": "v304", "ph": "96c7e8e1", "equity": 93155434, "ret": -6.84}, {"id": "v157", "ph": "80f3e23b", "equity": 93020895, "ret": -6.98}, {"id": "v57", "ph": "e7e98b6d", "equity": 93002931, "ret": -7.0}, {"id": "v211", "ph": "9227673c", "equity": 92778517, "ret": -7.22}, {"id": "v207", "ph": "0f6601a0", "equity": 92609916, "ret": -7.39}, {"id": "v167", "ph": "b6d6aed8", "equity": 92577084, "ret": -7.42}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92540144, "ret": -7.46}, {"id": "v315", "ph": "e6d5b283", "equity": 92532857, "ret": -7.47}, {"id": "v87", "ph": "c0be98c0", "equity": 92305303, "ret": -7.69}, {"id": "v93", "ph": "f10d4e45", "equity": 92305303, "ret": -7.69}, {"id": "v217", "ph": "4c547a61", "equity": 92223428, "ret": -7.78}, {"id": "v218", "ph": "7304d2d4", "equity": 92223428, "ret": -7.78}, {"id": "v195", "ph": "dd89cf59", "equity": 92194654, "ret": -7.81}, {"id": "v201", "ph": "cb8a413e", "equity": 92194654, "ret": -7.81}, {"id": "v223", "ph": "b57356b8", "equity": 92151976, "ret": -7.85}, {"id": "v224", "ph": "888ab069", "equity": 92151976, "ret": -7.85}, {"id": "v229", "ph": "d9261dfb", "equity": 92151976, "ret": -7.85}, {"id": "v230", "ph": "141579fe", "equity": 92151976, "ret": -7.85}, {"id": "v235", "ph": "3e6c1666", "equity": 92151976, "ret": -7.85}, {"id": "v236", "ph": "f9c75560", "equity": 92151976, "ret": -7.85}, {"id": "v265", "ph": "7faed59d", "equity": 92151976, "ret": -7.85}, {"id": "v266", "ph": "c133b585", "equity": 92151976, "ret": -7.85}, {"id": "v271", "ph": "2b9ccdcd", "equity": 92151976, "ret": -7.85}, {"id": "v272", "ph": "2ed2027f", "equity": 92151976, "ret": -7.85}, {"id": "v277", "ph": "488b612a", "equity": 92151976, "ret": -7.85}, {"id": "v278", "ph": "861fb42b", "equity": 92151976, "ret": -7.85}, {"id": "v283", "ph": "479e4b25", "equity": 92151976, "ret": -7.85}, {"id": "v284", "ph": "261c5d58", "equity": 92151976, "ret": -7.85}, {"id": "v89", "ph": "c49d5680", "equity": 92126436, "ret": -7.87}, {"id": "v51", "ph": "21a98e46", "equity": 92016918, "ret": -7.98}, {"id": "v161", "ph": "ed5677e6", "equity": 91902967, "ret": -8.1}, {"id": "v165", "ph": "8f862b27", "equity": 91902967, "ret": -8.1}, {"id": "v107", "ph": "be5cd36b", "equity": 91871987, "ret": -8.13}, {"id": "v305", "ph": "8cc4eea6", "equity": 91737647, "ret": -8.26}, {"id": "v159", "ph": "af80c67a", "equity": 91478297, "ret": -8.52}, {"id": "v303", "ph": "1a084164", "equity": 91467512, "ret": -8.53}, {"id": "v318", "ph": "c99872ef", "equity": 91229350, "ret": -8.77}, {"id": "v308", "ph": "cb12dd0b", "equity": 91016667, "ret": -8.98}, {"id": "v105", "ph": "88395429", "equity": 91002544, "ret": -9.0}, {"id": "v310", "ph": "ec9dd55c", "equity": 90929061, "ret": -9.07}, {"id": "v213", "ph": "0e1d8e45", "equity": 90733969, "ret": -9.27}, {"id": "v149", "ph": "c5329f8d", "equity": 90683014, "ret": -9.32}, {"id": "v215", "ph": "a904a49d", "equity": 90127065, "ret": -9.87}, {"id": "v302", "ph": "3f30502d", "equity": 90012486, "ret": -9.99}, {"id": "v301", "ph": "30da2021", "equity": 89977588, "ret": -10.02}, {"id": "v47", "ph": "ed758fcf", "equity": 89839040, "ret": -10.16}, {"id": "v155", "ph": "31c0d84e", "equity": 89712039, "ret": -10.29}, {"id": "v151", "ph": "2eb1dd06", "equity": 89274993, "ret": -10.73}, {"id": "v1", "ph": "4874f4c9", "equity": 89233426, "ret": -10.77}, {"id": "v311", "ph": "8409c6e5", "equity": 88466825, "ret": -11.53}, {"id": "v41", "ph": "e9d84e84", "equity": 88070920, "ret": -11.93}, {"id": "v147", "ph": "2fbeeedb", "equity": 87599302, "ret": -12.4}, {"id": "v312", "ph": "4c23846f", "equity": 86750962, "ret": -13.25}, {"id": "v309", "ph": "07610040", "equity": 86198031, "ret": -13.8}, {"id": "v296", "ph": "4c554378", "equity": 86036993, "ret": -13.96}, {"id": "v4", "ph": "b6219595", "equity": 85584881, "ret": -14.42}, {"id": "v40", "ph": "70731d89", "equity": 83785743, "ret": -16.21}, {"id": "v298", "ph": "5d4bbec0", "equity": 81408367, "ret": -18.59}, {"id": "v299", "ph": "25046b1a", "equity": 78985821, "ret": -21.01}, {"id": "v300", "ph": "c6ddc17b", "equity": 75750936, "ret": -24.25}], "20260713": [{"id": "v321", "ph": "e82de49b", "equity": 97993285, "ret": -2.01}, {"id": "v319", "ph": "ca25f043", "equity": 97450702, "ret": -2.55}, {"id": "v317", "ph": "51f8ee6d", "equity": 96646823, "ret": -3.35}, {"id": "v313", "ph": "b9f4ee72", "equity": 95903205, "ret": -4.1}, {"id": "v205", "ph": "02e5a3f5", "equity": 94889018, "ret": -5.11}, {"id": "v307", "ph": "6abce93d", "equity": 94694981, "ret": -5.31}, {"id": "v197", "ph": "5c290a32", "equity": 94654242, "ret": -5.35}, {"id": "v316", "ph": "8dc1d197", "equity": 94551424, "ret": -5.45}, {"id": "v320", "ph": "48d6a9ef", "equity": 94356057, "ret": -5.64}, {"id": "v95", "ph": "7e28e756", "equity": 94208212, "ret": -5.79}, {"id": "v203", "ph": "2071defa", "equity": 94145780, "ret": -5.85}, {"id": "v103", "ph": "75b0a37c", "equity": 94078397, "ret": -5.92}, {"id": "v199", "ph": "390bfab3", "equity": 93659485, "ret": -6.34}, {"id": "v101", "ph": "c4354346", "equity": 93648515, "ret": -6.35}, {"id": "v306", "ph": "6966b8f6", "equity": 93424603, "ret": -6.58}, {"id": "v91", "ph": "5674a3d7", "equity": 93323862, "ret": -6.68}, {"id": "v59", "ph": "1858e2ec", "equity": 93231925, "ret": -6.77}, {"id": "v157", "ph": "80f3e23b", "equity": 93198393, "ret": -6.8}, {"id": "v49", "ph": "cdba73e0", "equity": 93181463, "ret": -6.82}, {"id": "v314", "ph": "7511570e", "equity": 93184031, "ret": -6.82}, {"id": "v99", "ph": "fb39409b", "equity": 92972759, "ret": -7.03}, {"id": "v211", "ph": "9227673c", "equity": 92963129, "ret": -7.04}, {"id": "v97", "ph": "ebf31977", "equity": 92725192, "ret": -7.27}, {"id": "v304", "ph": "96c7e8e1", "equity": 92687756, "ret": -7.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 92677068, "ret": -7.32}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92628577, "ret": -7.37}, {"id": "v209", "ph": "8730802d", "equity": 92592451, "ret": -7.41}, {"id": "v57", "ph": "e7e98b6d", "equity": 92556169, "ret": -7.44}, {"id": "v315", "ph": "e6d5b283", "equity": 92418791, "ret": -7.58}, {"id": "v195", "ph": "dd89cf59", "equity": 92402967, "ret": -7.6}, {"id": "v201", "ph": "cb8a413e", "equity": 92402967, "ret": -7.6}, {"id": "v87", "ph": "c0be98c0", "equity": 92365980, "ret": -7.63}, {"id": "v93", "ph": "f10d4e45", "equity": 92365980, "ret": -7.63}, {"id": "v167", "ph": "b6d6aed8", "equity": 92215482, "ret": -7.78}, {"id": "v107", "ph": "be5cd36b", "equity": 91987442, "ret": -8.01}, {"id": "v318", "ph": "c99872ef", "equity": 91961004, "ret": -8.04}, {"id": "v207", "ph": "0f6601a0", "equity": 91936002, "ret": -8.06}, {"id": "v51", "ph": "21a98e46", "equity": 91665291, "ret": -8.33}, {"id": "v159", "ph": "af80c67a", "equity": 91669242, "ret": -8.33}, {"id": "v161", "ph": "ed5677e6", "equity": 91538846, "ret": -8.46}, {"id": "v165", "ph": "8f862b27", "equity": 91538846, "ret": -8.46}, {"id": "v89", "ph": "c49d5680", "equity": 91454254, "ret": -8.55}, {"id": "v217", "ph": "4c547a61", "equity": 90753087, "ret": -9.25}, {"id": "v218", "ph": "7304d2d4", "equity": 90753087, "ret": -9.25}, {"id": "v213", "ph": "0e1d8e45", "equity": 90711698, "ret": -9.29}, {"id": "v223", "ph": "b57356b8", "equity": 90682636, "ret": -9.32}, {"id": "v224", "ph": "888ab069", "equity": 90682636, "ret": -9.32}, {"id": "v229", "ph": "d9261dfb", "equity": 90682636, "ret": -9.32}, {"id": "v230", "ph": "141579fe", "equity": 90682636, "ret": -9.32}, {"id": "v235", "ph": "3e6c1666", "equity": 90682636, "ret": -9.32}, {"id": "v236", "ph": "f9c75560", "equity": 90682636, "ret": -9.32}, {"id": "v265", "ph": "7faed59d", "equity": 90682636, "ret": -9.32}, {"id": "v266", "ph": "c133b585", "equity": 90682636, "ret": -9.32}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90682636, "ret": -9.32}, {"id": "v272", "ph": "2ed2027f", "equity": 90682636, "ret": -9.32}, {"id": "v277", "ph": "488b612a", "equity": 90682636, "ret": -9.32}, {"id": "v278", "ph": "861fb42b", "equity": 90682636, "ret": -9.32}, {"id": "v283", "ph": "479e4b25", "equity": 90682636, "ret": -9.32}, {"id": "v284", "ph": "261c5d58", "equity": 90682636, "ret": -9.32}, {"id": "v308", "ph": "cb12dd0b", "equity": 90558789, "ret": -9.44}, {"id": "v215", "ph": "a904a49d", "equity": 90427248, "ret": -9.57}, {"id": "v303", "ph": "1a084164", "equity": 90424464, "ret": -9.58}, {"id": "v105", "ph": "88395429", "equity": 90398777, "ret": -9.6}, {"id": "v310", "ph": "ec9dd55c", "equity": 90385822, "ret": -9.61}, {"id": "v305", "ph": "8cc4eea6", "equity": 90346041, "ret": -9.65}, {"id": "v149", "ph": "c5329f8d", "equity": 90280128, "ret": -9.72}, {"id": "v301", "ph": "30da2021", "equity": 89786566, "ret": -10.21}, {"id": "v155", "ph": "31c0d84e", "equity": 89782507, "ret": -10.22}, {"id": "v47", "ph": "ed758fcf", "equity": 89371696, "ret": -10.63}, {"id": "v302", "ph": "3f30502d", "equity": 89344229, "ret": -10.66}, {"id": "v1", "ph": "4874f4c9", "equity": 89166050, "ret": -10.83}, {"id": "v151", "ph": "2eb1dd06", "equity": 89091286, "ret": -10.91}, {"id": "v311", "ph": "8409c6e5", "equity": 88615165, "ret": -11.38}, {"id": "v312", "ph": "4c23846f", "equity": 88055182, "ret": -11.94}, {"id": "v309", "ph": "07610040", "equity": 87642331, "ret": -12.36}, {"id": "v147", "ph": "2fbeeedb", "equity": 87432951, "ret": -12.57}, {"id": "v41", "ph": "e9d84e84", "equity": 87023320, "ret": -12.98}, {"id": "v4", "ph": "b6219595", "equity": 85761199, "ret": -14.24}, {"id": "v296", "ph": "4c554378", "equity": 84594910, "ret": -15.41}, {"id": "v40", "ph": "70731d89", "equity": 83960853, "ret": -16.04}, {"id": "v298", "ph": "5d4bbec0", "equity": 82134287, "ret": -17.87}, {"id": "v299", "ph": "25046b1a", "equity": 78453749, "ret": -21.55}, {"id": "v300", "ph": "c6ddc17b", "equity": 74901773, "ret": -25.1}], "20260714": [{"id": "v321", "ph": "e82de49b", "equity": 97789385, "ret": -2.21}, {"id": "v319", "ph": "ca25f043", "equity": 97582805, "ret": -2.42}, {"id": "v317", "ph": "51f8ee6d", "equity": 96466283, "ret": -3.53}, {"id": "v313", "ph": "b9f4ee72", "equity": 95558095, "ret": -4.44}, {"id": "v205", "ph": "02e5a3f5", "equity": 94974938, "ret": -5.03}, {"id": "v316", "ph": "8dc1d197", "equity": 94811844, "ret": -5.19}, {"id": "v197", "ph": "5c290a32", "equity": 94781792, "ret": -5.22}, {"id": "v320", "ph": "48d6a9ef", "equity": 94552797, "ret": -5.45}, {"id": "v307", "ph": "6abce93d", "equity": 94443551, "ret": -5.56}, {"id": "v103", "ph": "75b0a37c", "equity": 94273847, "ret": -5.73}, {"id": "v203", "ph": "2071defa", "equity": 94162800, "ret": -5.84}, {"id": "v199", "ph": "390bfab3", "equity": 93730535, "ret": -6.27}, {"id": "v95", "ph": "7e28e756", "equity": 93688530, "ret": -6.31}, {"id": "v306", "ph": "6966b8f6", "equity": 93128874, "ret": -6.87}, {"id": "v157", "ph": "80f3e23b", "equity": 93099933, "ret": -6.9}, {"id": "v101", "ph": "c4354346", "equity": 93085645, "ret": -6.91}, {"id": "v91", "ph": "5674a3d7", "equity": 93035902, "ret": -6.96}, {"id": "v211", "ph": "9227673c", "equity": 92979319, "ret": -7.02}, {"id": "v314", "ph": "7511570e", "equity": 92922331, "ret": -7.08}, {"id": "v49", "ph": "cdba73e0", "equity": 92903643, "ret": -7.1}, {"id": "v59", "ph": "1858e2ec", "equity": 92684865, "ret": -7.32}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92671757, "ret": -7.33}, {"id": "v304", "ph": "96c7e8e1", "equity": 92642276, "ret": -7.36}, {"id": "v87", "ph": "c0be98c0", "equity": 92587920, "ret": -7.41}, {"id": "v93", "ph": "f10d4e45", "equity": 92587920, "ret": -7.41}, {"id": "v97", "ph": "ebf31977", "equity": 92465332, "ret": -7.53}, {"id": "v195", "ph": "dd89cf59", "equity": 92445067, "ret": -7.55}, {"id": "v201", "ph": "cb8a413e", "equity": 92445067, "ret": -7.55}, {"id": "v99", "ph": "fb39409b", "equity": 92410299, "ret": -7.59}, {"id": "v318", "ph": "c99872ef", "equity": 92219004, "ret": -7.78}, {"id": "v81", "ph": "a6eac1e4", "equity": 92177746, "ret": -7.82}, {"id": "v57", "ph": "e7e98b6d", "equity": 92009519, "ret": -7.99}, {"id": "v107", "ph": "be5cd36b", "equity": 92000429, "ret": -8.0}, {"id": "v209", "ph": "8730802d", "equity": 91790701, "ret": -8.21}, {"id": "v159", "ph": "af80c67a", "equity": 91582652, "ret": -8.42}, {"id": "v167", "ph": "b6d6aed8", "equity": 91427362, "ret": -8.57}, {"id": "v51", "ph": "21a98e46", "equity": 91402341, "ret": -8.6}, {"id": "v89", "ph": "c49d5680", "equity": 91243384, "ret": -8.76}, {"id": "v315", "ph": "e6d5b283", "equity": 91168571, "ret": -8.83}, {"id": "v207", "ph": "0f6601a0", "equity": 91144662, "ret": -8.86}, {"id": "v161", "ph": "ed5677e6", "equity": 90748936, "ret": -9.25}, {"id": "v165", "ph": "8f862b27", "equity": 90748936, "ret": -9.25}, {"id": "v310", "ph": "ec9dd55c", "equity": 90753202, "ret": -9.25}, {"id": "v213", "ph": "0e1d8e45", "equity": 90718328, "ret": -9.28}, {"id": "v217", "ph": "4c547a61", "equity": 90375417, "ret": -9.62}, {"id": "v218", "ph": "7304d2d4", "equity": 90375417, "ret": -9.62}, {"id": "v149", "ph": "c5329f8d", "equity": 90342768, "ret": -9.66}, {"id": "v223", "ph": "b57356b8", "equity": 90306266, "ret": -9.69}, {"id": "v224", "ph": "888ab069", "equity": 90306266, "ret": -9.69}, {"id": "v229", "ph": "d9261dfb", "equity": 90306266, "ret": -9.69}, {"id": "v230", "ph": "141579fe", "equity": 90306266, "ret": -9.69}, {"id": "v235", "ph": "3e6c1666", "equity": 90306266, "ret": -9.69}, {"id": "v236", "ph": "f9c75560", "equity": 90306266, "ret": -9.69}, {"id": "v265", "ph": "7faed59d", "equity": 90306266, "ret": -9.69}, {"id": "v266", "ph": "c133b585", "equity": 90306266, "ret": -9.69}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90306266, "ret": -9.69}, {"id": "v272", "ph": "2ed2027f", "equity": 90306266, "ret": -9.69}, {"id": "v277", "ph": "488b612a", "equity": 90306266, "ret": -9.69}, {"id": "v278", "ph": "861fb42b", "equity": 90306266, "ret": -9.69}, {"id": "v283", "ph": "479e4b25", "equity": 90306266, "ret": -9.69}, {"id": "v284", "ph": "261c5d58", "equity": 90306266, "ret": -9.69}, {"id": "v215", "ph": "a904a49d", "equity": 90240432, "ret": -9.76}, {"id": "v308", "ph": "cb12dd0b", "equity": 90214089, "ret": -9.79}, {"id": "v305", "ph": "8cc4eea6", "equity": 90063781, "ret": -9.94}, {"id": "v303", "ph": "1a084164", "equity": 89879294, "ret": -10.12}, {"id": "v105", "ph": "88395429", "equity": 89867245, "ret": -10.13}, {"id": "v155", "ph": "31c0d84e", "equity": 89637757, "ret": -10.36}, {"id": "v151", "ph": "2eb1dd06", "equity": 89445646, "ret": -10.55}, {"id": "v302", "ph": "3f30502d", "equity": 89306717, "ret": -10.69}, {"id": "v47", "ph": "ed758fcf", "equity": 89082566, "ret": -10.92}, {"id": "v301", "ph": "30da2021", "equity": 88985970, "ret": -11.01}, {"id": "v312", "ph": "4c23846f", "equity": 88434822, "ret": -11.57}, {"id": "v1", "ph": "4874f4c9", "equity": 88164415, "ret": -11.84}, {"id": "v311", "ph": "8409c6e5", "equity": 88024704, "ret": -11.98}, {"id": "v147", "ph": "2fbeeedb", "equity": 87818641, "ret": -12.18}, {"id": "v309", "ph": "07610040", "equity": 87561431, "ret": -12.44}, {"id": "v41", "ph": "e9d84e84", "equity": 87034620, "ret": -12.97}, {"id": "v4", "ph": "b6219595", "equity": 85775725, "ret": -14.22}, {"id": "v296", "ph": "4c554378", "equity": 84158665, "ret": -15.84}, {"id": "v40", "ph": "70731d89", "equity": 83965736, "ret": -16.03}, {"id": "v298", "ph": "5d4bbec0", "equity": 83302908, "ret": -16.7}, {"id": "v299", "ph": "25046b1a", "equity": 78333222, "ret": -21.67}, {"id": "v300", "ph": "c6ddc17b", "equity": 75953953, "ret": -24.05}], "20260715": [{"id": "v321", "ph": "e82de49b", "equity": 97881585, "ret": -2.12}, {"id": "v319", "ph": "ca25f043", "equity": 96941125, "ret": -3.06}, {"id": "v317", "ph": "51f8ee6d", "equity": 96721623, "ret": -3.28}, {"id": "v205", "ph": "02e5a3f5", "equity": 96494865, "ret": -3.51}, {"id": "v197", "ph": "5c290a32", "equity": 96288031, "ret": -3.71}, {"id": "v313", "ph": "b9f4ee72", "equity": 96177243, "ret": -3.82}, {"id": "v203", "ph": "2071defa", "equity": 95945420, "ret": -4.05}, {"id": "v103", "ph": "75b0a37c", "equity": 95590478, "ret": -4.41}, {"id": "v307", "ph": "6abce93d", "equity": 95511253, "ret": -4.49}, {"id": "v199", "ph": "390bfab3", "equity": 95234481, "ret": -4.77}, {"id": "v95", "ph": "7e28e756", "equity": 95172330, "ret": -4.83}, {"id": "v157", "ph": "80f3e23b", "equity": 94561247, "ret": -5.44}, {"id": "v316", "ph": "8dc1d197", "equity": 94512037, "ret": -5.49}, {"id": "v49", "ph": "cdba73e0", "equity": 94452030, "ret": -5.55}, {"id": "v320", "ph": "48d6a9ef", "equity": 94452811, "ret": -5.55}, {"id": "v189", "ph": "dfdbd0c8", "equity": 94413537, "ret": -5.59}, {"id": "v211", "ph": "9227673c", "equity": 94345283, "ret": -5.65}, {"id": "v91", "ph": "5674a3d7", "equity": 94341738, "ret": -5.66}, {"id": "v101", "ph": "c4354346", "equity": 94241434, "ret": -5.76}, {"id": "v314", "ph": "7511570e", "equity": 94137586, "ret": -5.86}, {"id": "v59", "ph": "1858e2ec", "equity": 94073717, "ret": -5.93}, {"id": "v87", "ph": "c0be98c0", "equity": 93886718, "ret": -6.11}, {"id": "v93", "ph": "f10d4e45", "equity": 93886718, "ret": -6.11}, {"id": "v195", "ph": "dd89cf59", "equity": 93793440, "ret": -6.21}, {"id": "v201", "ph": "cb8a413e", "equity": 93793440, "ret": -6.21}, {"id": "v97", "ph": "ebf31977", "equity": 93769938, "ret": -6.23}, {"id": "v306", "ph": "6966b8f6", "equity": 93693114, "ret": -6.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 93645606, "ret": -6.35}, {"id": "v99", "ph": "fb39409b", "equity": 93565198, "ret": -6.43}, {"id": "v107", "ph": "be5cd36b", "equity": 93472999, "ret": -6.53}, {"id": "v57", "ph": "e7e98b6d", "equity": 93396997, "ret": -6.6}, {"id": "v318", "ph": "c99872ef", "equity": 93105804, "ret": -6.89}, {"id": "v159", "ph": "af80c67a", "equity": 93021557, "ret": -6.98}, {"id": "v209", "ph": "8730802d", "equity": 92996410, "ret": -7.0}, {"id": "v51", "ph": "21a98e46", "equity": 92918693, "ret": -7.08}, {"id": "v304", "ph": "96c7e8e1", "equity": 92841909, "ret": -7.16}, {"id": "v167", "ph": "b6d6aed8", "equity": 92783723, "ret": -7.22}, {"id": "v89", "ph": "c49d5680", "equity": 92506353, "ret": -7.49}, {"id": "v213", "ph": "0e1d8e45", "equity": 92448858, "ret": -7.55}, {"id": "v207", "ph": "0f6601a0", "equity": 92322401, "ret": -7.68}, {"id": "v161", "ph": "ed5677e6", "equity": 92101406, "ret": -7.9}, {"id": "v165", "ph": "8f862b27", "equity": 92101406, "ret": -7.9}, {"id": "v149", "ph": "c5329f8d", "equity": 92091172, "ret": -7.91}, {"id": "v217", "ph": "4c547a61", "equity": 92083378, "ret": -7.92}, {"id": "v218", "ph": "7304d2d4", "equity": 92083378, "ret": -7.92}, {"id": "v223", "ph": "b57356b8", "equity": 92014227, "ret": -7.99}, {"id": "v224", "ph": "888ab069", "equity": 92014227, "ret": -7.99}, {"id": "v229", "ph": "d9261dfb", "equity": 92014227, "ret": -7.99}, {"id": "v230", "ph": "141579fe", "equity": 92014227, "ret": -7.99}, {"id": "v235", "ph": "3e6c1666", "equity": 92014227, "ret": -7.99}, {"id": "v236", "ph": "f9c75560", "equity": 92014227, "ret": -7.99}, {"id": "v265", "ph": "7faed59d", "equity": 92014227, "ret": -7.99}, {"id": "v266", "ph": "c133b585", "equity": 92014227, "ret": -7.99}, {"id": "v271", "ph": "2b9ccdcd", "equity": 92014227, "ret": -7.99}, {"id": "v272", "ph": "2ed2027f", "equity": 92014227, "ret": -7.99}, {"id": "v277", "ph": "488b612a", "equity": 92014227, "ret": -7.99}, {"id": "v278", "ph": "861fb42b", "equity": 92014227, "ret": -7.99}, {"id": "v283", "ph": "479e4b25", "equity": 92014227, "ret": -7.99}, {"id": "v284", "ph": "261c5d58", "equity": 92014227, "ret": -7.99}, {"id": "v315", "ph": "e6d5b283", "equity": 91954633, "ret": -8.05}, {"id": "v215", "ph": "a904a49d", "equity": 91742192, "ret": -8.26}, {"id": "v308", "ph": "cb12dd0b", "equity": 91602089, "ret": -8.4}, {"id": "v310", "ph": "ec9dd55c", "equity": 91437214, "ret": -8.56}, {"id": "v305", "ph": "8cc4eea6", "equity": 91318887, "ret": -8.68}, {"id": "v105", "ph": "88395429", "equity": 91294695, "ret": -8.71}, {"id": "v303", "ph": "1a084164", "equity": 91280975, "ret": -8.72}, {"id": "v151", "ph": "2eb1dd06", "equity": 91151628, "ret": -8.85}, {"id": "v155", "ph": "31c0d84e", "equity": 91066702, "ret": -8.93}, {"id": "v302", "ph": "3f30502d", "equity": 90999999, "ret": -9.0}, {"id": "v47", "ph": "ed758fcf", "equity": 90556310, "ret": -9.44}, {"id": "v301", "ph": "30da2021", "equity": 90510544, "ret": -9.49}, {"id": "v1", "ph": "4874f4c9", "equity": 89753670, "ret": -10.25}, {"id": "v312", "ph": "4c23846f", "equity": 89629262, "ret": -10.37}, {"id": "v147", "ph": "2fbeeedb", "equity": 89491453, "ret": -10.51}, {"id": "v41", "ph": "e9d84e84", "equity": 89149905, "ret": -10.85}, {"id": "v309", "ph": "07610040", "equity": 88927631, "ret": -11.07}, {"id": "v311", "ph": "8409c6e5", "equity": 88877600, "ret": -11.12}, {"id": "v4", "ph": "b6219595", "equity": 86786797, "ret": -13.21}, {"id": "v40", "ph": "70731d89", "equity": 84949022, "ret": -15.05}, {"id": "v296", "ph": "4c554378", "equity": 84318050, "ret": -15.68}, {"id": "v298", "ph": "5d4bbec0", "equity": 84182209, "ret": -15.82}, {"id": "v299", "ph": "25046b1a", "equity": 79402935, "ret": -20.6}, {"id": "v300", "ph": "c6ddc17b", "equity": 77045856, "ret": -22.95}], "20260716": [{"id": "v321", "ph": "e82de49b", "equity": 97662800, "ret": -2.34}, {"id": "v317", "ph": "51f8ee6d", "equity": 96342751, "ret": -3.66}, {"id": "v205", "ph": "02e5a3f5", "equity": 96098532, "ret": -3.9}, {"id": "v319", "ph": "ca25f043", "equity": 95637660, "ret": -4.36}, {"id": "v197", "ph": "5c290a32", "equity": 95579791, "ret": -4.42}, {"id": "v203", "ph": "2071defa", "equity": 95582104, "ret": -4.42}, {"id": "v103", "ph": "75b0a37c", "equity": 95449502, "ret": -4.55}, {"id": "v313", "ph": "b9f4ee72", "equity": 95008900, "ret": -4.99}, {"id": "v95", "ph": "7e28e756", "equity": 94748728, "ret": -5.25}, {"id": "v199", "ph": "390bfab3", "equity": 94565021, "ret": -5.43}, {"id": "v307", "ph": "6abce93d", "equity": 94270692, "ret": -5.73}, {"id": "v101", "ph": "c4354346", "equity": 94237231, "ret": -5.76}, {"id": "v59", "ph": "1858e2ec", "equity": 94226283, "ret": -5.77}, {"id": "v157", "ph": "80f3e23b", "equity": 94217123, "ret": -5.78}, {"id": "v49", "ph": "cdba73e0", "equity": 94125926, "ret": -5.87}, {"id": "v211", "ph": "9227673c", "equity": 94095386, "ret": -5.9}, {"id": "v189", "ph": "dfdbd0c8", "equity": 93681511, "ret": -6.32}, {"id": "v314", "ph": "7511570e", "equity": 93578380, "ret": -6.42}, {"id": "v99", "ph": "fb39409b", "equity": 93562035, "ret": -6.44}, {"id": "v316", "ph": "8dc1d197", "equity": 93564398, "ret": -6.44}, {"id": "v57", "ph": "e7e98b6d", "equity": 93550050, "ret": -6.45}, {"id": "v91", "ph": "5674a3d7", "equity": 93540268, "ret": -6.46}, {"id": "v107", "ph": "be5cd36b", "equity": 93475030, "ret": -6.52}, {"id": "v87", "ph": "c0be98c0", "equity": 93437735, "ret": -6.56}, {"id": "v93", "ph": "f10d4e45", "equity": 93437735, "ret": -6.56}, {"id": "v306", "ph": "6966b8f6", "equity": 93314376, "ret": -6.69}, {"id": "v320", "ph": "48d6a9ef", "equity": 93302940, "ret": -6.7}, {"id": "v97", "ph": "ebf31977", "equity": 93246574, "ret": -6.75}, {"id": "v195", "ph": "dd89cf59", "equity": 93233458, "ret": -6.77}, {"id": "v201", "ph": "cb8a413e", "equity": 93233458, "ret": -6.77}, {"id": "v318", "ph": "c99872ef", "equity": 92972504, "ret": -7.03}, {"id": "v209", "ph": "8730802d", "equity": 92923788, "ret": -7.08}, {"id": "v81", "ph": "a6eac1e4", "equity": 92858315, "ret": -7.14}, {"id": "v167", "ph": "b6d6aed8", "equity": 92804598, "ret": -7.2}, {"id": "v159", "ph": "af80c67a", "equity": 92313584, "ret": -7.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 92306951, "ret": -7.69}, {"id": "v207", "ph": "0f6601a0", "equity": 92265672, "ret": -7.73}, {"id": "v51", "ph": "21a98e46", "equity": 92228353, "ret": -7.77}, {"id": "v315", "ph": "e6d5b283", "equity": 92176927, "ret": -7.82}, {"id": "v161", "ph": "ed5677e6", "equity": 92123621, "ret": -7.88}, {"id": "v165", "ph": "8f862b27", "equity": 92123621, "ret": -7.88}, {"id": "v213", "ph": "0e1d8e45", "equity": 92105005, "ret": -7.89}, {"id": "v89", "ph": "c49d5680", "equity": 91672443, "ret": -8.33}, {"id": "v215", "ph": "a904a49d", "equity": 91600859, "ret": -8.4}, {"id": "v149", "ph": "c5329f8d", "equity": 91348894, "ret": -8.65}, {"id": "v308", "ph": "cb12dd0b", "equity": 91129257, "ret": -8.87}, {"id": "v105", "ph": "88395429", "equity": 90897351, "ret": -9.1}, {"id": "v155", "ph": "31c0d84e", "equity": 90751770, "ret": -9.25}, {"id": "v217", "ph": "4c547a61", "equity": 90452057, "ret": -9.55}, {"id": "v218", "ph": "7304d2d4", "equity": 90452057, "ret": -9.55}, {"id": "v223", "ph": "b57356b8", "equity": 90381905, "ret": -9.62}, {"id": "v224", "ph": "888ab069", "equity": 90381905, "ret": -9.62}, {"id": "v229", "ph": "d9261dfb", "equity": 90381905, "ret": -9.62}, {"id": "v230", "ph": "141579fe", "equity": 90381905, "ret": -9.62}, {"id": "v235", "ph": "3e6c1666", "equity": 90381905, "ret": -9.62}, {"id": "v236", "ph": "f9c75560", "equity": 90381905, "ret": -9.62}, {"id": "v265", "ph": "7faed59d", "equity": 90381905, "ret": -9.62}, {"id": "v266", "ph": "c133b585", "equity": 90381905, "ret": -9.62}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90381905, "ret": -9.62}, {"id": "v272", "ph": "2ed2027f", "equity": 90381905, "ret": -9.62}, {"id": "v277", "ph": "488b612a", "equity": 90381905, "ret": -9.62}, {"id": "v278", "ph": "861fb42b", "equity": 90381905, "ret": -9.62}, {"id": "v283", "ph": "479e4b25", "equity": 90381905, "ret": -9.62}, {"id": "v284", "ph": "261c5d58", "equity": 90381905, "ret": -9.62}, {"id": "v301", "ph": "30da2021", "equity": 90291973, "ret": -9.71}, {"id": "v47", "ph": "ed758fcf", "equity": 90254293, "ret": -9.75}, {"id": "v305", "ph": "8cc4eea6", "equity": 90139532, "ret": -9.86}, {"id": "v310", "ph": "ec9dd55c", "equity": 89818318, "ret": -10.18}, {"id": "v303", "ph": "1a084164", "equity": 89794120, "ret": -10.21}, {"id": "v151", "ph": "2eb1dd06", "equity": 89703330, "ret": -10.3}, {"id": "v1", "ph": "4874f4c9", "equity": 89683916, "ret": -10.32}, {"id": "v302", "ph": "3f30502d", "equity": 89587578, "ret": -10.41}, {"id": "v312", "ph": "4c23846f", "equity": 89359819, "ret": -10.64}, {"id": "v309", "ph": "07610040", "equity": 88934323, "ret": -11.07}, {"id": "v311", "ph": "8409c6e5", "equity": 88468299, "ret": -11.53}, {"id": "v41", "ph": "e9d84e84", "equity": 88438727, "ret": -11.56}, {"id": "v147", "ph": "2fbeeedb", "equity": 88051474, "ret": -11.95}, {"id": "v4", "ph": "b6219595", "equity": 85931638, "ret": -14.07}, {"id": "v40", "ph": "70731d89", "equity": 84117298, "ret": -15.88}, {"id": "v296", "ph": "4c554378", "equity": 82994880, "ret": -17.01}, {"id": "v298", "ph": "5d4bbec0", "equity": 82799229, "ret": -17.2}, {"id": "v299", "ph": "25046b1a", "equity": 79039512, "ret": -20.96}, {"id": "v300", "ph": "c6ddc17b", "equity": 75498773, "ret": -24.5}], "20260720": [{"id": "v321", "ph": "e82de49b", "equity": 96303358, "ret": -3.7}, {"id": "v319", "ph": "ca25f043", "equity": 96044191, "ret": -3.96}, {"id": "v317", "ph": "51f8ee6d", "equity": 95288497, "ret": -4.71}, {"id": "v103", "ph": "75b0a37c", "equity": 93981281, "ret": -6.02}, {"id": "v205", "ph": "02e5a3f5", "equity": 93885806, "ret": -6.11}, {"id": "v203", "ph": "2071defa", "equity": 93581916, "ret": -6.42}, {"id": "v313", "ph": "b9f4ee72", "equity": 93201667, "ret": -6.8}, {"id": "v95", "ph": "7e28e756", "equity": 93141972, "ret": -6.86}, {"id": "v101", "ph": "c4354346", "equity": 92822611, "ret": -7.18}, {"id": "v197", "ph": "5c290a32", "equity": 92785025, "ret": -7.21}, {"id": "v107", "ph": "be5cd36b", "equity": 92365156, "ret": -7.63}, {"id": "v211", "ph": "9227673c", "equity": 92222608, "ret": -7.78}, {"id": "v59", "ph": "1858e2ec", "equity": 92203842, "ret": -7.8}, {"id": "v99", "ph": "fb39409b", "equity": 92148835, "ret": -7.85}, {"id": "v49", "ph": "cdba73e0", "equity": 92068274, "ret": -7.93}, {"id": "v316", "ph": "8dc1d197", "equity": 92048108, "ret": -7.95}, {"id": "v307", "ph": "6abce93d", "equity": 91964764, "ret": -8.04}, {"id": "v157", "ph": "80f3e23b", "equity": 91915976, "ret": -8.08}, {"id": "v199", "ph": "390bfab3", "equity": 91829052, "ret": -8.17}, {"id": "v318", "ph": "c99872ef", "equity": 91722878, "ret": -8.28}, {"id": "v57", "ph": "e7e98b6d", "equity": 91530428, "ret": -8.47}, {"id": "v320", "ph": "48d6a9ef", "equity": 91403769, "ret": -8.6}, {"id": "v87", "ph": "c0be98c0", "equity": 91390375, "ret": -8.61}, {"id": "v93", "ph": "f10d4e45", "equity": 91390375, "ret": -8.61}, {"id": "v97", "ph": "ebf31977", "equity": 91306098, "ret": -8.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 91190931, "ret": -8.81}, {"id": "v189", "ph": "dfdbd0c8", "equity": 91179391, "ret": -8.82}, {"id": "v91", "ph": "5674a3d7", "equity": 91038152, "ret": -8.96}, {"id": "v209", "ph": "8730802d", "equity": 90834039, "ret": -9.17}, {"id": "v195", "ph": "dd89cf59", "equity": 90778699, "ret": -9.22}, {"id": "v201", "ph": "cb8a413e", "equity": 90778699, "ret": -9.22}, {"id": "v314", "ph": "7511570e", "equity": 90564147, "ret": -9.44}, {"id": "v81", "ph": "a6eac1e4", "equity": 90539154, "ret": -9.46}, {"id": "v306", "ph": "6966b8f6", "equity": 90332758, "ret": -9.67}, {"id": "v167", "ph": "b6d6aed8", "equity": 90306583, "ret": -9.69}, {"id": "v207", "ph": "0f6601a0", "equity": 90235466, "ret": -9.76}, {"id": "v215", "ph": "a904a49d", "equity": 90166566, "ret": -9.83}, {"id": "v213", "ph": "0e1d8e45", "equity": 90160174, "ret": -9.84}, {"id": "v161", "ph": "ed5677e6", "equity": 89630326, "ret": -10.37}, {"id": "v165", "ph": "8f862b27", "equity": 89630326, "ret": -10.37}, {"id": "v159", "ph": "af80c67a", "equity": 89531050, "ret": -10.47}, {"id": "v51", "ph": "21a98e46", "equity": 89486279, "ret": -10.51}, {"id": "v315", "ph": "e6d5b283", "equity": 89455929, "ret": -10.54}, {"id": "v105", "ph": "88395429", "equity": 89360548, "ret": -10.64}, {"id": "v89", "ph": "c49d5680", "equity": 89150562, "ret": -10.85}, {"id": "v308", "ph": "cb12dd0b", "equity": 88841934, "ret": -11.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 88693215, "ret": -11.31}, {"id": "v155", "ph": "31c0d84e", "equity": 88538444, "ret": -11.46}, {"id": "v47", "ph": "ed758fcf", "equity": 88311396, "ret": -11.69}, {"id": "v305", "ph": "8cc4eea6", "equity": 87805982, "ret": -12.19}, {"id": "v149", "ph": "c5329f8d", "equity": 87377221, "ret": -12.62}, {"id": "v301", "ph": "30da2021", "equity": 87115160, "ret": -12.88}, {"id": "v312", "ph": "4c23846f", "equity": 86824419, "ret": -13.18}, {"id": "v217", "ph": "4c547a61", "equity": 86727416, "ret": -13.27}, {"id": "v218", "ph": "7304d2d4", "equity": 86727416, "ret": -13.27}, {"id": "v223", "ph": "b57356b8", "equity": 86665159, "ret": -13.33}, {"id": "v224", "ph": "888ab069", "equity": 86665159, "ret": -13.33}, {"id": "v229", "ph": "d9261dfb", "equity": 86665159, "ret": -13.33}, {"id": "v230", "ph": "141579fe", "equity": 86665159, "ret": -13.33}, {"id": "v235", "ph": "3e6c1666", "equity": 86665159, "ret": -13.33}, {"id": "v236", "ph": "f9c75560", "equity": 86665159, "ret": -13.33}, {"id": "v265", "ph": "7faed59d", "equity": 86665159, "ret": -13.33}, {"id": "v266", "ph": "c133b585", "equity": 86665159, "ret": -13.33}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86665159, "ret": -13.33}, {"id": "v272", "ph": "2ed2027f", "equity": 86665159, "ret": -13.33}, {"id": "v277", "ph": "488b612a", "equity": 86665159, "ret": -13.33}, {"id": "v278", "ph": "861fb42b", "equity": 86665159, "ret": -13.33}, {"id": "v283", "ph": "479e4b25", "equity": 86665159, "ret": -13.33}, {"id": "v284", "ph": "261c5d58", "equity": 86665159, "ret": -13.33}, {"id": "v1", "ph": "4874f4c9", "equity": 86623058, "ret": -13.38}, {"id": "v309", "ph": "07610040", "equity": 86303983, "ret": -13.7}, {"id": "v311", "ph": "8409c6e5", "equity": 86212810, "ret": -13.79}, {"id": "v303", "ph": "1a084164", "equity": 86195681, "ret": -13.8}, {"id": "v151", "ph": "2eb1dd06", "equity": 85016045, "ret": -14.98}, {"id": "v41", "ph": "e9d84e84", "equity": 84517336, "ret": -15.48}, {"id": "v302", "ph": "3f30502d", "equity": 84451669, "ret": -15.55}, {"id": "v147", "ph": "2fbeeedb", "equity": 83598548, "ret": -16.4}, {"id": "v4", "ph": "b6219595", "equity": 81621988, "ret": -18.38}, {"id": "v296", "ph": "4c554378", "equity": 80332295, "ret": -19.67}, {"id": "v40", "ph": "70731d89", "equity": 79967856, "ret": -20.03}, {"id": "v298", "ph": "5d4bbec0", "equity": 78569163, "ret": -21.43}, {"id": "v299", "ph": "25046b1a", "equity": 74944589, "ret": -25.06}, {"id": "v300", "ph": "c6ddc17b", "equity": 71115223, "ret": -28.88}], "20260721": [{"id": "v321", "ph": "e82de49b", "equity": 96591994, "ret": -3.41}, {"id": "v319", "ph": "ca25f043", "equity": 96446024, "ret": -3.55}, {"id": "v317", "ph": "51f8ee6d", "equity": 95147797, "ret": -4.85}, {"id": "v103", "ph": "75b0a37c", "equity": 93883981, "ret": -6.12}, {"id": "v205", "ph": "02e5a3f5", "equity": 93630760, "ret": -6.37}, {"id": "v313", "ph": "b9f4ee72", "equity": 93214559, "ret": -6.79}, {"id": "v203", "ph": "2071defa", "equity": 93087341, "ret": -6.91}, {"id": "v101", "ph": "c4354346", "equity": 92722111, "ret": -7.28}, {"id": "v197", "ph": "5c290a32", "equity": 92429405, "ret": -7.57}, {"id": "v95", "ph": "7e28e756", "equity": 92395930, "ret": -7.6}, {"id": "v59", "ph": "1858e2ec", "equity": 92162442, "ret": -7.84}, {"id": "v211", "ph": "9227673c", "equity": 92124448, "ret": -7.88}, {"id": "v99", "ph": "fb39409b", "equity": 92048335, "ret": -7.95}, {"id": "v316", "ph": "8dc1d197", "equity": 92025212, "ret": -7.97}, {"id": "v107", "ph": "be5cd36b", "equity": 91820632, "ret": -8.18}, {"id": "v307", "ph": "6abce93d", "equity": 91510486, "ret": -8.49}, {"id": "v57", "ph": "e7e98b6d", "equity": 91488608, "ret": -8.51}, {"id": "v49", "ph": "cdba73e0", "equity": 91443759, "ret": -8.56}, {"id": "v157", "ph": "80f3e23b", "equity": 91414714, "ret": -8.59}, {"id": "v320", "ph": "48d6a9ef", "equity": 91379973, "ret": -8.62}, {"id": "v199", "ph": "390bfab3", "equity": 91374084, "ret": -8.63}, {"id": "v318", "ph": "c99872ef", "equity": 91356580, "ret": -8.64}, {"id": "v97", "ph": "ebf31977", "equity": 91347946, "ret": -8.65}, {"id": "v304", "ph": "96c7e8e1", "equity": 91228811, "ret": -8.77}, {"id": "v87", "ph": "c0be98c0", "equity": 91188775, "ret": -8.81}, {"id": "v93", "ph": "f10d4e45", "equity": 91188775, "ret": -8.81}, {"id": "v91", "ph": "5674a3d7", "equity": 90877452, "ret": -9.12}, {"id": "v209", "ph": "8730802d", "equity": 90733539, "ret": -9.27}, {"id": "v195", "ph": "dd89cf59", "equity": 90576255, "ret": -9.42}, {"id": "v201", "ph": "cb8a413e", "equity": 90576255, "ret": -9.42}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90513367, "ret": -9.49}, {"id": "v314", "ph": "7511570e", "equity": 90457850, "ret": -9.54}, {"id": "v306", "ph": "6966b8f6", "equity": 90451761, "ret": -9.55}, {"id": "v167", "ph": "b6d6aed8", "equity": 90194183, "ret": -9.81}, {"id": "v207", "ph": "0f6601a0", "equity": 90128866, "ret": -9.87}, {"id": "v213", "ph": "0e1d8e45", "equity": 89791224, "ret": -10.21}, {"id": "v81", "ph": "a6eac1e4", "equity": 89684613, "ret": -10.32}, {"id": "v215", "ph": "a904a49d", "equity": 89631706, "ret": -10.37}, {"id": "v161", "ph": "ed5677e6", "equity": 89518526, "ret": -10.48}, {"id": "v165", "ph": "8f862b27", "equity": 89518526, "ret": -10.48}, {"id": "v315", "ph": "e6d5b283", "equity": 89479409, "ret": -10.52}, {"id": "v89", "ph": "c49d5680", "equity": 89096535, "ret": -10.9}, {"id": "v159", "ph": "af80c67a", "equity": 88860327, "ret": -11.14}, {"id": "v51", "ph": "21a98e46", "equity": 88745286, "ret": -11.25}, {"id": "v105", "ph": "88395429", "equity": 88751830, "ret": -11.25}, {"id": "v308", "ph": "cb12dd0b", "equity": 88706257, "ret": -11.29}, {"id": "v310", "ph": "ec9dd55c", "equity": 88585915, "ret": -11.41}, {"id": "v155", "ph": "31c0d84e", "equity": 88148500, "ret": -11.85}, {"id": "v305", "ph": "8cc4eea6", "equity": 87864506, "ret": -12.14}, {"id": "v47", "ph": "ed758fcf", "equity": 87810183, "ret": -12.19}, {"id": "v301", "ph": "30da2021", "equity": 87082070, "ret": -12.92}, {"id": "v312", "ph": "4c23846f", "equity": 87081619, "ret": -12.92}, {"id": "v149", "ph": "c5329f8d", "equity": 86977446, "ret": -13.02}, {"id": "v1", "ph": "4874f4c9", "equity": 86563348, "ret": -13.44}, {"id": "v309", "ph": "07610040", "equity": 86463979, "ret": -13.54}, {"id": "v311", "ph": "8409c6e5", "equity": 86101230, "ret": -13.9}, {"id": "v217", "ph": "4c547a61", "equity": 86090367, "ret": -13.91}, {"id": "v218", "ph": "7304d2d4", "equity": 86090367, "ret": -13.91}, {"id": "v223", "ph": "b57356b8", "equity": 86028111, "ret": -13.97}, {"id": "v224", "ph": "888ab069", "equity": 86028111, "ret": -13.97}, {"id": "v229", "ph": "d9261dfb", "equity": 86028111, "ret": -13.97}, {"id": "v230", "ph": "141579fe", "equity": 86028111, "ret": -13.97}, {"id": "v235", "ph": "3e6c1666", "equity": 86028111, "ret": -13.97}, {"id": "v236", "ph": "f9c75560", "equity": 86028111, "ret": -13.97}, {"id": "v265", "ph": "7faed59d", "equity": 86028111, "ret": -13.97}, {"id": "v266", "ph": "c133b585", "equity": 86028111, "ret": -13.97}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86028111, "ret": -13.97}, {"id": "v272", "ph": "2ed2027f", "equity": 86028111, "ret": -13.97}, {"id": "v277", "ph": "488b612a", "equity": 86028111, "ret": -13.97}, {"id": "v278", "ph": "861fb42b", "equity": 86028111, "ret": -13.97}, {"id": "v283", "ph": "479e4b25", "equity": 86028111, "ret": -13.97}, {"id": "v284", "ph": "261c5d58", "equity": 86028111, "ret": -13.97}, {"id": "v303", "ph": "1a084164", "equity": 85800353, "ret": -14.2}, {"id": "v151", "ph": "2eb1dd06", "equity": 84317520, "ret": -15.68}, {"id": "v302", "ph": "3f30502d", "equity": 84240679, "ret": -15.76}, {"id": "v41", "ph": "e9d84e84", "equity": 84181614, "ret": -15.82}, {"id": "v147", "ph": "2fbeeedb", "equity": 82857327, "ret": -17.14}, {"id": "v4", "ph": "b6219595", "equity": 81505657, "ret": -18.49}, {"id": "v296", "ph": "4c554378", "equity": 80029835, "ret": -19.97}, {"id": "v40", "ph": "70731d89", "equity": 79724166, "ret": -20.28}, {"id": "v298", "ph": "5d4bbec0", "equity": 78134788, "ret": -21.87}, {"id": "v299", "ph": "25046b1a", "equity": 75186062, "ret": -24.81}, {"id": "v300", "ph": "c6ddc17b", "equity": 70909523, "ret": -29.09}], "20260722": [{"id": "v319", "ph": "ca25f043", "equity": 96641404, "ret": -3.36}, {"id": "v321", "ph": "e82de49b", "equity": 95537377, "ret": -4.46}, {"id": "v317", "ph": "51f8ee6d", "equity": 94531711, "ret": -5.47}, {"id": "v103", "ph": "75b0a37c", "equity": 93201324, "ret": -6.8}, {"id": "v313", "ph": "b9f4ee72", "equity": 92977447, "ret": -7.02}, {"id": "v203", "ph": "2071defa", "equity": 92580836, "ret": -7.42}, {"id": "v101", "ph": "c4354346", "equity": 92115111, "ret": -7.88}, {"id": "v205", "ph": "02e5a3f5", "equity": 92057986, "ret": -7.94}, {"id": "v95", "ph": "7e28e756", "equity": 91889124, "ret": -8.11}, {"id": "v59", "ph": "1858e2ec", "equity": 91558042, "ret": -8.44}, {"id": "v316", "ph": "8dc1d197", "equity": 91493287, "ret": -8.51}, {"id": "v99", "ph": "fb39409b", "equity": 91441335, "ret": -8.56}, {"id": "v211", "ph": "9227673c", "equity": 91363538, "ret": -8.64}, {"id": "v107", "ph": "be5cd36b", "equity": 91245339, "ret": -8.75}, {"id": "v49", "ph": "cdba73e0", "equity": 90956284, "ret": -9.04}, {"id": "v57", "ph": "e7e98b6d", "equity": 90884208, "ret": -9.12}, {"id": "v157", "ph": "80f3e23b", "equity": 90863739, "ret": -9.14}, {"id": "v320", "ph": "48d6a9ef", "equity": 90822660, "ret": -9.18}, {"id": "v307", "ph": "6abce93d", "equity": 90804817, "ret": -9.2}, {"id": "v199", "ph": "390bfab3", "equity": 90742209, "ret": -9.26}, {"id": "v197", "ph": "5c290a32", "equity": 90666801, "ret": -9.33}, {"id": "v318", "ph": "c99872ef", "equity": 90516380, "ret": -9.48}, {"id": "v87", "ph": "c0be98c0", "equity": 90307213, "ret": -9.69}, {"id": "v93", "ph": "f10d4e45", "equity": 90307213, "ret": -9.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 90277144, "ret": -9.72}, {"id": "v209", "ph": "8730802d", "equity": 90126539, "ret": -9.87}, {"id": "v91", "ph": "5674a3d7", "equity": 90021177, "ret": -9.98}, {"id": "v314", "ph": "7511570e", "equity": 89783375, "ret": -10.22}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89633593, "ret": -10.37}, {"id": "v195", "ph": "dd89cf59", "equity": 89617275, "ret": -10.38}, {"id": "v201", "ph": "cb8a413e", "equity": 89617275, "ret": -10.38}, {"id": "v167", "ph": "b6d6aed8", "equity": 89610883, "ret": -10.39}, {"id": "v97", "ph": "ebf31977", "equity": 89568560, "ret": -10.43}, {"id": "v207", "ph": "0f6601a0", "equity": 89545866, "ret": -10.45}, {"id": "v215", "ph": "a904a49d", "equity": 88987147, "ret": -11.01}, {"id": "v161", "ph": "ed5677e6", "equity": 88936526, "ret": -11.06}, {"id": "v165", "ph": "8f862b27", "equity": 88936526, "ret": -11.06}, {"id": "v81", "ph": "a6eac1e4", "equity": 88933538, "ret": -11.07}, {"id": "v315", "ph": "e6d5b283", "equity": 88851609, "ret": -11.15}, {"id": "v306", "ph": "6966b8f6", "equity": 88712580, "ret": -11.29}, {"id": "v213", "ph": "0e1d8e45", "equity": 88203339, "ret": -11.8}, {"id": "v310", "ph": "ec9dd55c", "equity": 88037815, "ret": -11.96}, {"id": "v51", "ph": "21a98e46", "equity": 88001642, "ret": -12.0}, {"id": "v159", "ph": "af80c67a", "equity": 87978483, "ret": -12.02}, {"id": "v105", "ph": "88395429", "equity": 87164209, "ret": -12.84}, {"id": "v89", "ph": "c49d5680", "equity": 87152293, "ret": -12.85}, {"id": "v308", "ph": "cb12dd0b", "equity": 86987617, "ret": -13.01}, {"id": "v305", "ph": "8cc4eea6", "equity": 86676626, "ret": -13.32}, {"id": "v155", "ph": "31c0d84e", "equity": 86517483, "ret": -13.48}, {"id": "v301", "ph": "30da2021", "equity": 86299570, "ret": -13.7}, {"id": "v47", "ph": "ed758fcf", "equity": 86262582, "ret": -13.74}, {"id": "v312", "ph": "4c23846f", "equity": 85729419, "ret": -14.27}, {"id": "v1", "ph": "4874f4c9", "equity": 85660548, "ret": -14.34}, {"id": "v149", "ph": "c5329f8d", "equity": 85242679, "ret": -14.76}, {"id": "v303", "ph": "1a084164", "equity": 85186241, "ret": -14.81}, {"id": "v311", "ph": "8409c6e5", "equity": 85184230, "ret": -14.82}, {"id": "v218", "ph": "7304d2d4", "equity": 85145383, "ret": -14.85}, {"id": "v217", "ph": "4c547a61", "equity": 85097376, "ret": -14.9}, {"id": "v223", "ph": "b57356b8", "equity": 85083127, "ret": -14.92}, {"id": "v224", "ph": "888ab069", "equity": 85083127, "ret": -14.92}, {"id": "v229", "ph": "d9261dfb", "equity": 85083127, "ret": -14.92}, {"id": "v230", "ph": "141579fe", "equity": 85083127, "ret": -14.92}, {"id": "v235", "ph": "3e6c1666", "equity": 85083127, "ret": -14.92}, {"id": "v236", "ph": "f9c75560", "equity": 85083127, "ret": -14.92}, {"id": "v265", "ph": "7faed59d", "equity": 85083127, "ret": -14.92}, {"id": "v266", "ph": "c133b585", "equity": 85083127, "ret": -14.92}, {"id": "v271", "ph": "2b9ccdcd", "equity": 85083127, "ret": -14.92}, {"id": "v272", "ph": "2ed2027f", "equity": 85083127, "ret": -14.92}, {"id": "v277", "ph": "488b612a", "equity": 85083127, "ret": -14.92}, {"id": "v278", "ph": "861fb42b", "equity": 85083127, "ret": -14.92}, {"id": "v283", "ph": "479e4b25", "equity": 85083127, "ret": -14.92}, {"id": "v284", "ph": "261c5d58", "equity": 85083127, "ret": -14.92}, {"id": "v309", "ph": "07610040", "equity": 84801897, "ret": -15.2}, {"id": "v302", "ph": "3f30502d", "equity": 82984780, "ret": -17.02}, {"id": "v41", "ph": "e9d84e84", "equity": 82442562, "ret": -17.56}, {"id": "v151", "ph": "2eb1dd06", "equity": 82206766, "ret": -17.79}, {"id": "v147", "ph": "2fbeeedb", "equity": 80675705, "ret": -19.32}, {"id": "v4", "ph": "b6219595", "equity": 79163178, "ret": -20.84}, {"id": "v296", "ph": "4c554378", "equity": 79015755, "ret": -20.98}, {"id": "v40", "ph": "70731d89", "equity": 77413917, "ret": -22.59}, {"id": "v298", "ph": "5d4bbec0", "equity": 77045963, "ret": -22.95}, {"id": "v299", "ph": "25046b1a", "equity": 73699362, "ret": -26.3}, {"id": "v300", "ph": "c6ddc17b", "equity": 70020634, "ret": -29.98}], "20260723": [{"id": "v319", "ph": "ca25f043", "equity": 97344281, "ret": -2.66}, {"id": "v321", "ph": "e82de49b", "equity": 96850290, "ret": -3.15}, {"id": "v317", "ph": "51f8ee6d", "equity": 95483411, "ret": -4.52}, {"id": "v103", "ph": "75b0a37c", "equity": 94719243, "ret": -5.28}, {"id": "v203", "ph": "2071defa", "equity": 94158254, "ret": -5.84}, {"id": "v313", "ph": "b9f4ee72", "equity": 93714884, "ret": -6.29}, {"id": "v101", "ph": "c4354346", "equity": 93675266, "ret": -6.32}, {"id": "v95", "ph": "7e28e756", "equity": 93472137, "ret": -6.53}, {"id": "v205", "ph": "02e5a3f5", "equity": 93469960, "ret": -6.53}, {"id": "v59", "ph": "1858e2ec", "equity": 93262679, "ret": -6.74}, {"id": "v99", "ph": "fb39409b", "equity": 92998776, "ret": -7.0}, {"id": "v211", "ph": "9227673c", "equity": 92839096, "ret": -7.16}, {"id": "v107", "ph": "be5cd36b", "equity": 92768400, "ret": -7.23}, {"id": "v49", "ph": "cdba73e0", "equity": 92637002, "ret": -7.36}, {"id": "v57", "ph": "e7e98b6d", "equity": 92587857, "ret": -7.41}, {"id": "v157", "ph": "80f3e23b", "equity": 92198402, "ret": -7.8}, {"id": "v197", "ph": "5c290a32", "equity": 92020162, "ret": -7.98}, {"id": "v318", "ph": "c99872ef", "equity": 91922879, "ret": -8.08}, {"id": "v199", "ph": "390bfab3", "equity": 91822113, "ret": -8.18}, {"id": "v87", "ph": "c0be98c0", "equity": 91746796, "ret": -8.25}, {"id": "v93", "ph": "f10d4e45", "equity": 91746796, "ret": -8.25}, {"id": "v316", "ph": "8dc1d197", "equity": 91739958, "ret": -8.26}, {"id": "v209", "ph": "8730802d", "equity": 91679109, "ret": -8.32}, {"id": "v307", "ph": "6abce93d", "equity": 91621406, "ret": -8.38}, {"id": "v91", "ph": "5674a3d7", "equity": 91420862, "ret": -8.58}, {"id": "v167", "ph": "b6d6aed8", "equity": 91099221, "ret": -8.9}, {"id": "v320", "ph": "48d6a9ef", "equity": 91086838, "ret": -8.91}, {"id": "v207", "ph": "0f6601a0", "equity": 91055209, "ret": -8.94}, {"id": "v315", "ph": "e6d5b283", "equity": 91044857, "ret": -8.96}, {"id": "v195", "ph": "dd89cf59", "equity": 91023841, "ret": -8.98}, {"id": "v201", "ph": "cb8a413e", "equity": 91023841, "ret": -8.98}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90930405, "ret": -9.07}, {"id": "v97", "ph": "ebf31977", "equity": 90916706, "ret": -9.08}, {"id": "v304", "ph": "96c7e8e1", "equity": 90835706, "ret": -9.16}, {"id": "v314", "ph": "7511570e", "equity": 90554102, "ret": -9.45}, {"id": "v215", "ph": "a904a49d", "equity": 90456632, "ret": -9.54}, {"id": "v161", "ph": "ed5677e6", "equity": 90423951, "ret": -9.58}, {"id": "v165", "ph": "8f862b27", "equity": 90423951, "ret": -9.58}, {"id": "v81", "ph": "a6eac1e4", "equity": 90376813, "ret": -9.62}, {"id": "v306", "ph": "6966b8f6", "equity": 90321719, "ret": -9.68}, {"id": "v213", "ph": "0e1d8e45", "equity": 89961686, "ret": -10.04}, {"id": "v51", "ph": "21a98e46", "equity": 89571712, "ret": -10.43}, {"id": "v159", "ph": "af80c67a", "equity": 89135465, "ret": -10.86}, {"id": "v105", "ph": "88395429", "equity": 88920614, "ret": -11.08}, {"id": "v310", "ph": "ec9dd55c", "equity": 88699473, "ret": -11.3}, {"id": "v308", "ph": "cb12dd0b", "equity": 88514255, "ret": -11.49}, {"id": "v89", "ph": "c49d5680", "equity": 88441737, "ret": -11.56}, {"id": "v301", "ph": "30da2021", "equity": 88202693, "ret": -11.8}, {"id": "v1", "ph": "4874f4c9", "equity": 88009125, "ret": -11.99}, {"id": "v47", "ph": "ed758fcf", "equity": 87718830, "ret": -12.28}, {"id": "v312", "ph": "4c23846f", "equity": 87724114, "ret": -12.28}, {"id": "v305", "ph": "8cc4eea6", "equity": 87671213, "ret": -12.33}, {"id": "v155", "ph": "31c0d84e", "equity": 87570429, "ret": -12.43}, {"id": "v309", "ph": "07610040", "equity": 86809577, "ret": -13.19}, {"id": "v311", "ph": "8409c6e5", "equity": 86747172, "ret": -13.25}, {"id": "v149", "ph": "c5329f8d", "equity": 86595308, "ret": -13.4}, {"id": "v303", "ph": "1a084164", "equity": 86502167, "ret": -13.5}, {"id": "v217", "ph": "4c547a61", "equity": 86319467, "ret": -13.68}, {"id": "v223", "ph": "b57356b8", "equity": 86305218, "ret": -13.69}, {"id": "v229", "ph": "d9261dfb", "equity": 86305218, "ret": -13.69}, {"id": "v235", "ph": "3e6c1666", "equity": 86305218, "ret": -13.69}, {"id": "v265", "ph": "7faed59d", "equity": 86305218, "ret": -13.69}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86305218, "ret": -13.69}, {"id": "v277", "ph": "488b612a", "equity": 86305218, "ret": -13.69}, {"id": "v283", "ph": "479e4b25", "equity": 86305218, "ret": -13.69}, {"id": "v218", "ph": "7304d2d4", "equity": 86106155, "ret": -13.89}, {"id": "v224", "ph": "888ab069", "equity": 86043899, "ret": -13.96}, {"id": "v230", "ph": "141579fe", "equity": 86043899, "ret": -13.96}, {"id": "v236", "ph": "f9c75560", "equity": 86043899, "ret": -13.96}, {"id": "v266", "ph": "c133b585", "equity": 86043899, "ret": -13.96}, {"id": "v272", "ph": "2ed2027f", "equity": 86043899, "ret": -13.96}, {"id": "v278", "ph": "861fb42b", "equity": 86043899, "ret": -13.96}, {"id": "v284", "ph": "261c5d58", "equity": 86043899, "ret": -13.96}, {"id": "v302", "ph": "3f30502d", "equity": 84642676, "ret": -15.36}, {"id": "v41", "ph": "e9d84e84", "equity": 84069115, "ret": -15.93}, {"id": "v151", "ph": "2eb1dd06", "equity": 83455339, "ret": -16.54}, {"id": "v147", "ph": "2fbeeedb", "equity": 81819890, "ret": -18.18}, {"id": "v4", "ph": "b6219595", "equity": 81192265, "ret": -18.81}, {"id": "v296", "ph": "4c554378", "equity": 80153572, "ret": -19.85}, {"id": "v298", "ph": "5d4bbec0", "equity": 79608330, "ret": -20.39}, {"id": "v40", "ph": "70731d89", "equity": 79425329, "ret": -20.57}, {"id": "v299", "ph": "25046b1a", "equity": 75593122, "ret": -24.41}, {"id": "v300", "ph": "c6ddc17b", "equity": 70280913, "ret": -29.72}], "20260724": [{"id": "v321", "ph": "e82de49b", "equity": 96237233, "ret": -3.76}, {"id": "v319", "ph": "ca25f043", "equity": 96203069, "ret": -3.8}, {"id": "v317", "ph": "51f8ee6d", "equity": 95142012, "ret": -4.86}, {"id": "v103", "ph": "75b0a37c", "equity": 94389132, "ret": -5.61}, {"id": "v203", "ph": "2071defa", "equity": 94123912, "ret": -5.88}, {"id": "v101", "ph": "c4354346", "equity": 93837838, "ret": -6.16}, {"id": "v59", "ph": "1858e2ec", "equity": 93439966, "ret": -6.56}, {"id": "v95", "ph": "7e28e756", "equity": 93440053, "ret": -6.56}, {"id": "v99", "ph": "fb39409b", "equity": 93161488, "ret": -6.84}, {"id": "v313", "ph": "b9f4ee72", "equity": 93040980, "ret": -6.96}, {"id": "v57", "ph": "e7e98b6d", "equity": 92766145, "ret": -7.23}, {"id": "v205", "ph": "02e5a3f5", "equity": 92735433, "ret": -7.26}, {"id": "v49", "ph": "cdba73e0", "equity": 92627409, "ret": -7.37}, {"id": "v211", "ph": "9227673c", "equity": 92514138, "ret": -7.49}, {"id": "v157", "ph": "80f3e23b", "equity": 92321501, "ret": -7.68}, {"id": "v107", "ph": "be5cd36b", "equity": 92301034, "ret": -7.7}, {"id": "v318", "ph": "c99872ef", "equity": 92080434, "ret": -7.92}, {"id": "v209", "ph": "8730802d", "equity": 91841028, "ret": -8.16}, {"id": "v87", "ph": "c0be98c0", "equity": 91427126, "ret": -8.57}, {"id": "v93", "ph": "f10d4e45", "equity": 91427126, "ret": -8.57}, {"id": "v199", "ph": "390bfab3", "equity": 91380551, "ret": -8.62}, {"id": "v167", "ph": "b6d6aed8", "equity": 91262815, "ret": -8.74}, {"id": "v207", "ph": "0f6601a0", "equity": 91216803, "ret": -8.78}, {"id": "v197", "ph": "5c290a32", "equity": 91077525, "ret": -8.92}, {"id": "v316", "ph": "8dc1d197", "equity": 91062293, "ret": -8.94}, {"id": "v91", "ph": "5674a3d7", "equity": 91042619, "ret": -8.96}, {"id": "v307", "ph": "6abce93d", "equity": 90976224, "ret": -9.02}, {"id": "v315", "ph": "e6d5b283", "equity": 90845783, "ret": -9.15}, {"id": "v195", "ph": "dd89cf59", "equity": 90706261, "ret": -9.29}, {"id": "v201", "ph": "cb8a413e", "equity": 90706261, "ret": -9.29}, {"id": "v161", "ph": "ed5677e6", "equity": 90585528, "ret": -9.41}, {"id": "v165", "ph": "8f862b27", "equity": 90585528, "ret": -9.41}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90470422, "ret": -9.53}, {"id": "v320", "ph": "48d6a9ef", "equity": 90368822, "ret": -9.63}, {"id": "v314", "ph": "7511570e", "equity": 90252487, "ret": -9.75}, {"id": "v304", "ph": "96c7e8e1", "equity": 90177917, "ret": -9.82}, {"id": "v97", "ph": "ebf31977", "equity": 90152329, "ret": -9.85}, {"id": "v215", "ph": "a904a49d", "equity": 90016445, "ret": -9.98}, {"id": "v81", "ph": "a6eac1e4", "equity": 89712670, "ret": -10.29}, {"id": "v306", "ph": "6966b8f6", "equity": 89501964, "ret": -10.5}, {"id": "v213", "ph": "0e1d8e45", "equity": 89150614, "ret": -10.85}, {"id": "v51", "ph": "21a98e46", "equity": 88932420, "ret": -11.07}, {"id": "v159", "ph": "af80c67a", "equity": 88745758, "ret": -11.25}, {"id": "v301", "ph": "30da2021", "equity": 88250018, "ret": -11.75}, {"id": "v1", "ph": "4874f4c9", "equity": 88118722, "ret": -11.88}, {"id": "v105", "ph": "88395429", "equity": 88117432, "ret": -11.88}, {"id": "v310", "ph": "ec9dd55c", "equity": 88076730, "ret": -11.92}, {"id": "v308", "ph": "cb12dd0b", "equity": 87474376, "ret": -12.53}, {"id": "v312", "ph": "4c23846f", "equity": 87471024, "ret": -12.53}, {"id": "v89", "ph": "c49d5680", "equity": 87455787, "ret": -12.54}, {"id": "v305", "ph": "8cc4eea6", "equity": 86976768, "ret": -13.02}, {"id": "v47", "ph": "ed758fcf", "equity": 86781583, "ret": -13.22}, {"id": "v309", "ph": "07610040", "equity": 86727542, "ret": -13.27}, {"id": "v155", "ph": "31c0d84e", "equity": 86636675, "ret": -13.36}, {"id": "v311", "ph": "8409c6e5", "equity": 86322712, "ret": -13.68}, {"id": "v303", "ph": "1a084164", "equity": 85646622, "ret": -14.35}, {"id": "v217", "ph": "4c547a61", "equity": 85578880, "ret": -14.42}, {"id": "v223", "ph": "b57356b8", "equity": 85564631, "ret": -14.44}, {"id": "v229", "ph": "d9261dfb", "equity": 85564631, "ret": -14.44}, {"id": "v235", "ph": "3e6c1666", "equity": 85564631, "ret": -14.44}, {"id": "v265", "ph": "7faed59d", "equity": 85564631, "ret": -14.44}, {"id": "v271", "ph": "2b9ccdcd", "equity": 85564631, "ret": -14.44}, {"id": "v277", "ph": "488b612a", "equity": 85564631, "ret": -14.44}, {"id": "v283", "ph": "479e4b25", "equity": 85564631, "ret": -14.44}, {"id": "v149", "ph": "c5329f8d", "equity": 85370732, "ret": -14.63}, {"id": "v218", "ph": "7304d2d4", "equity": 85156011, "ret": -14.84}, {"id": "v224", "ph": "888ab069", "equity": 85093755, "ret": -14.91}, {"id": "v230", "ph": "141579fe", "equity": 85093755, "ret": -14.91}, {"id": "v236", "ph": "f9c75560", "equity": 85093755, "ret": -14.91}, {"id": "v266", "ph": "c133b585", "equity": 85093755, "ret": -14.91}, {"id": "v272", "ph": "2ed2027f", "equity": 85093755, "ret": -14.91}, {"id": "v278", "ph": "861fb42b", "equity": 85093755, "ret": -14.91}, {"id": "v284", "ph": "261c5d58", "equity": 85093755, "ret": -14.91}, {"id": "v302", "ph": "3f30502d", "equity": 83847192, "ret": -16.15}, {"id": "v41", "ph": "e9d84e84", "equity": 82899458, "ret": -17.1}, {"id": "v151", "ph": "2eb1dd06", "equity": 81773497, "ret": -18.23}, {"id": "v147", "ph": "2fbeeedb", "equity": 80283719, "ret": -19.72}, {"id": "v296", "ph": "4c554378", "equity": 79663192, "ret": -20.34}, {"id": "v4", "ph": "b6219595", "equity": 79399957, "ret": -20.6}, {"id": "v298", "ph": "5d4bbec0", "equity": 79128726, "ret": -20.87}, {"id": "v40", "ph": "70731d89", "equity": 77672758, "ret": -22.33}, {"id": "v299", "ph": "25046b1a", "equity": 74613187, "ret": -25.39}, {"id": "v300", "ph": "c6ddc17b", "equity": 68893661, "ret": -31.11}], "20260727": [{"id": "v319", "ph": "ca25f043", "equity": 96215398, "ret": -3.78}, {"id": "v321", "ph": "e82de49b", "equity": 96119353, "ret": -3.88}, {"id": "v317", "ph": "51f8ee6d", "equity": 94365997, "ret": -5.63}, {"id": "v313", "ph": "b9f4ee72", "equity": 92087348, "ret": -7.91}, {"id": "v205", "ph": "02e5a3f5", "equity": 91566888, "ret": -8.43}, {"id": "v103", "ph": "75b0a37c", "equity": 91527732, "ret": -8.47}, {"id": "v318", "ph": "c99872ef", "equity": 91436234, "ret": -8.56}, {"id": "v101", "ph": "c4354346", "equity": 91386557, "ret": -8.61}, {"id": "v316", "ph": "8dc1d197", "equity": 91315493, "ret": -8.68}, {"id": "v203", "ph": "2071defa", "equity": 91263472, "ret": -8.74}, {"id": "v59", "ph": "1858e2ec", "equity": 91203098, "ret": -8.8}, {"id": "v99", "ph": "fb39409b", "equity": 90724166, "ret": -9.28}, {"id": "v95", "ph": "7e28e756", "equity": 90643772, "ret": -9.36}, {"id": "v320", "ph": "48d6a9ef", "equity": 90640222, "ret": -9.36}, {"id": "v57", "ph": "e7e98b6d", "equity": 90538996, "ret": -9.46}, {"id": "v304", "ph": "96c7e8e1", "equity": 90010466, "ret": -9.99}, {"id": "v197", "ph": "5c290a32", "equity": 89994081, "ret": -10.01}, {"id": "v49", "ph": "cdba73e0", "equity": 89967305, "ret": -10.03}, {"id": "v307", "ph": "6abce93d", "equity": 89797098, "ret": -10.2}, {"id": "v211", "ph": "9227673c", "equity": 89696806, "ret": -10.3}, {"id": "v157", "ph": "80f3e23b", "equity": 89520572, "ret": -10.48}, {"id": "v97", "ph": "ebf31977", "equity": 89499524, "ret": -10.5}, {"id": "v209", "ph": "8730802d", "equity": 89427970, "ret": -10.57}, {"id": "v315", "ph": "e6d5b283", "equity": 89407562, "ret": -10.59}, {"id": "v314", "ph": "7511570e", "equity": 89232014, "ret": -10.77}, {"id": "v199", "ph": "390bfab3", "equity": 89136479, "ret": -10.86}, {"id": "v107", "ph": "be5cd36b", "equity": 88997031, "ret": -11.0}, {"id": "v306", "ph": "6966b8f6", "equity": 88898954, "ret": -11.1}, {"id": "v167", "ph": "b6d6aed8", "equity": 88855562, "ret": -11.14}, {"id": "v91", "ph": "5674a3d7", "equity": 88823953, "ret": -11.18}, {"id": "v207", "ph": "0f6601a0", "equity": 88816070, "ret": -11.18}, {"id": "v87", "ph": "c0be98c0", "equity": 88636523, "ret": -11.36}, {"id": "v93", "ph": "f10d4e45", "equity": 88636523, "ret": -11.36}, {"id": "v161", "ph": "ed5677e6", "equity": 88195113, "ret": -11.8}, {"id": "v165", "ph": "8f862b27", "equity": 88195113, "ret": -11.8}, {"id": "v195", "ph": "dd89cf59", "equity": 87928163, "ret": -12.07}, {"id": "v201", "ph": "cb8a413e", "equity": 87928163, "ret": -12.07}, {"id": "v310", "ph": "ec9dd55c", "equity": 87713974, "ret": -12.29}, {"id": "v189", "ph": "dfdbd0c8", "equity": 87256821, "ret": -12.74}, {"id": "v213", "ph": "0e1d8e45", "equity": 87225882, "ret": -12.77}, {"id": "v89", "ph": "c49d5680", "equity": 86914225, "ret": -13.09}, {"id": "v215", "ph": "a904a49d", "equity": 86794256, "ret": -13.21}, {"id": "v305", "ph": "8cc4eea6", "equity": 86692434, "ret": -13.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 86512696, "ret": -13.49}, {"id": "v308", "ph": "cb12dd0b", "equity": 86242151, "ret": -13.76}, {"id": "v312", "ph": "4c23846f", "equity": 86237324, "ret": -13.76}, {"id": "v105", "ph": "88395429", "equity": 86181944, "ret": -13.82}, {"id": "v47", "ph": "ed758fcf", "equity": 85970426, "ret": -14.03}, {"id": "v51", "ph": "21a98e46", "equity": 85923618, "ret": -14.08}, {"id": "v311", "ph": "8409c6e5", "equity": 85840299, "ret": -14.16}, {"id": "v159", "ph": "af80c67a", "equity": 85556128, "ret": -14.44}, {"id": "v309", "ph": "07610040", "equity": 85212542, "ret": -14.79}, {"id": "v301", "ph": "30da2021", "equity": 85064270, "ret": -14.94}, {"id": "v155", "ph": "31c0d84e", "equity": 84722023, "ret": -15.28}, {"id": "v1", "ph": "4874f4c9", "equity": 84354514, "ret": -15.65}, {"id": "v149", "ph": "c5329f8d", "equity": 84276130, "ret": -15.72}, {"id": "v303", "ph": "1a084164", "equity": 84040178, "ret": -15.96}, {"id": "v223", "ph": "b57356b8", "equity": 83914010, "ret": -16.09}, {"id": "v235", "ph": "3e6c1666", "equity": 83914010, "ret": -16.09}, {"id": "v265", "ph": "7faed59d", "equity": 83914010, "ret": -16.09}, {"id": "v271", "ph": "2b9ccdcd", "equity": 83914010, "ret": -16.09}, {"id": "v217", "ph": "4c547a61", "equity": 83870676, "ret": -16.13}, {"id": "v229", "ph": "d9261dfb", "equity": 83856427, "ret": -16.14}, {"id": "v277", "ph": "488b612a", "equity": 83856427, "ret": -16.14}, {"id": "v283", "ph": "479e4b25", "equity": 83856427, "ret": -16.14}, {"id": "v224", "ph": "888ab069", "equity": 82980608, "ret": -17.02}, {"id": "v236", "ph": "f9c75560", "equity": 82980608, "ret": -17.02}, {"id": "v266", "ph": "c133b585", "equity": 82980608, "ret": -17.02}, {"id": "v272", "ph": "2ed2027f", "equity": 82980608, "ret": -17.02}, {"id": "v218", "ph": "7304d2d4", "equity": 82969395, "ret": -17.03}, {"id": "v230", "ph": "141579fe", "equity": 82907139, "ret": -17.09}, {"id": "v278", "ph": "861fb42b", "equity": 82907139, "ret": -17.09}, {"id": "v284", "ph": "261c5d58", "equity": 82907139, "ret": -17.09}, {"id": "v41", "ph": "e9d84e84", "equity": 81926428, "ret": -18.07}, {"id": "v302", "ph": "3f30502d", "equity": 81093448, "ret": -18.91}, {"id": "v151", "ph": "2eb1dd06", "equity": 80871239, "ret": -19.13}, {"id": "v147", "ph": "2fbeeedb", "equity": 79336726, "ret": -20.66}, {"id": "v296", "ph": "4c554378", "equity": 79038392, "ret": -20.96}, {"id": "v4", "ph": "b6219595", "equity": 78306323, "ret": -21.69}, {"id": "v298", "ph": "5d4bbec0", "equity": 77972386, "ret": -22.03}, {"id": "v40", "ph": "70731d89", "equity": 76598748, "ret": -23.4}, {"id": "v299", "ph": "25046b1a", "equity": 73737330, "ret": -26.26}, {"id": "v300", "ph": "c6ddc17b", "equity": 67419334, "ret": -32.58}]}
\ No newline at end of file
+{"20260610": [{"id": "main", "ph": "48693b1f", "equity": 100000000, "ret": 0.0}, {"id": "v1", "ph": "bab0fc2c", "equity": 100000000, "ret": 0.0}, {"id": "v2", "ph": "81d17cca", "equity": 100000000, "ret": 0.0}, {"id": "v3", "ph": "b6219595", "equity": 100000000, "ret": 0.0}, {"id": "v4", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "e96ce9e2", "equity": 100000000, "ret": 0.0}, {"id": "v6", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "956b3b16", "equity": 100000000, "ret": 0.0}, {"id": "v22", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "9beb8c05", "equity": 100000000, "ret": 0.0}, {"id": "v24", "ph": "00b59557", "equity": 100000000, "ret": 0.0}, {"id": "v25", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "33d43bc6", "equity": 100000000, "ret": 0.0}, {"id": "v27", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "3dc99490", "equity": 100000000, "ret": 0.0}, {"id": "v31", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "6a183375", "equity": 100000000, "ret": 0.0}, {"id": "v35", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}], "20260611": [{"id": "v62", "ph": "c6ddc17b", "equity": 100304837, "ret": 0.3}, {"id": "v64", "ph": "15b83273", "equity": 100304837, "ret": 0.3}, {"id": "v66", "ph": "db0e70a4", "equity": 100304837, "ret": 0.3}, {"id": "v68", "ph": "38c84625", "equity": 100159127, "ret": 0.16}, {"id": "v70", "ph": "6c4d4125", "equity": 100159127, "ret": 0.16}, {"id": "v72", "ph": "b8d74129", "equity": 100159127, "ret": 0.16}, {"id": "v74", "ph": "35a8e955", "equity": 100159127, "ret": 0.16}, {"id": "v76", "ph": "178928cb", "equity": 100159127, "ret": 0.16}, {"id": "v78", "ph": "655e082d", "equity": 100159127, "ret": 0.16}, {"id": "v80", "ph": "b2d56c47", "equity": 100159127, "ret": 0.16}, {"id": "v84", "ph": "95794738", "equity": 100159127, "ret": 0.16}, {"id": "v86", "ph": "935c5a1c", "equity": 100159127, "ret": 0.16}, {"id": "v22", "ph": "956b3b16", "equity": 100008869, "ret": 0.01}, {"id": "v24", "ph": "9beb8c05", "equity": 100008869, "ret": 0.01}, {"id": "v25", "ph": "00b59557", "equity": 100008869, "ret": 0.01}, {"id": "v79", "ph": "61b964d8", "equity": 100008869, "ret": 0.01}, {"id": "v83", "ph": "1b98a0fc", "equity": 100008869, "ret": 0.01}, {"id": "v85", "ph": "5ca17df0", "equity": 100008869, "ret": 0.01}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v2", "ph": "bab0fc2c", "equity": 100000000, "ret": 0.0}, {"id": "v3", "ph": "81d17cca", "equity": 100000000, "ret": 0.0}, {"id": "v4", "ph": "b6219595", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v6", "ph": "e96ce9e2", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v27", "ph": "33d43bc6", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v31", "ph": "3dc99490", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v35", "ph": "6a183375", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v39", "ph": "11c27236", "equity": 100000000, "ret": 0.0}, {"id": "v41", "ph": "e9d84e84", "equity": 100000000, "ret": 0.0}, {"id": "v43", "ph": "94ea3b53", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v47", "ph": "ed758fcf", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v89", "ph": "c49d5680", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v97", "ph": "ebf31977", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v105", "ph": "88395429", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v48", "ph": "18854c6a", "equity": 99935458, "ret": -0.06}, {"id": "v90", "ph": "86e09c47", "equity": 99935458, "ret": -0.06}, {"id": "v98", "ph": "266fc53f", "equity": 99935458, "ret": -0.06}, {"id": "v106", "ph": "d0f5fbc1", "equity": 99935458, "ret": -0.06}, {"id": "v40", "ph": "70731d89", "equity": 99891085, "ret": -0.11}, {"id": "v42", "ph": "f36fddc6", "equity": 99891085, "ret": -0.11}, {"id": "v44", "ph": "364ea434", "equity": 99891085, "ret": -0.11}], "20260612": [{"id": "v62", "ph": "c6ddc17b", "equity": 101131990, "ret": 1.13}, {"id": "v64", "ph": "15b83273", "equity": 101131990, "ret": 1.13}, {"id": "v66", "ph": "db0e70a4", "equity": 101131990, "ret": 1.13}, {"id": "v68", "ph": "38c84625", "equity": 100815744, "ret": 0.82}, {"id": "v70", "ph": "6c4d4125", "equity": 100815744, "ret": 0.82}, {"id": "v72", "ph": "b8d74129", "equity": 100815744, "ret": 0.82}, {"id": "v74", "ph": "35a8e955", "equity": 100815744, "ret": 0.82}, {"id": "v76", "ph": "178928cb", "equity": 100815744, "ret": 0.82}, {"id": "v78", "ph": "655e082d", "equity": 100815744, "ret": 0.82}, {"id": "v80", "ph": "b2d56c47", "equity": 100815744, "ret": 0.82}, {"id": "v84", "ph": "95794738", "equity": 100815744, "ret": 0.82}, {"id": "v86", "ph": "935c5a1c", "equity": 100815744, "ret": 0.82}, {"id": "v40", "ph": "70731d89", "equity": 100812655, "ret": 0.81}, {"id": "v42", "ph": "f36fddc6", "equity": 100812655, "ret": 0.81}, {"id": "v44", "ph": "364ea434", "equity": 100812655, "ret": 0.81}, {"id": "v22", "ph": "956b3b16", "equity": 100762741, "ret": 0.76}, {"id": "v24", "ph": "9beb8c05", "equity": 100762741, "ret": 0.76}, {"id": "v25", "ph": "00b59557", "equity": 100762741, "ret": 0.76}, {"id": "v79", "ph": "61b964d8", "equity": 100762741, "ret": 0.76}, {"id": "v83", "ph": "1b98a0fc", "equity": 100762741, "ret": 0.76}, {"id": "v85", "ph": "5ca17df0", "equity": 100762741, "ret": 0.76}, {"id": "v48", "ph": "18854c6a", "equity": 100477921, "ret": 0.48}, {"id": "v90", "ph": "86e09c47", "equity": 100477921, "ret": 0.48}, {"id": "v98", "ph": "266fc53f", "equity": 100477921, "ret": 0.48}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100477921, "ret": 0.48}, {"id": "v2", "ph": "bab0fc2c", "equity": 100463176, "ret": 0.46}, {"id": "v3", "ph": "81d17cca", "equity": 100463176, "ret": 0.46}, {"id": "v4", "ph": "b6219595", "equity": 100463176, "ret": 0.46}, {"id": "v39", "ph": "11c27236", "equity": 100463176, "ret": 0.46}, {"id": "v41", "ph": "e9d84e84", "equity": 100463176, "ret": 0.46}, {"id": "v43", "ph": "94ea3b53", "equity": 100463176, "ret": 0.46}, {"id": "v6", "ph": "e96ce9e2", "equity": 100248035, "ret": 0.25}, {"id": "v35", "ph": "6a183375", "equity": 100248035, "ret": 0.25}, {"id": "v47", "ph": "ed758fcf", "equity": 100248035, "ret": 0.25}, {"id": "v105", "ph": "88395429", "equity": 100248035, "ret": 0.25}, {"id": "v27", "ph": "33d43bc6", "equity": 100230107, "ret": 0.23}, {"id": "v31", "ph": "3dc99490", "equity": 100230107, "ret": 0.23}, {"id": "v89", "ph": "c49d5680", "equity": 100230107, "ret": 0.23}, {"id": "v97", "ph": "ebf31977", "equity": 100230107, "ret": 0.23}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}], "20260615": [{"id": "v62", "ph": "c6ddc17b", "equity": 101695590, "ret": 1.7}, {"id": "v64", "ph": "15b83273", "equity": 101695590, "ret": 1.7}, {"id": "v66", "ph": "db0e70a4", "equity": 101695590, "ret": 1.7}, {"id": "v68", "ph": "38c84625", "equity": 101110494, "ret": 1.11}, {"id": "v70", "ph": "6c4d4125", "equity": 101110494, "ret": 1.11}, {"id": "v72", "ph": "b8d74129", "equity": 101110494, "ret": 1.11}, {"id": "v74", "ph": "35a8e955", "equity": 101110494, "ret": 1.11}, {"id": "v76", "ph": "178928cb", "equity": 101110494, "ret": 1.11}, {"id": "v78", "ph": "655e082d", "equity": 101110494, "ret": 1.11}, {"id": "v80", "ph": "b2d56c47", "equity": 101110494, "ret": 1.11}, {"id": "v84", "ph": "95794738", "equity": 101110494, "ret": 1.11}, {"id": "v86", "ph": "935c5a1c", "equity": 101110494, "ret": 1.11}, {"id": "v40", "ph": "70731d89", "equity": 100878905, "ret": 0.88}, {"id": "v42", "ph": "f36fddc6", "equity": 100878905, "ret": 0.88}, {"id": "v44", "ph": "364ea434", "equity": 100878905, "ret": 0.88}, {"id": "v22", "ph": "956b3b16", "equity": 100808991, "ret": 0.81}, {"id": "v24", "ph": "9beb8c05", "equity": 100808991, "ret": 0.81}, {"id": "v25", "ph": "00b59557", "equity": 100808991, "ret": 0.81}, {"id": "v79", "ph": "61b964d8", "equity": 100808991, "ret": 0.81}, {"id": "v83", "ph": "1b98a0fc", "equity": 100808991, "ret": 0.81}, {"id": "v85", "ph": "5ca17df0", "equity": 100808991, "ret": 0.81}, {"id": "v2", "ph": "bab0fc2c", "equity": 100526926, "ret": 0.53}, {"id": "v3", "ph": "81d17cca", "equity": 100526926, "ret": 0.53}, {"id": "v4", "ph": "b6219595", "equity": 100526926, "ret": 0.53}, {"id": "v39", "ph": "11c27236", "equity": 100526926, "ret": 0.53}, {"id": "v41", "ph": "e9d84e84", "equity": 100526926, "ret": 0.53}, {"id": "v43", "ph": "94ea3b53", "equity": 100526926, "ret": 0.53}, {"id": "v48", "ph": "18854c6a", "equity": 100516671, "ret": 0.52}, {"id": "v90", "ph": "86e09c47", "equity": 100516671, "ret": 0.52}, {"id": "v98", "ph": "266fc53f", "equity": 100516671, "ret": 0.52}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100516671, "ret": 0.52}, {"id": "v6", "ph": "e96ce9e2", "equity": 100281785, "ret": 0.28}, {"id": "v35", "ph": "6a183375", "equity": 100281785, "ret": 0.28}, {"id": "v47", "ph": "ed758fcf", "equity": 100281785, "ret": 0.28}, {"id": "v105", "ph": "88395429", "equity": 100281785, "ret": 0.28}, {"id": "v27", "ph": "33d43bc6", "equity": 100261357, "ret": 0.26}, {"id": "v31", "ph": "3dc99490", "equity": 100261357, "ret": 0.26}, {"id": "v89", "ph": "c49d5680", "equity": 100261357, "ret": 0.26}, {"id": "v97", "ph": "ebf31977", "equity": 100261357, "ret": 0.26}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v13", "ph": "8dd96f86", "equity": 100000000, "ret": 0.0}, {"id": "v14", "ph": "71a9d284", "equity": 100000000, "ret": 0.0}, {"id": "v15", "ph": "df7ce821", "equity": 100000000, "ret": 0.0}, {"id": "v16", "ph": "6294a5b8", "equity": 100000000, "ret": 0.0}, {"id": "v17", "ph": "dd1d2c77", "equity": 100000000, "ret": 0.0}, {"id": "v18", "ph": "7c8fe03d", "equity": 100000000, "ret": 0.0}, {"id": "v19", "ph": "e36cfa41", "equity": 100000000, "ret": 0.0}, {"id": "v20", "ph": "2bc2ecf2", "equity": 100000000, "ret": 0.0}, {"id": "v21", "ph": "bcc12830", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v61", "ph": "6e870d25", "equity": 100000000, "ret": 0.0}, {"id": "v63", "ph": "9698b6a4", "equity": 100000000, "ret": 0.0}, {"id": "v65", "ph": "5b96fe5c", "equity": 100000000, "ret": 0.0}, {"id": "v67", "ph": "811c76b7", "equity": 100000000, "ret": 0.0}, {"id": "v69", "ph": "b896a0b0", "equity": 100000000, "ret": 0.0}, {"id": "v71", "ph": "900a188c", "equity": 100000000, "ret": 0.0}, {"id": "v73", "ph": "2d287be4", "equity": 100000000, "ret": 0.0}, {"id": "v75", "ph": "14f10e78", "equity": 100000000, "ret": 0.0}, {"id": "v77", "ph": "86dadea0", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v109", "ph": "4c69fc95", "equity": 100000000, "ret": 0.0}, {"id": "v110", "ph": "8164d748", "equity": 100000000, "ret": 0.0}, {"id": "v111", "ph": "826e3d17", "equity": 100000000, "ret": 0.0}, {"id": "v112", "ph": "4cd47646", "equity": 100000000, "ret": 0.0}, {"id": "v113", "ph": "5b43d0bc", "equity": 100000000, "ret": 0.0}, {"id": "v114", "ph": "8686c36c", "equity": 100000000, "ret": 0.0}, {"id": "v115", "ph": "e1790a5a", "equity": 100000000, "ret": 0.0}, {"id": "v116", "ph": "e73fef98", "equity": 100000000, "ret": 0.0}, {"id": "v117", "ph": "c4ae8a11", "equity": 100000000, "ret": 0.0}, {"id": "v118", "ph": "538b63b9", "equity": 100000000, "ret": 0.0}, {"id": "v119", "ph": "ed2208f1", "equity": 100000000, "ret": 0.0}, {"id": "v120", "ph": "d25ca8b0", "equity": 100000000, "ret": 0.0}, {"id": "v121", "ph": "ae8797c1", "equity": 100000000, "ret": 0.0}, {"id": "v122", "ph": "b12ecb8e", "equity": 100000000, "ret": 0.0}, {"id": "v123", "ph": "6ee459af", "equity": 100000000, "ret": 0.0}, {"id": "v124", "ph": "47d22489", "equity": 100000000, "ret": 0.0}, {"id": "v125", "ph": "d2cf659a", "equity": 100000000, "ret": 0.0}, {"id": "v126", "ph": "d9a13cde", "equity": 100000000, "ret": 0.0}, {"id": "v127", "ph": "eff26306", "equity": 100000000, "ret": 0.0}, {"id": "v128", "ph": "e9482821", "equity": 100000000, "ret": 0.0}, {"id": "v129", "ph": "58ddcc3c", "equity": 100000000, "ret": 0.0}, {"id": "v130", "ph": "e91870c6", "equity": 100000000, "ret": 0.0}, {"id": "v131", "ph": "5f8c7082", "equity": 100000000, "ret": 0.0}, {"id": "v132", "ph": "0945c49a", "equity": 100000000, "ret": 0.0}, {"id": "v133", "ph": "78be8034", "equity": 100000000, "ret": 0.0}, {"id": "v134", "ph": "afbb4ab8", "equity": 100000000, "ret": 0.0}, {"id": "v135", "ph": "53f4c78c", "equity": 100000000, "ret": 0.0}, {"id": "v136", "ph": "ceb32a66", "equity": 100000000, "ret": 0.0}, {"id": "v137", "ph": "60ec806f", "equity": 100000000, "ret": 0.0}, {"id": "v138", "ph": "e3acb223", "equity": 100000000, "ret": 0.0}, {"id": "v139", "ph": "cfbc79a5", "equity": 100000000, "ret": 0.0}, {"id": "v140", "ph": "52175b2b", "equity": 100000000, "ret": 0.0}, {"id": "v141", "ph": "47f30434", "equity": 100000000, "ret": 0.0}, {"id": "v142", "ph": "44fae695", "equity": 100000000, "ret": 0.0}, {"id": "v143", "ph": "5cf8f13a", "equity": 100000000, "ret": 0.0}, {"id": "v144", "ph": "6ffe4183", "equity": 100000000, "ret": 0.0}, {"id": "v145", "ph": "a89d85fc", "equity": 100000000, "ret": 0.0}, {"id": "v146", "ph": "071b9cb1", "equity": 100000000, "ret": 0.0}, {"id": "v147", "ph": "2fbeeedb", "equity": 100000000, "ret": 0.0}, {"id": "v148", "ph": "ada71802", "equity": 100000000, "ret": 0.0}, {"id": "v149", "ph": "c5329f8d", "equity": 100000000, "ret": 0.0}, {"id": "v150", "ph": "be41b974", "equity": 100000000, "ret": 0.0}, {"id": "v151", "ph": "2eb1dd06", "equity": 100000000, "ret": 0.0}, {"id": "v152", "ph": "5d2df346", "equity": 100000000, "ret": 0.0}, {"id": "v153", "ph": "49fd09d9", "equity": 100000000, "ret": 0.0}, {"id": "v154", "ph": "7a3a7788", "equity": 100000000, "ret": 0.0}, {"id": "v155", "ph": "31c0d84e", "equity": 100000000, "ret": 0.0}, {"id": "v156", "ph": "3f7bcd1b", "equity": 100000000, "ret": 0.0}, {"id": "v157", "ph": "80f3e23b", "equity": 100000000, "ret": 0.0}, {"id": "v158", "ph": "7e56eae3", "equity": 100000000, "ret": 0.0}, {"id": "v159", "ph": "af80c67a", "equity": 100000000, "ret": 0.0}, {"id": "v160", "ph": "b03f5295", "equity": 100000000, "ret": 0.0}, {"id": "v161", "ph": "ed5677e6", "equity": 100000000, "ret": 0.0}, {"id": "v162", "ph": "b8f71c74", "equity": 100000000, "ret": 0.0}, {"id": "v163", "ph": "452ab819", "equity": 100000000, "ret": 0.0}, {"id": "v164", "ph": "331cec1f", "equity": 100000000, "ret": 0.0}, {"id": "v165", "ph": "8f862b27", "equity": 100000000, "ret": 0.0}, {"id": "v166", "ph": "f684401e", "equity": 100000000, "ret": 0.0}, {"id": "v167", "ph": "b6d6aed8", "equity": 100000000, "ret": 0.0}, {"id": "v168", "ph": "81099b26", "equity": 100000000, "ret": 0.0}, {"id": "v169", "ph": "d595e4fb", "equity": 100000000, "ret": 0.0}, {"id": "v170", "ph": "afd652fd", "equity": 100000000, "ret": 0.0}, {"id": "v171", "ph": "faa4e138", "equity": 100000000, "ret": 0.0}, {"id": "v172", "ph": "98d8acda", "equity": 100000000, "ret": 0.0}, {"id": "v173", "ph": "2ea88e58", "equity": 100000000, "ret": 0.0}, {"id": "v174", "ph": "d8b7e234", "equity": 100000000, "ret": 0.0}, {"id": "v175", "ph": "9b6b3d9c", "equity": 100000000, "ret": 0.0}, {"id": "v176", "ph": "b710fab4", "equity": 100000000, "ret": 0.0}, {"id": "v177", "ph": "87955d67", "equity": 100000000, "ret": 0.0}, {"id": "v178", "ph": "b7ad4c2d", "equity": 100000000, "ret": 0.0}, {"id": "v179", "ph": "bedf0e90", "equity": 100000000, "ret": 0.0}, {"id": "v180", "ph": "4e41501e", "equity": 100000000, "ret": 0.0}, {"id": "v181", "ph": "4614bd55", "equity": 100000000, "ret": 0.0}, {"id": "v182", "ph": "9a4e525e", "equity": 100000000, "ret": 0.0}, {"id": "v183", "ph": "84faca4b", "equity": 100000000, "ret": 0.0}, {"id": "v184", "ph": "3b78ae9c", "equity": 100000000, "ret": 0.0}, {"id": "v185", "ph": "6b7399b9", "equity": 100000000, "ret": 0.0}, {"id": "v186", "ph": "898d23ea", "equity": 100000000, "ret": 0.0}, {"id": "v187", "ph": "7a03131d", "equity": 100000000, "ret": 0.0}, {"id": "v188", "ph": "29798ffd", "equity": 100000000, "ret": 0.0}, {"id": "v189", "ph": "dfdbd0c8", "equity": 100000000, "ret": 0.0}, {"id": "v190", "ph": "e14af339", "equity": 100000000, "ret": 0.0}, {"id": "v191", "ph": "9bb12946", "equity": 100000000, "ret": 0.0}, {"id": "v192", "ph": "96fbbd1c", "equity": 100000000, "ret": 0.0}, {"id": "v193", "ph": "5dd1f4df", "equity": 100000000, "ret": 0.0}, {"id": "v194", "ph": "31aada19", "equity": 100000000, "ret": 0.0}, {"id": "v195", "ph": "dd89cf59", "equity": 100000000, "ret": 0.0}, {"id": "v196", "ph": "a44aeef1", "equity": 100000000, "ret": 0.0}, {"id": "v197", "ph": "5c290a32", "equity": 100000000, "ret": 0.0}, {"id": "v198", "ph": "ffd1ee88", "equity": 100000000, "ret": 0.0}, {"id": "v199", "ph": "390bfab3", "equity": 100000000, "ret": 0.0}, {"id": "v200", "ph": "8bbb6ec7", "equity": 100000000, "ret": 0.0}, {"id": "v201", "ph": "cb8a413e", "equity": 100000000, "ret": 0.0}, {"id": "v202", "ph": "a528b806", "equity": 100000000, "ret": 0.0}, {"id": "v203", "ph": "2071defa", "equity": 100000000, "ret": 0.0}, {"id": "v204", "ph": "434e2f7a", "equity": 100000000, "ret": 0.0}, {"id": "v205", "ph": "02e5a3f5", "equity": 100000000, "ret": 0.0}, {"id": "v206", "ph": "16f62ab7", "equity": 100000000, "ret": 0.0}, {"id": "v207", "ph": "0f6601a0", "equity": 100000000, "ret": 0.0}, {"id": "v208", "ph": "445623de", "equity": 100000000, "ret": 0.0}, {"id": "v209", "ph": "8730802d", "equity": 100000000, "ret": 0.0}, {"id": "v210", "ph": "6f533a9b", "equity": 100000000, "ret": 0.0}, {"id": "v211", "ph": "9227673c", "equity": 100000000, "ret": 0.0}, {"id": "v212", "ph": "b9e1e8d1", "equity": 100000000, "ret": 0.0}, {"id": "v213", "ph": "0e1d8e45", "equity": 100000000, "ret": 0.0}, {"id": "v214", "ph": "0fb624bf", "equity": 100000000, "ret": 0.0}, {"id": "v215", "ph": "a904a49d", "equity": 100000000, "ret": 0.0}, {"id": "v216", "ph": "ee298bd3", "equity": 100000000, "ret": 0.0}, {"id": "v217", "ph": "4c547a61", "equity": 100000000, "ret": 0.0}, {"id": "v218", "ph": "7304d2d4", "equity": 100000000, "ret": 0.0}, {"id": "v219", "ph": "426d3834", "equity": 100000000, "ret": 0.0}, {"id": "v220", "ph": "565c27a7", "equity": 100000000, "ret": 0.0}, {"id": "v221", "ph": "cd2eef94", "equity": 100000000, "ret": 0.0}, {"id": "v222", "ph": "55de9eca", "equity": 100000000, "ret": 0.0}, {"id": "v223", "ph": "b57356b8", "equity": 100000000, "ret": 0.0}, {"id": "v224", "ph": "888ab069", "equity": 100000000, "ret": 0.0}, {"id": "v225", "ph": "e9f40f62", "equity": 100000000, "ret": 0.0}, {"id": "v226", "ph": "98fd37a4", "equity": 100000000, "ret": 0.0}, {"id": "v227", "ph": "9454b07a", "equity": 100000000, "ret": 0.0}, {"id": "v228", "ph": "caa54387", "equity": 100000000, "ret": 0.0}, {"id": "v229", "ph": "d9261dfb", "equity": 100000000, "ret": 0.0}, {"id": "v230", "ph": "141579fe", "equity": 100000000, "ret": 0.0}, {"id": "v231", "ph": "cd9469fa", "equity": 100000000, "ret": 0.0}, {"id": "v232", "ph": "6de1fffa", "equity": 100000000, "ret": 0.0}, {"id": "v233", "ph": "941006e0", "equity": 100000000, "ret": 0.0}, {"id": "v234", "ph": "9a289d18", "equity": 100000000, "ret": 0.0}, {"id": "v235", "ph": "3e6c1666", "equity": 100000000, "ret": 0.0}, {"id": "v236", "ph": "f9c75560", "equity": 100000000, "ret": 0.0}, {"id": "v237", "ph": "a10d68cf", "equity": 100000000, "ret": 0.0}, {"id": "v238", "ph": "f1a74611", "equity": 100000000, "ret": 0.0}, {"id": "v239", "ph": "96e693c4", "equity": 100000000, "ret": 0.0}, {"id": "v240", "ph": "db1869eb", "equity": 100000000, "ret": 0.0}, {"id": "v241", "ph": "52162002", "equity": 100000000, "ret": 0.0}, {"id": "v242", "ph": "e6c70cac", "equity": 100000000, "ret": 0.0}, {"id": "v243", "ph": "fa7a545a", "equity": 100000000, "ret": 0.0}, {"id": "v244", "ph": "520c5a65", "equity": 100000000, "ret": 0.0}, {"id": "v245", "ph": "ac84324f", "equity": 100000000, "ret": 0.0}, {"id": "v246", "ph": "618ddf71", "equity": 100000000, "ret": 0.0}, {"id": "v247", "ph": "ba973fa6", "equity": 100000000, "ret": 0.0}, {"id": "v248", "ph": "9ca5e3dc", "equity": 100000000, "ret": 0.0}, {"id": "v249", "ph": "36a32ca0", "equity": 100000000, "ret": 0.0}, {"id": "v250", "ph": "b37976b8", "equity": 100000000, "ret": 0.0}, {"id": "v251", "ph": "8c5a06da", "equity": 100000000, "ret": 0.0}, {"id": "v252", "ph": "381a65d1", "equity": 100000000, "ret": 0.0}, {"id": "v253", "ph": "87bd57d6", "equity": 100000000, "ret": 0.0}, {"id": "v254", "ph": "75e53118", "equity": 100000000, "ret": 0.0}, {"id": "v255", "ph": "92e3c5e0", "equity": 100000000, "ret": 0.0}, {"id": "v256", "ph": "e583f1dd", "equity": 100000000, "ret": 0.0}, {"id": "v257", "ph": "7fa33f5b", "equity": 100000000, "ret": 0.0}, {"id": "v258", "ph": "0b19bb06", "equity": 100000000, "ret": 0.0}, {"id": "v259", "ph": "178a1fe3", "equity": 100000000, "ret": 0.0}, {"id": "v260", "ph": "bab317db", "equity": 100000000, "ret": 0.0}, {"id": "v261", "ph": "965786e6", "equity": 100000000, "ret": 0.0}, {"id": "v262", "ph": "e07faa54", "equity": 100000000, "ret": 0.0}, {"id": "v263", "ph": "ca392811", "equity": 100000000, "ret": 0.0}, {"id": "v264", "ph": "8c65e60d", "equity": 100000000, "ret": 0.0}, {"id": "v265", "ph": "7faed59d", "equity": 100000000, "ret": 0.0}, {"id": "v266", "ph": "c133b585", "equity": 100000000, "ret": 0.0}, {"id": "v267", "ph": "766c47d7", "equity": 100000000, "ret": 0.0}, {"id": "v268", "ph": "9736502d", "equity": 100000000, "ret": 0.0}, {"id": "v269", "ph": "c0c861c4", "equity": 100000000, "ret": 0.0}, {"id": "v270", "ph": "1ce9fd2b", "equity": 100000000, "ret": 0.0}, {"id": "v271", "ph": "2b9ccdcd", "equity": 100000000, "ret": 0.0}, {"id": "v272", "ph": "2ed2027f", "equity": 100000000, "ret": 0.0}, {"id": "v273", "ph": "c726e8d5", "equity": 100000000, "ret": 0.0}, {"id": "v274", "ph": "62b011c8", "equity": 100000000, "ret": 0.0}, {"id": "v275", "ph": "3ebf0d91", "equity": 100000000, "ret": 0.0}, {"id": "v276", "ph": "51425eab", "equity": 100000000, "ret": 0.0}, {"id": "v277", "ph": "488b612a", "equity": 100000000, "ret": 0.0}, {"id": "v278", "ph": "861fb42b", "equity": 100000000, "ret": 0.0}, {"id": "v279", "ph": "37e203bb", "equity": 100000000, "ret": 0.0}, {"id": "v280", "ph": "60411037", "equity": 100000000, "ret": 0.0}, {"id": "v281", "ph": "7d9e5a9d", "equity": 100000000, "ret": 0.0}, {"id": "v282", "ph": "9ddd111d", "equity": 100000000, "ret": 0.0}, {"id": "v283", "ph": "479e4b25", "equity": 100000000, "ret": 0.0}, {"id": "v284", "ph": "261c5d58", "equity": 100000000, "ret": 0.0}, {"id": "v285", "ph": "962e35cd", "equity": 100000000, "ret": 0.0}, {"id": "v286", "ph": "4f6101e9", "equity": 100000000, "ret": 0.0}, {"id": "v287", "ph": "3bf14815", "equity": 100000000, "ret": 0.0}, {"id": "v288", "ph": "1c732194", "equity": 100000000, "ret": 0.0}], "20260616": [{"id": "v40", "ph": "70731d89", "equity": 100839155, "ret": 0.84}, {"id": "v42", "ph": "f36fddc6", "equity": 100839155, "ret": 0.84}, {"id": "v44", "ph": "364ea434", "equity": 100839155, "ret": 0.84}, {"id": "v2", "ph": "bab0fc2c", "equity": 100488676, "ret": 0.49}, {"id": "v3", "ph": "81d17cca", "equity": 100488676, "ret": 0.49}, {"id": "v4", "ph": "b6219595", "equity": 100488676, "ret": 0.49}, {"id": "v39", "ph": "11c27236", "equity": 100488676, "ret": 0.49}, {"id": "v41", "ph": "e9d84e84", "equity": 100488676, "ret": 0.49}, {"id": "v43", "ph": "94ea3b53", "equity": 100488676, "ret": 0.49}, {"id": "v48", "ph": "18854c6a", "equity": 100493421, "ret": 0.49}, {"id": "v90", "ph": "86e09c47", "equity": 100493421, "ret": 0.49}, {"id": "v98", "ph": "266fc53f", "equity": 100493421, "ret": 0.49}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100493421, "ret": 0.49}, {"id": "v6", "ph": "e96ce9e2", "equity": 100261535, "ret": 0.26}, {"id": "v35", "ph": "6a183375", "equity": 100261535, "ret": 0.26}, {"id": "v47", "ph": "ed758fcf", "equity": 100261535, "ret": 0.26}, {"id": "v105", "ph": "88395429", "equity": 100261535, "ret": 0.26}, {"id": "v27", "ph": "33d43bc6", "equity": 100242607, "ret": 0.24}, {"id": "v31", "ph": "3dc99490", "equity": 100242607, "ret": 0.24}, {"id": "v89", "ph": "c49d5680", "equity": 100242607, "ret": 0.24}, {"id": "v97", "ph": "ebf31977", "equity": 100242607, "ret": 0.24}, {"id": "v1", "ph": "4874f4c9", "equity": 100000000, "ret": 0.0}, {"id": "v5", "ph": "ec2eb05a", "equity": 100000000, "ret": 0.0}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 100000000, "ret": 0.0}, {"id": "v10", "ph": "e48c1012", "equity": 100000000, "ret": 0.0}, {"id": "v11", "ph": "e4bb2e3e", "equity": 100000000, "ret": 0.0}, {"id": "v12", "ph": "f166fb0e", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v26", "ph": "2e5f3fac", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v29", "ph": "e46149f5", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v32", "ph": "153055e6", "equity": 100000000, "ret": 0.0}, {"id": "v33", "ph": "97ad2410", "equity": 100000000, "ret": 0.0}, {"id": "v34", "ph": "d77f522d", "equity": 100000000, "ret": 0.0}, {"id": "v36", "ph": "feebff1a", "equity": 100000000, "ret": 0.0}, {"id": "v37", "ph": "fb2247aa", "equity": 100000000, "ret": 0.0}, {"id": "v38", "ph": "9b9083ae", "equity": 100000000, "ret": 0.0}, {"id": "v45", "ph": "964276a8", "equity": 100000000, "ret": 0.0}, {"id": "v46", "ph": "7dc0e360", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v53", "ph": "2391ee16", "equity": 100000000, "ret": 0.0}, {"id": "v54", "ph": "b975742e", "equity": 100000000, "ret": 0.0}, {"id": "v55", "ph": "2c44de9b", "equity": 100000000, "ret": 0.0}, {"id": "v56", "ph": "5d99704f", "equity": 100000000, "ret": 0.0}, {"id": "v57", "ph": "e7e98b6d", "equity": 100000000, "ret": 0.0}, {"id": "v58", "ph": "f1e52f55", "equity": 100000000, "ret": 0.0}, {"id": "v59", "ph": "1858e2ec", "equity": 100000000, "ret": 0.0}, {"id": "v60", "ph": "52560b06", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v87", "ph": "c0be98c0", "equity": 100000000, "ret": 0.0}, {"id": "v88", "ph": "733579ce", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v93", "ph": "f10d4e45", "equity": 100000000, "ret": 0.0}, {"id": "v94", "ph": "3e5d6b8a", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v99", "ph": "fb39409b", "equity": 100000000, "ret": 0.0}, {"id": "v100", "ph": "ffa9571a", "equity": 100000000, "ret": 0.0}, {"id": "v101", "ph": "c4354346", "equity": 100000000, "ret": 0.0}, {"id": "v102", "ph": "e1601afe", "equity": 100000000, "ret": 0.0}, {"id": "v103", "ph": "75b0a37c", "equity": 100000000, "ret": 0.0}, {"id": "v104", "ph": "013c3fde", "equity": 100000000, "ret": 0.0}, {"id": "v107", "ph": "be5cd36b", "equity": 100000000, "ret": 0.0}, {"id": "v108", "ph": "67a6679a", "equity": 100000000, "ret": 0.0}, {"id": "v109", "ph": "4c69fc95", "equity": 100000000, "ret": 0.0}, {"id": "v110", "ph": "8164d748", "equity": 100000000, "ret": 0.0}, {"id": "v111", "ph": "826e3d17", "equity": 100000000, "ret": 0.0}, {"id": "v112", "ph": "4cd47646", "equity": 100000000, "ret": 0.0}, {"id": "v113", "ph": "5b43d0bc", "equity": 100000000, "ret": 0.0}, {"id": "v114", "ph": "8686c36c", "equity": 100000000, "ret": 0.0}, {"id": "v115", "ph": "e1790a5a", "equity": 100000000, "ret": 0.0}, {"id": "v116", "ph": "e73fef98", "equity": 100000000, "ret": 0.0}, {"id": "v117", "ph": "c4ae8a11", "equity": 100000000, "ret": 0.0}, {"id": "v118", "ph": "538b63b9", "equity": 100000000, "ret": 0.0}, {"id": "v119", "ph": "ed2208f1", "equity": 100000000, "ret": 0.0}, {"id": "v120", "ph": "d25ca8b0", "equity": 100000000, "ret": 0.0}, {"id": "v131", "ph": "5f8c7082", "equity": 100000000, "ret": 0.0}, {"id": "v134", "ph": "afbb4ab8", "equity": 100000000, "ret": 0.0}, {"id": "v135", "ph": "53f4c78c", "equity": 100000000, "ret": 0.0}, {"id": "v136", "ph": "ceb32a66", "equity": 100000000, "ret": 0.0}, {"id": "v137", "ph": "60ec806f", "equity": 100000000, "ret": 0.0}, {"id": "v138", "ph": "e3acb223", "equity": 100000000, "ret": 0.0}, {"id": "v139", "ph": "cfbc79a5", "equity": 100000000, "ret": 0.0}, {"id": "v140", "ph": "52175b2b", "equity": 100000000, "ret": 0.0}, {"id": "v141", "ph": "47f30434", "equity": 100000000, "ret": 0.0}, {"id": "v142", "ph": "44fae695", "equity": 100000000, "ret": 0.0}, {"id": "v143", "ph": "5cf8f13a", "equity": 100000000, "ret": 0.0}, {"id": "v144", "ph": "6ffe4183", "equity": 100000000, "ret": 0.0}, {"id": "v145", "ph": "a89d85fc", "equity": 100000000, "ret": 0.0}, {"id": "v146", "ph": "071b9cb1", "equity": 100000000, "ret": 0.0}, {"id": "v147", "ph": "2fbeeedb", "equity": 100000000, "ret": 0.0}, {"id": "v148", "ph": "ada71802", "equity": 100000000, "ret": 0.0}, {"id": "v149", "ph": "c5329f8d", "equity": 100000000, "ret": 0.0}, {"id": "v150", "ph": "be41b974", "equity": 100000000, "ret": 0.0}, {"id": "v151", "ph": "2eb1dd06", "equity": 100000000, "ret": 0.0}, {"id": "v152", "ph": "5d2df346", "equity": 100000000, "ret": 0.0}, {"id": "v153", "ph": "49fd09d9", "equity": 100000000, "ret": 0.0}, {"id": "v154", "ph": "7a3a7788", "equity": 100000000, "ret": 0.0}, {"id": "v155", "ph": "31c0d84e", "equity": 100000000, "ret": 0.0}, {"id": "v156", "ph": "3f7bcd1b", "equity": 100000000, "ret": 0.0}, {"id": "v157", "ph": "80f3e23b", "equity": 100000000, "ret": 0.0}, {"id": "v158", "ph": "7e56eae3", "equity": 100000000, "ret": 0.0}, {"id": "v159", "ph": "af80c67a", "equity": 100000000, "ret": 0.0}, {"id": "v160", "ph": "b03f5295", "equity": 100000000, "ret": 0.0}, {"id": "v161", "ph": "ed5677e6", "equity": 100000000, "ret": 0.0}, {"id": "v162", "ph": "b8f71c74", "equity": 100000000, "ret": 0.0}, {"id": "v163", "ph": "452ab819", "equity": 100000000, "ret": 0.0}, {"id": "v164", "ph": "331cec1f", "equity": 100000000, "ret": 0.0}, {"id": "v165", "ph": "8f862b27", "equity": 100000000, "ret": 0.0}, {"id": "v166", "ph": "f684401e", "equity": 100000000, "ret": 0.0}, {"id": "v167", "ph": "b6d6aed8", "equity": 100000000, "ret": 0.0}, {"id": "v168", "ph": "81099b26", "equity": 100000000, "ret": 0.0}, {"id": "v189", "ph": "dfdbd0c8", "equity": 100000000, "ret": 0.0}, {"id": "v190", "ph": "e14af339", "equity": 100000000, "ret": 0.0}, {"id": "v195", "ph": "dd89cf59", "equity": 100000000, "ret": 0.0}, {"id": "v196", "ph": "a44aeef1", "equity": 100000000, "ret": 0.0}, {"id": "v197", "ph": "5c290a32", "equity": 100000000, "ret": 0.0}, {"id": "v198", "ph": "ffd1ee88", "equity": 100000000, "ret": 0.0}, {"id": "v199", "ph": "390bfab3", "equity": 100000000, "ret": 0.0}, {"id": "v200", "ph": "8bbb6ec7", "equity": 100000000, "ret": 0.0}, {"id": "v201", "ph": "cb8a413e", "equity": 100000000, "ret": 0.0}, {"id": "v202", "ph": "a528b806", "equity": 100000000, "ret": 0.0}, {"id": "v203", "ph": "2071defa", "equity": 100000000, "ret": 0.0}, {"id": "v204", "ph": "434e2f7a", "equity": 100000000, "ret": 0.0}, {"id": "v205", "ph": "02e5a3f5", "equity": 100000000, "ret": 0.0}, {"id": "v206", "ph": "16f62ab7", "equity": 100000000, "ret": 0.0}, {"id": "v207", "ph": "0f6601a0", "equity": 100000000, "ret": 0.0}, {"id": "v208", "ph": "445623de", "equity": 100000000, "ret": 0.0}, {"id": "v209", "ph": "8730802d", "equity": 100000000, "ret": 0.0}, {"id": "v210", "ph": "6f533a9b", "equity": 100000000, "ret": 0.0}, {"id": "v211", "ph": "9227673c", "equity": 100000000, "ret": 0.0}, {"id": "v212", "ph": "b9e1e8d1", "equity": 100000000, "ret": 0.0}, {"id": "v213", "ph": "0e1d8e45", "equity": 100000000, "ret": 0.0}, {"id": "v214", "ph": "0fb624bf", "equity": 100000000, "ret": 0.0}, {"id": "v215", "ph": "a904a49d", "equity": 100000000, "ret": 0.0}, {"id": "v216", "ph": "ee298bd3", "equity": 100000000, "ret": 0.0}, {"id": "v217", "ph": "4c547a61", "equity": 100000000, "ret": 0.0}, {"id": "v218", "ph": "7304d2d4", "equity": 100000000, "ret": 0.0}, {"id": "v219", "ph": "426d3834", "equity": 100000000, "ret": 0.0}, {"id": "v220", "ph": "565c27a7", "equity": 100000000, "ret": 0.0}, {"id": "v221", "ph": "cd2eef94", "equity": 100000000, "ret": 0.0}, {"id": "v222", "ph": "55de9eca", "equity": 100000000, "ret": 0.0}, {"id": "v223", "ph": "b57356b8", "equity": 100000000, "ret": 0.0}, {"id": "v224", "ph": "888ab069", "equity": 100000000, "ret": 0.0}, {"id": "v225", "ph": "e9f40f62", "equity": 100000000, "ret": 0.0}, {"id": "v226", "ph": "98fd37a4", "equity": 100000000, "ret": 0.0}, {"id": "v227", "ph": "9454b07a", "equity": 100000000, "ret": 0.0}, {"id": "v228", "ph": "caa54387", "equity": 100000000, "ret": 0.0}, {"id": "v229", "ph": "d9261dfb", "equity": 100000000, "ret": 0.0}, {"id": "v230", "ph": "141579fe", "equity": 100000000, "ret": 0.0}, {"id": "v231", "ph": "cd9469fa", "equity": 100000000, "ret": 0.0}, {"id": "v232", "ph": "6de1fffa", "equity": 100000000, "ret": 0.0}, {"id": "v233", "ph": "941006e0", "equity": 100000000, "ret": 0.0}, {"id": "v234", "ph": "9a289d18", "equity": 100000000, "ret": 0.0}, {"id": "v235", "ph": "3e6c1666", "equity": 100000000, "ret": 0.0}, {"id": "v236", "ph": "f9c75560", "equity": 100000000, "ret": 0.0}, {"id": "v237", "ph": "a10d68cf", "equity": 100000000, "ret": 0.0}, {"id": "v238", "ph": "f1a74611", "equity": 100000000, "ret": 0.0}, {"id": "v239", "ph": "96e693c4", "equity": 100000000, "ret": 0.0}, {"id": "v240", "ph": "db1869eb", "equity": 100000000, "ret": 0.0}, {"id": "v241", "ph": "52162002", "equity": 100000000, "ret": 0.0}, {"id": "v242", "ph": "e6c70cac", "equity": 100000000, "ret": 0.0}, {"id": "v243", "ph": "fa7a545a", "equity": 100000000, "ret": 0.0}, {"id": "v244", "ph": "520c5a65", "equity": 100000000, "ret": 0.0}, {"id": "v245", "ph": "ac84324f", "equity": 100000000, "ret": 0.0}, {"id": "v246", "ph": "618ddf71", "equity": 100000000, "ret": 0.0}, {"id": "v247", "ph": "ba973fa6", "equity": 100000000, "ret": 0.0}, {"id": "v248", "ph": "9ca5e3dc", "equity": 100000000, "ret": 0.0}, {"id": "v249", "ph": "36a32ca0", "equity": 100000000, "ret": 0.0}, {"id": "v250", "ph": "b37976b8", "equity": 100000000, "ret": 0.0}, {"id": "v251", "ph": "8c5a06da", "equity": 100000000, "ret": 0.0}, {"id": "v252", "ph": "381a65d1", "equity": 100000000, "ret": 0.0}, {"id": "v253", "ph": "87bd57d6", "equity": 100000000, "ret": 0.0}, {"id": "v254", "ph": "75e53118", "equity": 100000000, "ret": 0.0}, {"id": "v255", "ph": "92e3c5e0", "equity": 100000000, "ret": 0.0}, {"id": "v256", "ph": "e583f1dd", "equity": 100000000, "ret": 0.0}, {"id": "v257", "ph": "7fa33f5b", "equity": 100000000, "ret": 0.0}, {"id": "v258", "ph": "0b19bb06", "equity": 100000000, "ret": 0.0}, {"id": "v259", "ph": "178a1fe3", "equity": 100000000, "ret": 0.0}, {"id": "v260", "ph": "bab317db", "equity": 100000000, "ret": 0.0}, {"id": "v261", "ph": "965786e6", "equity": 100000000, "ret": 0.0}, {"id": "v262", "ph": "e07faa54", "equity": 100000000, "ret": 0.0}, {"id": "v263", "ph": "ca392811", "equity": 100000000, "ret": 0.0}, {"id": "v264", "ph": "8c65e60d", "equity": 100000000, "ret": 0.0}, {"id": "v265", "ph": "7faed59d", "equity": 100000000, "ret": 0.0}, {"id": "v266", "ph": "c133b585", "equity": 100000000, "ret": 0.0}, {"id": "v267", "ph": "766c47d7", "equity": 100000000, "ret": 0.0}, {"id": "v268", "ph": "9736502d", "equity": 100000000, "ret": 0.0}, {"id": "v269", "ph": "c0c861c4", "equity": 100000000, "ret": 0.0}, {"id": "v270", "ph": "1ce9fd2b", "equity": 100000000, "ret": 0.0}, {"id": "v271", "ph": "2b9ccdcd", "equity": 100000000, "ret": 0.0}, {"id": "v272", "ph": "2ed2027f", "equity": 100000000, "ret": 0.0}, {"id": "v273", "ph": "c726e8d5", "equity": 100000000, "ret": 0.0}, {"id": "v274", "ph": "62b011c8", "equity": 100000000, "ret": 0.0}, {"id": "v275", "ph": "3ebf0d91", "equity": 100000000, "ret": 0.0}, {"id": "v276", "ph": "51425eab", "equity": 100000000, "ret": 0.0}, {"id": "v277", "ph": "488b612a", "equity": 100000000, "ret": 0.0}, {"id": "v278", "ph": "861fb42b", "equity": 100000000, "ret": 0.0}, {"id": "v279", "ph": "37e203bb", "equity": 100000000, "ret": 0.0}, {"id": "v280", "ph": "60411037", "equity": 100000000, "ret": 0.0}, {"id": "v281", "ph": "7d9e5a9d", "equity": 100000000, "ret": 0.0}, {"id": "v282", "ph": "9ddd111d", "equity": 100000000, "ret": 0.0}, {"id": "v283", "ph": "479e4b25", "equity": 100000000, "ret": 0.0}, {"id": "v284", "ph": "261c5d58", "equity": 100000000, "ret": 0.0}, {"id": "v285", "ph": "962e35cd", "equity": 100000000, "ret": 0.0}, {"id": "v286", "ph": "4f6101e9", "equity": 100000000, "ret": 0.0}, {"id": "v287", "ph": "3bf14815", "equity": 100000000, "ret": 0.0}, {"id": "v288", "ph": "1c732194", "equity": 100000000, "ret": 0.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 100000000, "ret": 0.0}, {"id": "v301", "ph": "30da2021", "equity": 100000000, "ret": 0.0}, {"id": "v302", "ph": "3f30502d", "equity": 100000000, "ret": 0.0}, {"id": "v303", "ph": "1a084164", "equity": 100000000, "ret": 0.0}, {"id": "v296", "ph": "4c554378", "equity": 99588927, "ret": -0.41}, {"id": "v298", "ph": "5d4bbec0", "equity": 99481601, "ret": -0.52}, {"id": "v299", "ph": "25046b1a", "equity": 98593265, "ret": -1.41}], "20260617": [{"id": "v40", "ph": "70731d89", "equity": 100652033, "ret": 0.65}, {"id": "v42", "ph": "f36fddc6", "equity": 100652033, "ret": 0.65}, {"id": "v44", "ph": "364ea434", "equity": 100652033, "ret": 0.65}, {"id": "v48", "ph": "18854c6a", "equity": 100383529, "ret": 0.38}, {"id": "v90", "ph": "86e09c47", "equity": 100383642, "ret": 0.38}, {"id": "v98", "ph": "266fc53f", "equity": 100383642, "ret": 0.38}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100383529, "ret": 0.38}, {"id": "v2", "ph": "bab0fc2c", "equity": 100309506, "ret": 0.31}, {"id": "v3", "ph": "81d17cca", "equity": 100309506, "ret": 0.31}, {"id": "v4", "ph": "b6219595", "equity": 100309506, "ret": 0.31}, {"id": "v39", "ph": "11c27236", "equity": 100309506, "ret": 0.31}, {"id": "v41", "ph": "e9d84e84", "equity": 100309506, "ret": 0.31}, {"id": "v43", "ph": "94ea3b53", "equity": 100309506, "ret": 0.31}, {"id": "v6", "ph": "e96ce9e2", "equity": 100166592, "ret": 0.17}, {"id": "v35", "ph": "6a183375", "equity": 100166592, "ret": 0.17}, {"id": "v47", "ph": "ed758fcf", "equity": 100166592, "ret": 0.17}, {"id": "v105", "ph": "88395429", "equity": 100166592, "ret": 0.17}, {"id": "v27", "ph": "33d43bc6", "equity": 100154776, "ret": 0.15}, {"id": "v31", "ph": "3dc99490", "equity": 100154776, "ret": 0.15}, {"id": "v89", "ph": "c49d5680", "equity": 100154776, "ret": 0.15}, {"id": "v97", "ph": "ebf31977", "equity": 100154776, "ret": 0.15}, {"id": "v7", "ph": "de835eae", "equity": 100000000, "ret": 0.0}, {"id": "v8", "ph": "18c6740b", "equity": 100000000, "ret": 0.0}, {"id": "v23", "ph": "aec632b1", "equity": 100000000, "ret": 0.0}, {"id": "v28", "ph": "28e87677", "equity": 100000000, "ret": 0.0}, {"id": "v30", "ph": "df71f475", "equity": 100000000, "ret": 0.0}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v50", "ph": "690a50b5", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v52", "ph": "c1939d0b", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v82", "ph": "01847af6", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v92", "ph": "14a13097", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v96", "ph": "095b119f", "equity": 100000000, "ret": 0.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 99999065, "ret": -0.0}, {"id": "v302", "ph": "3f30502d", "equity": 100000000, "ret": 0.0}, {"id": "v9", "ph": "141268ab", "equity": 99870054, "ret": -0.13}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99870054, "ret": -0.13}, {"id": "v12", "ph": "f166fb0e", "equity": 99870054, "ret": -0.13}, {"id": "v26", "ph": "2e5f3fac", "equity": 99869724, "ret": -0.13}, {"id": "v29", "ph": "e46149f5", "equity": 99869724, "ret": -0.13}, {"id": "v32", "ph": "153055e6", "equity": 99870054, "ret": -0.13}, {"id": "v33", "ph": "97ad2410", "equity": 99870054, "ret": -0.13}, {"id": "v34", "ph": "d77f522d", "equity": 99869724, "ret": -0.13}, {"id": "v53", "ph": "2391ee16", "equity": 99870054, "ret": -0.13}, {"id": "v54", "ph": "b975742e", "equity": 99870054, "ret": -0.13}, {"id": "v57", "ph": "e7e98b6d", "equity": 99870054, "ret": -0.13}, {"id": "v58", "ph": "f1e52f55", "equity": 99870054, "ret": -0.13}, {"id": "v59", "ph": "1858e2ec", "equity": 99870054, "ret": -0.13}, {"id": "v60", "ph": "52560b06", "equity": 99870054, "ret": -0.13}, {"id": "v87", "ph": "c0be98c0", "equity": 99869724, "ret": -0.13}, {"id": "v88", "ph": "733579ce", "equity": 99868788, "ret": -0.13}, {"id": "v93", "ph": "f10d4e45", "equity": 99869724, "ret": -0.13}, {"id": "v94", "ph": "3e5d6b8a", "equity": 99868788, "ret": -0.13}, {"id": "v99", "ph": "fb39409b", "equity": 99870054, "ret": -0.13}, {"id": "v100", "ph": "ffa9571a", "equity": 99870054, "ret": -0.13}, {"id": "v101", "ph": "c4354346", "equity": 99870054, "ret": -0.13}, {"id": "v102", "ph": "e1601afe", "equity": 99870054, "ret": -0.13}, {"id": "v103", "ph": "75b0a37c", "equity": 99869724, "ret": -0.13}, {"id": "v104", "ph": "013c3fde", "equity": 99868788, "ret": -0.13}, {"id": "v117", "ph": "c4ae8a11", "equity": 99869288, "ret": -0.13}, {"id": "v119", "ph": "ed2208f1", "equity": 99869288, "ret": -0.13}, {"id": "v120", "ph": "d25ca8b0", "equity": 99869288, "ret": -0.13}, {"id": "v134", "ph": "afbb4ab8", "equity": 99868958, "ret": -0.13}, {"id": "v135", "ph": "53f4c78c", "equity": 99868958, "ret": -0.13}, {"id": "v136", "ph": "ceb32a66", "equity": 99869288, "ret": -0.13}, {"id": "v137", "ph": "60ec806f", "equity": 99868958, "ret": -0.13}, {"id": "v139", "ph": "cfbc79a5", "equity": 99868958, "ret": -0.13}, {"id": "v140", "ph": "52175b2b", "equity": 99869288, "ret": -0.13}, {"id": "v141", "ph": "47f30434", "equity": 99869288, "ret": -0.13}, {"id": "v142", "ph": "44fae695", "equity": 99868958, "ret": -0.13}, {"id": "v161", "ph": "ed5677e6", "equity": 99870054, "ret": -0.13}, {"id": "v162", "ph": "b8f71c74", "equity": 99869288, "ret": -0.13}, {"id": "v165", "ph": "8f862b27", "equity": 99870054, "ret": -0.13}, {"id": "v166", "ph": "f684401e", "equity": 99869288, "ret": -0.13}, {"id": "v167", "ph": "b6d6aed8", "equity": 99870054, "ret": -0.13}, {"id": "v168", "ph": "81099b26", "equity": 99869288, "ret": -0.13}, {"id": "v195", "ph": "dd89cf59", "equity": 99869724, "ret": -0.13}, {"id": "v196", "ph": "a44aeef1", "equity": 99868022, "ret": -0.13}, {"id": "v197", "ph": "5c290a32", "equity": 99869724, "ret": -0.13}, {"id": "v198", "ph": "ffd1ee88", "equity": 99868022, "ret": -0.13}, {"id": "v199", "ph": "390bfab3", "equity": 99870054, "ret": -0.13}, {"id": "v200", "ph": "8bbb6ec7", "equity": 99869288, "ret": -0.13}, {"id": "v201", "ph": "cb8a413e", "equity": 99869724, "ret": -0.13}, {"id": "v202", "ph": "a528b806", "equity": 99868022, "ret": -0.13}, {"id": "v205", "ph": "02e5a3f5", "equity": 99869724, "ret": -0.13}, {"id": "v206", "ph": "16f62ab7", "equity": 99868022, "ret": -0.13}, {"id": "v207", "ph": "0f6601a0", "equity": 99870054, "ret": -0.13}, {"id": "v208", "ph": "445623de", "equity": 99869288, "ret": -0.13}, {"id": "v209", "ph": "8730802d", "equity": 99870054, "ret": -0.13}, {"id": "v210", "ph": "6f533a9b", "equity": 99869288, "ret": -0.13}, {"id": "v211", "ph": "9227673c", "equity": 99869724, "ret": -0.13}, {"id": "v212", "ph": "b9e1e8d1", "equity": 99868022, "ret": -0.13}, {"id": "v217", "ph": "4c547a61", "equity": 99870054, "ret": -0.13}, {"id": "v218", "ph": "7304d2d4", "equity": 99870054, "ret": -0.13}, {"id": "v219", "ph": "426d3834", "equity": 99869288, "ret": -0.13}, {"id": "v220", "ph": "565c27a7", "equity": 99869288, "ret": -0.13}, {"id": "v221", "ph": "cd2eef94", "equity": 99869288, "ret": -0.13}, {"id": "v222", "ph": "55de9eca", "equity": 99869288, "ret": -0.13}, {"id": "v223", "ph": "b57356b8", "equity": 99870054, "ret": -0.13}, {"id": "v224", "ph": "888ab069", "equity": 99870054, "ret": -0.13}, {"id": "v225", "ph": "e9f40f62", "equity": 99869288, "ret": -0.13}, {"id": "v226", "ph": "98fd37a4", "equity": 99869288, "ret": -0.13}, {"id": "v227", "ph": "9454b07a", "equity": 99869288, "ret": -0.13}, {"id": "v228", "ph": "caa54387", "equity": 99869288, "ret": -0.13}, {"id": "v229", "ph": "d9261dfb", "equity": 99870054, "ret": -0.13}, {"id": "v230", "ph": "141579fe", "equity": 99870054, "ret": -0.13}, {"id": "v231", "ph": "cd9469fa", "equity": 99869288, "ret": -0.13}, {"id": "v232", "ph": "6de1fffa", "equity": 99869288, "ret": -0.13}, {"id": "v233", "ph": "941006e0", "equity": 99869288, "ret": -0.13}, {"id": "v234", "ph": "9a289d18", "equity": 99869288, "ret": -0.13}, {"id": "v235", "ph": "3e6c1666", "equity": 99870054, "ret": -0.13}, {"id": "v236", "ph": "f9c75560", "equity": 99870054, "ret": -0.13}, {"id": "v237", "ph": "a10d68cf", "equity": 99869288, "ret": -0.13}, {"id": "v238", "ph": "f1a74611", "equity": 99869288, "ret": -0.13}, {"id": "v239", "ph": "96e693c4", "equity": 99869288, "ret": -0.13}, {"id": "v240", "ph": "db1869eb", "equity": 99869288, "ret": -0.13}, {"id": "v265", "ph": "7faed59d", "equity": 99870054, "ret": -0.13}, {"id": "v266", "ph": "c133b585", "equity": 99870054, "ret": -0.13}, {"id": "v267", "ph": "766c47d7", "equity": 99869288, "ret": -0.13}, {"id": "v268", "ph": "9736502d", "equity": 99869288, "ret": -0.13}, {"id": "v269", "ph": "c0c861c4", "equity": 99869288, "ret": -0.13}, {"id": "v270", "ph": "1ce9fd2b", "equity": 99869288, "ret": -0.13}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99870054, "ret": -0.13}, {"id": "v272", "ph": "2ed2027f", "equity": 99870054, "ret": -0.13}, {"id": "v273", "ph": "c726e8d5", "equity": 99869288, "ret": -0.13}, {"id": "v274", "ph": "62b011c8", "equity": 99869288, "ret": -0.13}, {"id": "v275", "ph": "3ebf0d91", "equity": 99869288, "ret": -0.13}, {"id": "v276", "ph": "51425eab", "equity": 99869288, "ret": -0.13}, {"id": "v277", "ph": "488b612a", "equity": 99870054, "ret": -0.13}, {"id": "v278", "ph": "861fb42b", "equity": 99870054, "ret": -0.13}, {"id": "v279", "ph": "37e203bb", "equity": 99869288, "ret": -0.13}, {"id": "v280", "ph": "60411037", "equity": 99869288, "ret": -0.13}, {"id": "v281", "ph": "7d9e5a9d", "equity": 99869288, "ret": -0.13}, {"id": "v282", "ph": "9ddd111d", "equity": 99869288, "ret": -0.13}, {"id": "v283", "ph": "479e4b25", "equity": 99870054, "ret": -0.13}, {"id": "v284", "ph": "261c5d58", "equity": 99870054, "ret": -0.13}, {"id": "v285", "ph": "962e35cd", "equity": 99869288, "ret": -0.13}, {"id": "v286", "ph": "4f6101e9", "equity": 99869288, "ret": -0.13}, {"id": "v287", "ph": "3bf14815", "equity": 99869288, "ret": -0.13}, {"id": "v288", "ph": "1c732194", "equity": 99869288, "ret": -0.13}, {"id": "v301", "ph": "30da2021", "equity": 99870054, "ret": -0.13}, {"id": "v303", "ph": "1a084164", "equity": 99869305, "ret": -0.13}, {"id": "v1", "ph": "4874f4c9", "equity": 99839277, "ret": -0.16}, {"id": "v5", "ph": "ec2eb05a", "equity": 99839277, "ret": -0.16}, {"id": "v10", "ph": "e48c1012", "equity": 99839277, "ret": -0.16}, {"id": "v36", "ph": "feebff1a", "equity": 99838834, "ret": -0.16}, {"id": "v37", "ph": "fb2247aa", "equity": 99839277, "ret": -0.16}, {"id": "v38", "ph": "9b9083ae", "equity": 99839277, "ret": -0.16}, {"id": "v45", "ph": "964276a8", "equity": 99839277, "ret": -0.16}, {"id": "v46", "ph": "7dc0e360", "equity": 99839277, "ret": -0.16}, {"id": "v55", "ph": "2c44de9b", "equity": 99839277, "ret": -0.16}, {"id": "v56", "ph": "5d99704f", "equity": 99839277, "ret": -0.16}, {"id": "v107", "ph": "be5cd36b", "equity": 99838834, "ret": -0.16}, {"id": "v108", "ph": "67a6679a", "equity": 99837901, "ret": -0.16}, {"id": "v109", "ph": "4c69fc95", "equity": 99838342, "ret": -0.16}, {"id": "v110", "ph": "8164d748", "equity": 99837673, "ret": -0.16}, {"id": "v111", "ph": "826e3d17", "equity": 99837673, "ret": -0.16}, {"id": "v112", "ph": "4cd47646", "equity": 99837673, "ret": -0.16}, {"id": "v113", "ph": "5b43d0bc", "equity": 99838342, "ret": -0.16}, {"id": "v114", "ph": "8686c36c", "equity": 99837899, "ret": -0.16}, {"id": "v115", "ph": "e1790a5a", "equity": 99838342, "ret": -0.16}, {"id": "v116", "ph": "e73fef98", "equity": 99838342, "ret": -0.16}, {"id": "v118", "ph": "538b63b9", "equity": 99838342, "ret": -0.16}, {"id": "v131", "ph": "5f8c7082", "equity": 99838342, "ret": -0.16}, {"id": "v138", "ph": "e3acb223", "equity": 99838342, "ret": -0.16}, {"id": "v143", "ph": "5cf8f13a", "equity": 99837899, "ret": -0.16}, {"id": "v144", "ph": "6ffe4183", "equity": 99837899, "ret": -0.16}, {"id": "v145", "ph": "a89d85fc", "equity": 99839277, "ret": -0.16}, {"id": "v146", "ph": "071b9cb1", "equity": 99838342, "ret": -0.16}, {"id": "v147", "ph": "2fbeeedb", "equity": 99838607, "ret": -0.16}, {"id": "v148", "ph": "ada71802", "equity": 99836740, "ret": -0.16}, {"id": "v149", "ph": "c5329f8d", "equity": 99838607, "ret": -0.16}, {"id": "v150", "ph": "be41b974", "equity": 99836740, "ret": -0.16}, {"id": "v151", "ph": "2eb1dd06", "equity": 99838607, "ret": -0.16}, {"id": "v152", "ph": "5d2df346", "equity": 99836740, "ret": -0.16}, {"id": "v153", "ph": "49fd09d9", "equity": 99839277, "ret": -0.16}, {"id": "v154", "ph": "7a3a7788", "equity": 99838342, "ret": -0.16}, {"id": "v155", "ph": "31c0d84e", "equity": 99838834, "ret": -0.16}, {"id": "v156", "ph": "3f7bcd1b", "equity": 99836966, "ret": -0.16}, {"id": "v157", "ph": "80f3e23b", "equity": 99839277, "ret": -0.16}, {"id": "v158", "ph": "7e56eae3", "equity": 99838342, "ret": -0.16}, {"id": "v159", "ph": "af80c67a", "equity": 99839277, "ret": -0.16}, {"id": "v160", "ph": "b03f5295", "equity": 99838342, "ret": -0.16}, {"id": "v163", "ph": "452ab819", "equity": 99839277, "ret": -0.16}, {"id": "v164", "ph": "331cec1f", "equity": 99838342, "ret": -0.16}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99839277, "ret": -0.16}, {"id": "v190", "ph": "e14af339", "equity": 99838342, "ret": -0.16}, {"id": "v203", "ph": "2071defa", "equity": 99839277, "ret": -0.16}, {"id": "v204", "ph": "434e2f7a", "equity": 99838342, "ret": -0.16}, {"id": "v213", "ph": "0e1d8e45", "equity": 99838834, "ret": -0.16}, {"id": "v214", "ph": "0fb624bf", "equity": 99836966, "ret": -0.16}, {"id": "v215", "ph": "a904a49d", "equity": 99838834, "ret": -0.16}, {"id": "v216", "ph": "ee298bd3", "equity": 99836966, "ret": -0.16}, {"id": "v241", "ph": "52162002", "equity": 99839277, "ret": -0.16}, {"id": "v242", "ph": "e6c70cac", "equity": 99839277, "ret": -0.16}, {"id": "v243", "ph": "fa7a545a", "equity": 99838342, "ret": -0.16}, {"id": "v244", "ph": "520c5a65", "equity": 99838342, "ret": -0.16}, {"id": "v245", "ph": "ac84324f", "equity": 99838342, "ret": -0.16}, {"id": "v246", "ph": "618ddf71", "equity": 99838342, "ret": -0.16}, {"id": "v247", "ph": "ba973fa6", "equity": 99839277, "ret": -0.16}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99839277, "ret": -0.16}, {"id": "v249", "ph": "36a32ca0", "equity": 99838342, "ret": -0.16}, {"id": "v250", "ph": "b37976b8", "equity": 99838342, "ret": -0.16}, {"id": "v251", "ph": "8c5a06da", "equity": 99838342, "ret": -0.16}, {"id": "v252", "ph": "381a65d1", "equity": 99838342, "ret": -0.16}, {"id": "v253", "ph": "87bd57d6", "equity": 99839277, "ret": -0.16}, {"id": "v254", "ph": "75e53118", "equity": 99839277, "ret": -0.16}, {"id": "v255", "ph": "92e3c5e0", "equity": 99838342, "ret": -0.16}, {"id": "v256", "ph": "e583f1dd", "equity": 99838342, "ret": -0.16}, {"id": "v257", "ph": "7fa33f5b", "equity": 99838342, "ret": -0.16}, {"id": "v258", "ph": "0b19bb06", "equity": 99838342, "ret": -0.16}, {"id": "v259", "ph": "178a1fe3", "equity": 99839277, "ret": -0.16}, {"id": "v260", "ph": "bab317db", "equity": 99839277, "ret": -0.16}, {"id": "v261", "ph": "965786e6", "equity": 99838342, "ret": -0.16}, {"id": "v262", "ph": "e07faa54", "equity": 99838342, "ret": -0.16}, {"id": "v263", "ph": "ca392811", "equity": 99838342, "ret": -0.16}, {"id": "v264", "ph": "8c65e60d", "equity": 99838342, "ret": -0.16}, {"id": "v298", "ph": "5d4bbec0", "equity": 99278910, "ret": -0.72}, {"id": "v299", "ph": "25046b1a", "equity": 99269453, "ret": -0.73}, {"id": "v296", "ph": "4c554378", "equity": 98793078, "ret": -1.21}], "20260618": [{"id": "v299", "ph": "25046b1a", "equity": 100522238, "ret": 0.52}, {"id": "v40", "ph": "70731d89", "equity": 100349540, "ret": 0.35}, {"id": "v42", "ph": "f36fddc6", "equity": 100349540, "ret": 0.35}, {"id": "v44", "ph": "364ea434", "equity": 100349540, "ret": 0.35}, {"id": "v48", "ph": "18854c6a", "equity": 100115675, "ret": 0.12}, {"id": "v106", "ph": "d0f5fbc1", "equity": 100115675, "ret": 0.12}, {"id": "v148", "ph": "ada71802", "equity": 100083234, "ret": 0.08}, {"id": "v150", "ph": "be41b974", "equity": 100083234, "ret": 0.08}, {"id": "v152", "ph": "5d2df346", "equity": 100083234, "ret": 0.08}, {"id": "v90", "ph": "86e09c47", "equity": 100043354, "ret": 0.04}, {"id": "v98", "ph": "266fc53f", "equity": 100043354, "ret": 0.04}, {"id": "v49", "ph": "cdba73e0", "equity": 100000000, "ret": 0.0}, {"id": "v51", "ph": "21a98e46", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 100000000, "ret": 0.0}, {"id": "v91", "ph": "5674a3d7", "equity": 100000000, "ret": 0.0}, {"id": "v95", "ph": "7e28e756", "equity": 100000000, "ret": 0.0}, {"id": "v302", "ph": "3f30502d", "equity": 99947951, "ret": -0.05}, {"id": "v28", "ph": "28e87677", "equity": 99943690, "ret": -0.06}, {"id": "v7", "ph": "de835eae", "equity": 99934863, "ret": -0.07}, {"id": "v8", "ph": "18c6740b", "equity": 99934863, "ret": -0.07}, {"id": "v23", "ph": "aec632b1", "equity": 99934863, "ret": -0.07}, {"id": "v30", "ph": "df71f475", "equity": 99934863, "ret": -0.07}, {"id": "v156", "ph": "3f7bcd1b", "equity": 99921725, "ret": -0.08}, {"id": "v214", "ph": "0fb624bf", "equity": 99921725, "ret": -0.08}, {"id": "v108", "ph": "67a6679a", "equity": 99911859, "ret": -0.09}, {"id": "v9", "ph": "141268ab", "equity": 99866254, "ret": -0.13}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99866254, "ret": -0.13}, {"id": "v12", "ph": "f166fb0e", "equity": 99866254, "ret": -0.13}, {"id": "v32", "ph": "153055e6", "equity": 99866254, "ret": -0.13}, {"id": "v33", "ph": "97ad2410", "equity": 99866254, "ret": -0.13}, {"id": "v53", "ph": "2391ee16", "equity": 99866254, "ret": -0.13}, {"id": "v57", "ph": "e7e98b6d", "equity": 99866254, "ret": -0.13}, {"id": "v59", "ph": "1858e2ec", "equity": 99866254, "ret": -0.13}, {"id": "v99", "ph": "fb39409b", "equity": 99866254, "ret": -0.13}, {"id": "v101", "ph": "c4354346", "equity": 99866254, "ret": -0.13}, {"id": "v136", "ph": "ceb32a66", "equity": 99874338, "ret": -0.13}, {"id": "v161", "ph": "ed5677e6", "equity": 99866254, "ret": -0.13}, {"id": "v165", "ph": "8f862b27", "equity": 99866254, "ret": -0.13}, {"id": "v167", "ph": "b6d6aed8", "equity": 99866254, "ret": -0.13}, {"id": "v198", "ph": "ffd1ee88", "equity": 99869669, "ret": -0.13}, {"id": "v199", "ph": "390bfab3", "equity": 99866254, "ret": -0.13}, {"id": "v206", "ph": "16f62ab7", "equity": 99869669, "ret": -0.13}, {"id": "v207", "ph": "0f6601a0", "equity": 99866254, "ret": -0.13}, {"id": "v209", "ph": "8730802d", "equity": 99866254, "ret": -0.13}, {"id": "v217", "ph": "4c547a61", "equity": 99866254, "ret": -0.13}, {"id": "v218", "ph": "7304d2d4", "equity": 99866254, "ret": -0.13}, {"id": "v223", "ph": "b57356b8", "equity": 99866254, "ret": -0.13}, {"id": "v224", "ph": "888ab069", "equity": 99866254, "ret": -0.13}, {"id": "v229", "ph": "d9261dfb", "equity": 99866254, "ret": -0.13}, {"id": "v230", "ph": "141579fe", "equity": 99866254, "ret": -0.13}, {"id": "v235", "ph": "3e6c1666", "equity": 99866254, "ret": -0.13}, {"id": "v236", "ph": "f9c75560", "equity": 99866254, "ret": -0.13}, {"id": "v265", "ph": "7faed59d", "equity": 99866254, "ret": -0.13}, {"id": "v266", "ph": "c133b585", "equity": 99866254, "ret": -0.13}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99866254, "ret": -0.13}, {"id": "v272", "ph": "2ed2027f", "equity": 99866254, "ret": -0.13}, {"id": "v277", "ph": "488b612a", "equity": 99866254, "ret": -0.13}, {"id": "v278", "ph": "861fb42b", "equity": 99866254, "ret": -0.13}, {"id": "v283", "ph": "479e4b25", "equity": 99866254, "ret": -0.13}, {"id": "v284", "ph": "261c5d58", "equity": 99866254, "ret": -0.13}, {"id": "v301", "ph": "30da2021", "equity": 99866254, "ret": -0.13}, {"id": "v88", "ph": "733579ce", "equity": 99861585, "ret": -0.14}, {"id": "v94", "ph": "3e5d6b8a", "equity": 99861585, "ret": -0.14}, {"id": "v104", "ph": "013c3fde", "equity": 99861585, "ret": -0.14}, {"id": "v115", "ph": "e1790a5a", "equity": 99844442, "ret": -0.16}, {"id": "v116", "ph": "e73fef98", "equity": 99844442, "ret": -0.16}, {"id": "v131", "ph": "5f8c7082", "equity": 99844442, "ret": -0.16}, {"id": "v138", "ph": "e3acb223", "equity": 99844442, "ret": -0.16}, {"id": "v1", "ph": "4874f4c9", "equity": 99834577, "ret": -0.17}, {"id": "v5", "ph": "ec2eb05a", "equity": 99834577, "ret": -0.17}, {"id": "v10", "ph": "e48c1012", "equity": 99834577, "ret": -0.17}, {"id": "v37", "ph": "fb2247aa", "equity": 99834577, "ret": -0.17}, {"id": "v45", "ph": "964276a8", "equity": 99834577, "ret": -0.17}, {"id": "v55", "ph": "2c44de9b", "equity": 99834577, "ret": -0.17}, {"id": "v145", "ph": "a89d85fc", "equity": 99834577, "ret": -0.17}, {"id": "v153", "ph": "49fd09d9", "equity": 99834577, "ret": -0.17}, {"id": "v157", "ph": "80f3e23b", "equity": 99834577, "ret": -0.17}, {"id": "v159", "ph": "af80c67a", "equity": 99834577, "ret": -0.17}, {"id": "v163", "ph": "452ab819", "equity": 99834577, "ret": -0.17}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99834577, "ret": -0.17}, {"id": "v203", "ph": "2071defa", "equity": 99834577, "ret": -0.17}, {"id": "v241", "ph": "52162002", "equity": 99834577, "ret": -0.17}, {"id": "v242", "ph": "e6c70cac", "equity": 99834577, "ret": -0.17}, {"id": "v247", "ph": "ba973fa6", "equity": 99834577, "ret": -0.17}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99834577, "ret": -0.17}, {"id": "v253", "ph": "87bd57d6", "equity": 99834577, "ret": -0.17}, {"id": "v254", "ph": "75e53118", "equity": 99834577, "ret": -0.17}, {"id": "v259", "ph": "178a1fe3", "equity": 99834577, "ret": -0.17}, {"id": "v260", "ph": "bab317db", "equity": 99834577, "ret": -0.17}, {"id": "v89", "ph": "c49d5680", "equity": 99817776, "ret": -0.18}, {"id": "v97", "ph": "ebf31977", "equity": 99817776, "ret": -0.18}, {"id": "v47", "ph": "ed758fcf", "equity": 99773192, "ret": -0.23}, {"id": "v105", "ph": "88395429", "equity": 99773192, "ret": -0.23}, {"id": "v27", "ph": "33d43bc6", "equity": 99761770, "ret": -0.24}, {"id": "v31", "ph": "3dc99490", "equity": 99761770, "ret": -0.24}, {"id": "v135", "ph": "53f4c78c", "equity": 99762008, "ret": -0.24}, {"id": "v139", "ph": "cfbc79a5", "equity": 99762008, "ret": -0.24}, {"id": "v26", "ph": "2e5f3fac", "equity": 99753924, "ret": -0.25}, {"id": "v29", "ph": "e46149f5", "equity": 99753924, "ret": -0.25}, {"id": "v34", "ph": "d77f522d", "equity": 99753924, "ret": -0.25}, {"id": "v87", "ph": "c0be98c0", "equity": 99753924, "ret": -0.25}, {"id": "v93", "ph": "f10d4e45", "equity": 99753924, "ret": -0.25}, {"id": "v103", "ph": "75b0a37c", "equity": 99753924, "ret": -0.25}, {"id": "v195", "ph": "dd89cf59", "equity": 99753924, "ret": -0.25}, {"id": "v197", "ph": "5c290a32", "equity": 99753924, "ret": -0.25}, {"id": "v201", "ph": "cb8a413e", "equity": 99753924, "ret": -0.25}, {"id": "v205", "ph": "02e5a3f5", "equity": 99753924, "ret": -0.25}, {"id": "v211", "ph": "9227673c", "equity": 99753924, "ret": -0.25}, {"id": "v6", "ph": "e96ce9e2", "equity": 99708359, "ret": -0.29}, {"id": "v35", "ph": "6a183375", "equity": 99708359, "ret": -0.29}, {"id": "v114", "ph": "8686c36c", "equity": 99693599, "ret": -0.31}, {"id": "v143", "ph": "5cf8f13a", "equity": 99693599, "ret": -0.31}, {"id": "v36", "ph": "feebff1a", "equity": 99683734, "ret": -0.32}, {"id": "v107", "ph": "be5cd36b", "equity": 99683734, "ret": -0.32}, {"id": "v155", "ph": "31c0d84e", "equity": 99683734, "ret": -0.32}, {"id": "v213", "ph": "0e1d8e45", "equity": 99683734, "ret": -0.32}, {"id": "v215", "ph": "a904a49d", "equity": 99683734, "ret": -0.32}, {"id": "v39", "ph": "11c27236", "equity": 99623306, "ret": -0.38}, {"id": "v41", "ph": "e9d84e84", "equity": 99623306, "ret": -0.38}, {"id": "v43", "ph": "94ea3b53", "equity": 99623306, "ret": -0.38}, {"id": "v110", "ph": "8164d748", "equity": 99616573, "ret": -0.38}, {"id": "v111", "ph": "826e3d17", "equity": 99616573, "ret": -0.38}, {"id": "v112", "ph": "4cd47646", "equity": 99616573, "ret": -0.38}, {"id": "v147", "ph": "2fbeeedb", "equity": 99606707, "ret": -0.39}, {"id": "v149", "ph": "c5329f8d", "equity": 99606707, "ret": -0.39}, {"id": "v151", "ph": "2eb1dd06", "equity": 99606707, "ret": -0.39}, {"id": "v2", "ph": "bab0fc2c", "equity": 99558474, "ret": -0.44}, {"id": "v3", "ph": "81d17cca", "equity": 99558474, "ret": -0.44}, {"id": "v4", "ph": "b6219595", "equity": 99558474, "ret": -0.44}, {"id": "v92", "ph": "14a13097", "equity": 99557044, "ret": -0.44}, {"id": "v200", "ph": "8bbb6ec7", "equity": 99487901, "ret": -0.51}, {"id": "v54", "ph": "b975742e", "equity": 99479817, "ret": -0.52}, {"id": "v58", "ph": "f1e52f55", "equity": 99479817, "ret": -0.52}, {"id": "v60", "ph": "52560b06", "equity": 99479817, "ret": -0.52}, {"id": "v100", "ph": "ffa9571a", "equity": 99479817, "ret": -0.52}, {"id": "v102", "ph": "e1601afe", "equity": 99479817, "ret": -0.52}, {"id": "v50", "ph": "690a50b5", "equity": 99473000, "ret": -0.53}, {"id": "v52", "ph": "c1939d0b", "equity": 99473000, "ret": -0.53}, {"id": "v82", "ph": "01847af6", "equity": 99473000, "ret": -0.53}, {"id": "v96", "ph": "095b119f", "equity": 99473000, "ret": -0.53}, {"id": "v117", "ph": "c4ae8a11", "equity": 99411094, "ret": -0.59}, {"id": "v119", "ph": "ed2208f1", "equity": 99411094, "ret": -0.59}, {"id": "v120", "ph": "d25ca8b0", "equity": 99411094, "ret": -0.59}, {"id": "v140", "ph": "52175b2b", "equity": 99411094, "ret": -0.59}, {"id": "v141", "ph": "47f30434", "equity": 99411094, "ret": -0.59}, {"id": "v196", "ph": "a44aeef1", "equity": 99406425, "ret": -0.59}, {"id": "v202", "ph": "a528b806", "equity": 99406425, "ret": -0.59}, {"id": "v212", "ph": "b9e1e8d1", "equity": 99406425, "ret": -0.59}, {"id": "v219", "ph": "426d3834", "equity": 99411094, "ret": -0.59}, {"id": "v220", "ph": "565c27a7", "equity": 99411094, "ret": -0.59}, {"id": "v225", "ph": "e9f40f62", "equity": 99411094, "ret": -0.59}, {"id": "v226", "ph": "98fd37a4", "equity": 99411094, "ret": -0.59}, {"id": "v231", "ph": "cd9469fa", "equity": 99411094, "ret": -0.59}, {"id": "v232", "ph": "6de1fffa", "equity": 99411094, "ret": -0.59}, {"id": "v237", "ph": "a10d68cf", "equity": 99411094, "ret": -0.59}, {"id": "v238", "ph": "f1a74611", "equity": 99411094, "ret": -0.59}, {"id": "v267", "ph": "766c47d7", "equity": 99411094, "ret": -0.59}, {"id": "v268", "ph": "9736502d", "equity": 99411094, "ret": -0.59}, {"id": "v273", "ph": "c726e8d5", "equity": 99411094, "ret": -0.59}, {"id": "v274", "ph": "62b011c8", "equity": 99411094, "ret": -0.59}, {"id": "v279", "ph": "37e203bb", "equity": 99411094, "ret": -0.59}, {"id": "v280", "ph": "60411037", "equity": 99411094, "ret": -0.59}, {"id": "v285", "ph": "962e35cd", "equity": 99411094, "ret": -0.59}, {"id": "v286", "ph": "4f6101e9", "equity": 99411094, "ret": -0.59}, {"id": "v303", "ph": "1a084164", "equity": 99410912, "ret": -0.59}, {"id": "v158", "ph": "7e56eae3", "equity": 99382788, "ret": -0.62}, {"id": "v160", "ph": "b03f5295", "equity": 99382788, "ret": -0.62}, {"id": "v190", "ph": "e14af339", "equity": 99382788, "ret": -0.62}, {"id": "v204", "ph": "434e2f7a", "equity": 99382788, "ret": -0.62}, {"id": "v134", "ph": "afbb4ab8", "equity": 99298764, "ret": -0.7}, {"id": "v137", "ph": "60ec806f", "equity": 99298764, "ret": -0.7}, {"id": "v142", "ph": "44fae695", "equity": 99298764, "ret": -0.7}, {"id": "v216", "ph": "ee298bd3", "equity": 99295527, "ret": -0.7}, {"id": "v38", "ph": "9b9083ae", "equity": 99223798, "ret": -0.78}, {"id": "v46", "ph": "7dc0e360", "equity": 99223798, "ret": -0.78}, {"id": "v56", "ph": "5d99704f", "equity": 99223798, "ret": -0.78}, {"id": "v221", "ph": "cd2eef94", "equity": 99186752, "ret": -0.81}, {"id": "v227", "ph": "9454b07a", "equity": 99186752, "ret": -0.81}, {"id": "v233", "ph": "941006e0", "equity": 99186752, "ret": -0.81}, {"id": "v239", "ph": "96e693c4", "equity": 99186752, "ret": -0.81}, {"id": "v269", "ph": "c0c861c4", "equity": 99186752, "ret": -0.81}, {"id": "v275", "ph": "3ebf0d91", "equity": 99186752, "ret": -0.81}, {"id": "v281", "ph": "7d9e5a9d", "equity": 99186752, "ret": -0.81}, {"id": "v287", "ph": "3bf14815", "equity": 99186752, "ret": -0.81}, {"id": "v144", "ph": "6ffe4183", "equity": 99068189, "ret": -0.93}, {"id": "v109", "ph": "4c69fc95", "equity": 99020588, "ret": -0.98}, {"id": "v113", "ph": "5b43d0bc", "equity": 99020588, "ret": -0.98}, {"id": "v118", "ph": "538b63b9", "equity": 99020588, "ret": -0.98}, {"id": "v162", "ph": "b8f71c74", "equity": 99024658, "ret": -0.98}, {"id": "v166", "ph": "f684401e", "equity": 99024658, "ret": -0.98}, {"id": "v168", "ph": "81099b26", "equity": 99024658, "ret": -0.98}, {"id": "v208", "ph": "445623de", "equity": 99024658, "ret": -0.98}, {"id": "v210", "ph": "6f533a9b", "equity": 99024658, "ret": -0.98}, {"id": "v222", "ph": "55de9eca", "equity": 99024658, "ret": -0.98}, {"id": "v228", "ph": "caa54387", "equity": 99024658, "ret": -0.98}, {"id": "v234", "ph": "9a289d18", "equity": 99024658, "ret": -0.98}, {"id": "v240", "ph": "db1869eb", "equity": 99024658, "ret": -0.98}, {"id": "v243", "ph": "fa7a545a", "equity": 99020588, "ret": -0.98}, {"id": "v244", "ph": "520c5a65", "equity": 99020588, "ret": -0.98}, {"id": "v249", "ph": "36a32ca0", "equity": 99020588, "ret": -0.98}, {"id": "v250", "ph": "b37976b8", "equity": 99020588, "ret": -0.98}, {"id": "v255", "ph": "92e3c5e0", "equity": 99020588, "ret": -0.98}, {"id": "v256", "ph": "e583f1dd", "equity": 99020588, "ret": -0.98}, {"id": "v261", "ph": "965786e6", "equity": 99020588, "ret": -0.98}, {"id": "v262", "ph": "e07faa54", "equity": 99020588, "ret": -0.98}, {"id": "v270", "ph": "1ce9fd2b", "equity": 99024658, "ret": -0.98}, {"id": "v276", "ph": "51425eab", "equity": 99024658, "ret": -0.98}, {"id": "v282", "ph": "9ddd111d", "equity": 99024658, "ret": -0.98}, {"id": "v288", "ph": "1c732194", "equity": 99024658, "ret": -0.98}, {"id": "v245", "ph": "ac84324f", "equity": 98570594, "ret": -1.43}, {"id": "v251", "ph": "8c5a06da", "equity": 98570594, "ret": -1.43}, {"id": "v257", "ph": "7fa33f5b", "equity": 98570594, "ret": -1.43}, {"id": "v263", "ph": "ca392811", "equity": 98570594, "ret": -1.43}, {"id": "v146", "ph": "071b9cb1", "equity": 98408500, "ret": -1.59}, {"id": "v154", "ph": "7a3a7788", "equity": 98408500, "ret": -1.59}, {"id": "v164", "ph": "331cec1f", "equity": 98408500, "ret": -1.59}, {"id": "v246", "ph": "618ddf71", "equity": 98408500, "ret": -1.59}, {"id": "v252", "ph": "381a65d1", "equity": 98408500, "ret": -1.59}, {"id": "v258", "ph": "0b19bb06", "equity": 98408500, "ret": -1.59}, {"id": "v264", "ph": "8c65e60d", "equity": 98408500, "ret": -1.59}, {"id": "v300", "ph": "c6ddc17b", "equity": 98414155, "ret": -1.59}, {"id": "v296", "ph": "4c554378", "equity": 98369185, "ret": -1.63}, {"id": "v298", "ph": "5d4bbec0", "equity": 97903330, "ret": -2.1}], "20260619": [{"id": "v81", "ph": "a6eac1e4", "equity": 100012103, "ret": 0.01}, {"id": "v91", "ph": "5674a3d7", "equity": 100012103, "ret": 0.01}, {"id": "v95", "ph": "7e28e756", "equity": 100012103, "ret": 0.01}, {"id": "v49", "ph": "cdba73e0", "equity": 99771263, "ret": -0.23}, {"id": "v51", "ph": "21a98e46", "equity": 99771263, "ret": -0.23}, {"id": "v99", "ph": "fb39409b", "equity": 99699720, "ret": -0.3}, {"id": "v101", "ph": "c4354346", "equity": 99699720, "ret": -0.3}, {"id": "v199", "ph": "390bfab3", "equity": 99699720, "ret": -0.3}, {"id": "v207", "ph": "0f6601a0", "equity": 99699720, "ret": -0.3}, {"id": "v209", "ph": "8730802d", "equity": 99699720, "ret": -0.3}, {"id": "v28", "ph": "28e87677", "equity": 99582892, "ret": -0.42}, {"id": "v32", "ph": "153055e6", "equity": 99539606, "ret": -0.46}, {"id": "v33", "ph": "97ad2410", "equity": 99539606, "ret": -0.46}, {"id": "v89", "ph": "c49d5680", "equity": 99535129, "ret": -0.46}, {"id": "v97", "ph": "ebf31977", "equity": 99535129, "ret": -0.46}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99539444, "ret": -0.46}, {"id": "v203", "ph": "2071defa", "equity": 99539444, "ret": -0.46}, {"id": "v302", "ph": "3f30502d", "equity": 99534056, "ret": -0.47}, {"id": "v9", "ph": "141268ab", "equity": 99523104, "ret": -0.48}, {"id": "v11", "ph": "e4bb2e3e", "equity": 99523104, "ret": -0.48}, {"id": "v12", "ph": "f166fb0e", "equity": 99523104, "ret": -0.48}, {"id": "v53", "ph": "2391ee16", "equity": 99523104, "ret": -0.48}, {"id": "v57", "ph": "e7e98b6d", "equity": 99523104, "ret": -0.48}, {"id": "v59", "ph": "1858e2ec", "equity": 99523104, "ret": -0.48}, {"id": "v161", "ph": "ed5677e6", "equity": 99523104, "ret": -0.48}, {"id": "v165", "ph": "8f862b27", "equity": 99523104, "ret": -0.48}, {"id": "v167", "ph": "b6d6aed8", "equity": 99523104, "ret": -0.48}, {"id": "v217", "ph": "4c547a61", "equity": 99511038, "ret": -0.49}, {"id": "v218", "ph": "7304d2d4", "equity": 99511038, "ret": -0.49}, {"id": "v23", "ph": "aec632b1", "equity": 99482492, "ret": -0.52}, {"id": "v30", "ph": "df71f475", "equity": 99482492, "ret": -0.52}, {"id": "v301", "ph": "30da2021", "equity": 99470408, "ret": -0.53}, {"id": "v7", "ph": "de835eae", "equity": 99459988, "ret": -0.54}, {"id": "v8", "ph": "18c6740b", "equity": 99459988, "ret": -0.54}, {"id": "v87", "ph": "c0be98c0", "equity": 99461390, "ret": -0.54}, {"id": "v93", "ph": "f10d4e45", "equity": 99461390, "ret": -0.54}, {"id": "v103", "ph": "75b0a37c", "equity": 99461390, "ret": -0.54}, {"id": "v195", "ph": "dd89cf59", "equity": 99461390, "ret": -0.54}, {"id": "v197", "ph": "5c290a32", "equity": 99461390, "ret": -0.54}, {"id": "v201", "ph": "cb8a413e", "equity": 99461390, "ret": -0.54}, {"id": "v205", "ph": "02e5a3f5", "equity": 99461390, "ret": -0.54}, {"id": "v211", "ph": "9227673c", "equity": 99461390, "ret": -0.54}, {"id": "v223", "ph": "b57356b8", "equity": 99438670, "ret": -0.56}, {"id": "v224", "ph": "888ab069", "equity": 99438670, "ret": -0.56}, {"id": "v229", "ph": "d9261dfb", "equity": 99438670, "ret": -0.56}, {"id": "v230", "ph": "141579fe", "equity": 99438670, "ret": -0.56}, {"id": "v235", "ph": "3e6c1666", "equity": 99438670, "ret": -0.56}, {"id": "v236", "ph": "f9c75560", "equity": 99438670, "ret": -0.56}, {"id": "v265", "ph": "7faed59d", "equity": 99438670, "ret": -0.56}, {"id": "v266", "ph": "c133b585", "equity": 99438670, "ret": -0.56}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99438670, "ret": -0.56}, {"id": "v272", "ph": "2ed2027f", "equity": 99438670, "ret": -0.56}, {"id": "v277", "ph": "488b612a", "equity": 99438670, "ret": -0.56}, {"id": "v278", "ph": "861fb42b", "equity": 99438670, "ret": -0.56}, {"id": "v283", "ph": "479e4b25", "equity": 99438670, "ret": -0.56}, {"id": "v284", "ph": "261c5d58", "equity": 99438670, "ret": -0.56}, {"id": "v105", "ph": "88395429", "equity": 99433845, "ret": -0.57}, {"id": "v1", "ph": "4874f4c9", "equity": 99368847, "ret": -0.63}, {"id": "v5", "ph": "ec2eb05a", "equity": 99368847, "ret": -0.63}, {"id": "v10", "ph": "e48c1012", "equity": 99368847, "ret": -0.63}, {"id": "v37", "ph": "fb2247aa", "equity": 99368847, "ret": -0.63}, {"id": "v45", "ph": "964276a8", "equity": 99368847, "ret": -0.63}, {"id": "v55", "ph": "2c44de9b", "equity": 99368847, "ret": -0.63}, {"id": "v145", "ph": "a89d85fc", "equity": 99368847, "ret": -0.63}, {"id": "v153", "ph": "49fd09d9", "equity": 99368847, "ret": -0.63}, {"id": "v163", "ph": "452ab819", "equity": 99368847, "ret": -0.63}, {"id": "v136", "ph": "ceb32a66", "equity": 99344140, "ret": -0.66}, {"id": "v26", "ph": "2e5f3fac", "equity": 99301276, "ret": -0.7}, {"id": "v29", "ph": "e46149f5", "equity": 99301276, "ret": -0.7}, {"id": "v34", "ph": "d77f522d", "equity": 99301276, "ret": -0.7}, {"id": "v157", "ph": "80f3e23b", "equity": 99298604, "ret": -0.7}, {"id": "v159", "ph": "af80c67a", "equity": 99298604, "ret": -0.7}, {"id": "v241", "ph": "52162002", "equity": 99284413, "ret": -0.72}, {"id": "v242", "ph": "e6c70cac", "equity": 99284413, "ret": -0.72}, {"id": "v247", "ph": "ba973fa6", "equity": 99284413, "ret": -0.72}, {"id": "v248", "ph": "9ca5e3dc", "equity": 99284413, "ret": -0.72}, {"id": "v253", "ph": "87bd57d6", "equity": 99284413, "ret": -0.72}, {"id": "v254", "ph": "75e53118", "equity": 99284413, "ret": -0.72}, {"id": "v259", "ph": "178a1fe3", "equity": 99284413, "ret": -0.72}, {"id": "v260", "ph": "bab317db", "equity": 99284413, "ret": -0.72}, {"id": "v107", "ph": "be5cd36b", "equity": 99219401, "ret": -0.78}, {"id": "v213", "ph": "0e1d8e45", "equity": 99219401, "ret": -0.78}, {"id": "v215", "ph": "a904a49d", "equity": 99219401, "ret": -0.78}, {"id": "v47", "ph": "ed758fcf", "equity": 99193004, "ret": -0.81}, {"id": "v299", "ph": "25046b1a", "equity": 99138724, "ret": -0.86}, {"id": "v27", "ph": "33d43bc6", "equity": 99107373, "ret": -0.89}, {"id": "v31", "ph": "3dc99490", "equity": 99107373, "ret": -0.89}, {"id": "v135", "ph": "53f4c78c", "equity": 99105810, "ret": -0.89}, {"id": "v139", "ph": "cfbc79a5", "equity": 99105810, "ret": -0.89}, {"id": "v131", "ph": "5f8c7082", "equity": 99082573, "ret": -0.92}, {"id": "v138", "ph": "e3acb223", "equity": 99082573, "ret": -0.92}, {"id": "v115", "ph": "e1790a5a", "equity": 99060069, "ret": -0.94}, {"id": "v116", "ph": "e73fef98", "equity": 99060069, "ret": -0.94}, {"id": "v36", "ph": "feebff1a", "equity": 99001064, "ret": -1.0}, {"id": "v155", "ph": "31c0d84e", "equity": 98978560, "ret": -1.02}, {"id": "v92", "ph": "14a13097", "equity": 98940531, "ret": -1.06}, {"id": "v35", "ph": "6a183375", "equity": 98905688, "ret": -1.09}, {"id": "v88", "ph": "733579ce", "equity": 98898771, "ret": -1.1}, {"id": "v94", "ph": "3e5d6b8a", "equity": 98898771, "ret": -1.1}, {"id": "v100", "ph": "ffa9571a", "equity": 98896303, "ret": -1.1}, {"id": "v102", "ph": "e1601afe", "equity": 98896303, "ret": -1.1}, {"id": "v104", "ph": "013c3fde", "equity": 98898771, "ret": -1.1}, {"id": "v147", "ph": "2fbeeedb", "equity": 98885377, "ret": -1.11}, {"id": "v149", "ph": "c5329f8d", "equity": 98885377, "ret": -1.11}, {"id": "v151", "ph": "2eb1dd06", "equity": 98885377, "ret": -1.11}, {"id": "v6", "ph": "e96ce9e2", "equity": 98883184, "ret": -1.12}, {"id": "v54", "ph": "b975742e", "equity": 98879801, "ret": -1.12}, {"id": "v58", "ph": "f1e52f55", "equity": 98879801, "ret": -1.12}, {"id": "v60", "ph": "52560b06", "equity": 98879801, "ret": -1.12}, {"id": "v90", "ph": "86e09c47", "equity": 98830140, "ret": -1.17}, {"id": "v98", "ph": "266fc53f", "equity": 98830140, "ret": -1.17}, {"id": "v39", "ph": "11c27236", "equity": 98778663, "ret": -1.22}, {"id": "v41", "ph": "e9d84e84", "equity": 98778663, "ret": -1.22}, {"id": "v43", "ph": "94ea3b53", "equity": 98778663, "ret": -1.22}, {"id": "v143", "ph": "5cf8f13a", "equity": 98762492, "ret": -1.24}, {"id": "v114", "ph": "8686c36c", "equity": 98739989, "ret": -1.26}, {"id": "v198", "ph": "ffd1ee88", "equity": 98703305, "ret": -1.3}, {"id": "v200", "ph": "8bbb6ec7", "equity": 98700837, "ret": -1.3}, {"id": "v206", "ph": "16f62ab7", "equity": 98703305, "ret": -1.3}, {"id": "v82", "ph": "01847af6", "equity": 98682113, "ret": -1.32}, {"id": "v96", "ph": "095b119f", "equity": 98682113, "ret": -1.32}, {"id": "v50", "ph": "690a50b5", "equity": 98659610, "ret": -1.34}, {"id": "v52", "ph": "c1939d0b", "equity": 98659610, "ret": -1.34}, {"id": "v110", "ph": "8164d748", "equity": 98646805, "ret": -1.35}, {"id": "v111", "ph": "826e3d17", "equity": 98646805, "ret": -1.35}, {"id": "v112", "ph": "4cd47646", "equity": 98646805, "ret": -1.35}, {"id": "v106", "ph": "d0f5fbc1", "equity": 98511272, "ret": -1.49}, {"id": "v48", "ph": "18854c6a", "equity": 98488769, "ret": -1.51}, {"id": "v2", "ph": "bab0fc2c", "equity": 98468880, "ret": -1.53}, {"id": "v3", "ph": "81d17cca", "equity": 98468880, "ret": -1.53}, {"id": "v4", "ph": "b6219595", "equity": 98468880, "ret": -1.53}, {"id": "v108", "ph": "67a6679a", "equity": 98463181, "ret": -1.54}, {"id": "v140", "ph": "52175b2b", "equity": 98333401, "ret": -1.67}, {"id": "v141", "ph": "47f30434", "equity": 98333401, "ret": -1.67}, {"id": "v117", "ph": "c4ae8a11", "equity": 98316898, "ret": -1.68}, {"id": "v119", "ph": "ed2208f1", "equity": 98316898, "ret": -1.68}, {"id": "v120", "ph": "d25ca8b0", "equity": 98316898, "ret": -1.68}, {"id": "v190", "ph": "e14af339", "equity": 98281253, "ret": -1.72}, {"id": "v204", "ph": "434e2f7a", "equity": 98281253, "ret": -1.72}, {"id": "v38", "ph": "9b9083ae", "equity": 98256402, "ret": -1.74}, {"id": "v46", "ph": "7dc0e360", "equity": 98256402, "ret": -1.74}, {"id": "v56", "ph": "5d99704f", "equity": 98256402, "ret": -1.74}, {"id": "v158", "ph": "7e56eae3", "equity": 98258749, "ret": -1.74}, {"id": "v160", "ph": "b03f5295", "equity": 98258749, "ret": -1.74}, {"id": "v303", "ph": "1a084164", "equity": 98252307, "ret": -1.75}, {"id": "v40", "ph": "70731d89", "equity": 98226593, "ret": -1.77}, {"id": "v42", "ph": "f36fddc6", "equity": 98226593, "ret": -1.77}, {"id": "v44", "ph": "364ea434", "equity": 98226593, "ret": -1.77}, {"id": "v219", "ph": "426d3834", "equity": 98233635, "ret": -1.77}, {"id": "v220", "ph": "565c27a7", "equity": 98233635, "ret": -1.77}, {"id": "v225", "ph": "e9f40f62", "equity": 98233635, "ret": -1.77}, {"id": "v226", "ph": "98fd37a4", "equity": 98233635, "ret": -1.77}, {"id": "v231", "ph": "cd9469fa", "equity": 98233635, "ret": -1.77}, {"id": "v232", "ph": "6de1fffa", "equity": 98233635, "ret": -1.77}, {"id": "v237", "ph": "a10d68cf", "equity": 98233635, "ret": -1.77}, {"id": "v238", "ph": "f1a74611", "equity": 98233635, "ret": -1.77}, {"id": "v267", "ph": "766c47d7", "equity": 98233635, "ret": -1.77}, {"id": "v268", "ph": "9736502d", "equity": 98233635, "ret": -1.77}, {"id": "v273", "ph": "c726e8d5", "equity": 98233635, "ret": -1.77}, {"id": "v274", "ph": "62b011c8", "equity": 98233635, "ret": -1.77}, {"id": "v279", "ph": "37e203bb", "equity": 98233635, "ret": -1.77}, {"id": "v280", "ph": "60411037", "equity": 98233635, "ret": -1.77}, {"id": "v285", "ph": "962e35cd", "equity": 98233635, "ret": -1.77}, {"id": "v286", "ph": "4f6101e9", "equity": 98233635, "ret": -1.77}, {"id": "v214", "ph": "0fb624bf", "equity": 98224647, "ret": -1.78}, {"id": "v156", "ph": "3f7bcd1b", "equity": 98202143, "ret": -1.8}, {"id": "v148", "ph": "ada71802", "equity": 98105237, "ret": -1.89}, {"id": "v150", "ph": "be41b974", "equity": 98105237, "ret": -1.89}, {"id": "v152", "ph": "5d2df346", "equity": 98105237, "ret": -1.89}, {"id": "v134", "ph": "afbb4ab8", "equity": 98095071, "ret": -1.9}, {"id": "v137", "ph": "60ec806f", "equity": 98095071, "ret": -1.9}, {"id": "v142", "ph": "44fae695", "equity": 98095071, "ret": -1.9}, {"id": "v221", "ph": "cd2eef94", "equity": 97811265, "ret": -2.19}, {"id": "v227", "ph": "9454b07a", "equity": 97811265, "ret": -2.19}, {"id": "v233", "ph": "941006e0", "equity": 97811265, "ret": -2.19}, {"id": "v239", "ph": "96e693c4", "equity": 97811265, "ret": -2.19}, {"id": "v269", "ph": "c0c861c4", "equity": 97811265, "ret": -2.19}, {"id": "v275", "ph": "3ebf0d91", "equity": 97811265, "ret": -2.19}, {"id": "v281", "ph": "7d9e5a9d", "equity": 97811265, "ret": -2.19}, {"id": "v287", "ph": "3bf14815", "equity": 97811265, "ret": -2.19}, {"id": "v144", "ph": "6ffe4183", "equity": 97714288, "ret": -2.29}, {"id": "v196", "ph": "a44aeef1", "equity": 97692640, "ret": -2.31}, {"id": "v202", "ph": "a528b806", "equity": 97692640, "ret": -2.31}, {"id": "v208", "ph": "445623de", "equity": 97690172, "ret": -2.31}, {"id": "v210", "ph": "6f533a9b", "equity": 97690172, "ret": -2.31}, {"id": "v212", "ph": "b9e1e8d1", "equity": 97692640, "ret": -2.31}, {"id": "v162", "ph": "b8f71c74", "equity": 97673670, "ret": -2.33}, {"id": "v166", "ph": "f684401e", "equity": 97673670, "ret": -2.33}, {"id": "v168", "ph": "81099b26", "equity": 97673670, "ret": -2.33}, {"id": "v222", "ph": "55de9eca", "equity": 97649183, "ret": -2.35}, {"id": "v228", "ph": "caa54387", "equity": 97649183, "ret": -2.35}, {"id": "v234", "ph": "9a289d18", "equity": 97649183, "ret": -2.35}, {"id": "v240", "ph": "db1869eb", "equity": 97649183, "ret": -2.35}, {"id": "v270", "ph": "1ce9fd2b", "equity": 97649183, "ret": -2.35}, {"id": "v276", "ph": "51425eab", "equity": 97649183, "ret": -2.35}, {"id": "v282", "ph": "9ddd111d", "equity": 97649183, "ret": -2.35}, {"id": "v288", "ph": "1c732194", "equity": 97649183, "ret": -2.35}, {"id": "v109", "ph": "4c69fc95", "equity": 97333763, "ret": -2.67}, {"id": "v113", "ph": "5b43d0bc", "equity": 97333763, "ret": -2.67}, {"id": "v118", "ph": "538b63b9", "equity": 97333763, "ret": -2.67}, {"id": "v296", "ph": "4c554378", "equity": 97307249, "ret": -2.69}, {"id": "v243", "ph": "fa7a545a", "equity": 97250574, "ret": -2.75}, {"id": "v244", "ph": "520c5a65", "equity": 97250574, "ret": -2.75}, {"id": "v249", "ph": "36a32ca0", "equity": 97250574, "ret": -2.75}, {"id": "v250", "ph": "b37976b8", "equity": 97250574, "ret": -2.75}, {"id": "v255", "ph": "92e3c5e0", "equity": 97250574, "ret": -2.75}, {"id": "v256", "ph": "e583f1dd", "equity": 97250574, "ret": -2.75}, {"id": "v261", "ph": "965786e6", "equity": 97250574, "ret": -2.75}, {"id": "v262", "ph": "e07faa54", "equity": 97250574, "ret": -2.75}, {"id": "v216", "ph": "ee298bd3", "equity": 97177429, "ret": -2.82}, {"id": "v300", "ph": "c6ddc17b", "equity": 96771577, "ret": -3.23}, {"id": "v245", "ph": "ac84324f", "equity": 96386213, "ret": -3.61}, {"id": "v251", "ph": "8c5a06da", "equity": 96386213, "ret": -3.61}, {"id": "v257", "ph": "7fa33f5b", "equity": 96386213, "ret": -3.61}, {"id": "v263", "ph": "ca392811", "equity": 96386213, "ret": -3.61}, {"id": "v146", "ph": "071b9cb1", "equity": 96216557, "ret": -3.78}, {"id": "v154", "ph": "7a3a7788", "equity": 96216557, "ret": -3.78}, {"id": "v164", "ph": "331cec1f", "equity": 96216557, "ret": -3.78}, {"id": "v246", "ph": "618ddf71", "equity": 96224131, "ret": -3.78}, {"id": "v252", "ph": "381a65d1", "equity": 96224131, "ret": -3.78}, {"id": "v258", "ph": "0b19bb06", "equity": 96224131, "ret": -3.78}, {"id": "v264", "ph": "8c65e60d", "equity": 96224131, "ret": -3.78}, {"id": "v298", "ph": "5d4bbec0", "equity": 95473086, "ret": -4.53}], "20260622": [{"id": "v308", "ph": "cb12dd0b", "equity": 100110463, "ret": 0.11}, {"id": "v304", "ph": "96c7e8e1", "equity": 99999382, "ret": -0.0}, {"id": "v305", "ph": "8cc4eea6", "equity": 99999253, "ret": -0.0}, {"id": "v306", "ph": "6966b8f6", "equity": 100000000, "ret": 0.0}, {"id": "v307", "ph": "6abce93d", "equity": 100000000, "ret": 0.0}, {"id": "v313", "ph": "b9f4ee72", "equity": 100000000, "ret": 0.0}, {"id": "v314", "ph": "7511570e", "equity": 100000000, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 100000000, "ret": 0.0}, {"id": "v316", "ph": "8dc1d197", "equity": 99999482, "ret": -0.0}, {"id": "v317", "ph": "51f8ee6d", "equity": 100000000, "ret": 0.0}, {"id": "v319", "ph": "ca25f043", "equity": 99999612, "ret": -0.0}, {"id": "v320", "ph": "48d6a9ef", "equity": 99999353, "ret": -0.0}, {"id": "v321", "ph": "e82de49b", "equity": 100000000, "ret": 0.0}, {"id": "v311", "ph": "8409c6e5", "equity": 99975492, "ret": -0.02}, {"id": "v81", "ph": "a6eac1e4", "equity": 99862143, "ret": -0.14}, {"id": "v91", "ph": "5674a3d7", "equity": 99862143, "ret": -0.14}, {"id": "v95", "ph": "7e28e756", "equity": 99862143, "ret": -0.14}, {"id": "v312", "ph": "4c23846f", "equity": 99850935, "ret": -0.15}, {"id": "v309", "ph": "07610040", "equity": 99839047, "ret": -0.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 99823142, "ret": -0.18}, {"id": "v318", "ph": "c99872ef", "equity": 99752651, "ret": -0.25}, {"id": "v299", "ph": "25046b1a", "equity": 99624684, "ret": -0.38}, {"id": "v49", "ph": "cdba73e0", "equity": 99546303, "ret": -0.45}, {"id": "v51", "ph": "21a98e46", "equity": 99546303, "ret": -0.45}, {"id": "v40", "ph": "70731d89", "equity": 99480770, "ret": -0.52}, {"id": "v99", "ph": "fb39409b", "equity": 99432420, "ret": -0.57}, {"id": "v101", "ph": "c4354346", "equity": 99432420, "ret": -0.57}, {"id": "v199", "ph": "390bfab3", "equity": 99432420, "ret": -0.57}, {"id": "v207", "ph": "0f6601a0", "equity": 99432420, "ret": -0.57}, {"id": "v209", "ph": "8730802d", "equity": 99432420, "ret": -0.57}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99389944, "ret": -0.61}, {"id": "v203", "ph": "2071defa", "equity": 99389944, "ret": -0.61}, {"id": "v89", "ph": "c49d5680", "equity": 99365419, "ret": -0.63}, {"id": "v97", "ph": "ebf31977", "equity": 99365419, "ret": -0.63}, {"id": "v217", "ph": "4c547a61", "equity": 99338238, "ret": -0.66}, {"id": "v218", "ph": "7304d2d4", "equity": 99338238, "ret": -0.66}, {"id": "v87", "ph": "c0be98c0", "equity": 99330590, "ret": -0.67}, {"id": "v93", "ph": "f10d4e45", "equity": 99330590, "ret": -0.67}, {"id": "v103", "ph": "75b0a37c", "equity": 99330590, "ret": -0.67}, {"id": "v195", "ph": "dd89cf59", "equity": 99330590, "ret": -0.67}, {"id": "v197", "ph": "5c290a32", "equity": 99330590, "ret": -0.67}, {"id": "v201", "ph": "cb8a413e", "equity": 99330590, "ret": -0.67}, {"id": "v205", "ph": "02e5a3f5", "equity": 99330590, "ret": -0.67}, {"id": "v211", "ph": "9227673c", "equity": 99330590, "ret": -0.67}, {"id": "v105", "ph": "88395429", "equity": 99298435, "ret": -0.7}, {"id": "v223", "ph": "b57356b8", "equity": 99265870, "ret": -0.73}, {"id": "v224", "ph": "888ab069", "equity": 99265870, "ret": -0.73}, {"id": "v229", "ph": "d9261dfb", "equity": 99265870, "ret": -0.73}, {"id": "v230", "ph": "141579fe", "equity": 99265870, "ret": -0.73}, {"id": "v235", "ph": "3e6c1666", "equity": 99265870, "ret": -0.73}, {"id": "v236", "ph": "f9c75560", "equity": 99265870, "ret": -0.73}, {"id": "v265", "ph": "7faed59d", "equity": 99265870, "ret": -0.73}, {"id": "v266", "ph": "c133b585", "equity": 99265870, "ret": -0.73}, {"id": "v271", "ph": "2b9ccdcd", "equity": 99265870, "ret": -0.73}, {"id": "v272", "ph": "2ed2027f", "equity": 99265870, "ret": -0.73}, {"id": "v277", "ph": "488b612a", "equity": 99265870, "ret": -0.73}, {"id": "v278", "ph": "861fb42b", "equity": 99265870, "ret": -0.73}, {"id": "v283", "ph": "479e4b25", "equity": 99265870, "ret": -0.73}, {"id": "v284", "ph": "261c5d58", "equity": 99265870, "ret": -0.73}, {"id": "v107", "ph": "be5cd36b", "equity": 99253201, "ret": -0.75}, {"id": "v213", "ph": "0e1d8e45", "equity": 99253201, "ret": -0.75}, {"id": "v215", "ph": "a904a49d", "equity": 99253201, "ret": -0.75}, {"id": "v302", "ph": "3f30502d", "equity": 99230216, "ret": -0.77}, {"id": "v57", "ph": "e7e98b6d", "equity": 99200804, "ret": -0.8}, {"id": "v59", "ph": "1858e2ec", "equity": 99200804, "ret": -0.8}, {"id": "v161", "ph": "ed5677e6", "equity": 99200804, "ret": -0.8}, {"id": "v165", "ph": "8f862b27", "equity": 99200804, "ret": -0.8}, {"id": "v167", "ph": "b6d6aed8", "equity": 99200804, "ret": -0.8}, {"id": "v301", "ph": "30da2021", "equity": 99168468, "ret": -0.83}, {"id": "v157", "ph": "80f3e23b", "equity": 99074104, "ret": -0.93}, {"id": "v159", "ph": "af80c67a", "equity": 99074104, "ret": -0.93}, {"id": "v1", "ph": "4874f4c9", "equity": 98993647, "ret": -1.01}, {"id": "v47", "ph": "ed758fcf", "equity": 98982594, "ret": -1.02}, {"id": "v155", "ph": "31c0d84e", "equity": 98937360, "ret": -1.06}, {"id": "v147", "ph": "2fbeeedb", "equity": 98787077, "ret": -1.21}, {"id": "v149", "ph": "c5329f8d", "equity": 98787077, "ret": -1.21}, {"id": "v151", "ph": "2eb1dd06", "equity": 98787077, "ret": -1.21}, {"id": "v41", "ph": "e9d84e84", "equity": 98506853, "ret": -1.49}, {"id": "v4", "ph": "b6219595", "equity": 98047970, "ret": -1.95}, {"id": "v303", "ph": "1a084164", "equity": 97958407, "ret": -2.04}, {"id": "v300", "ph": "c6ddc17b", "equity": 97936863, "ret": -2.06}, {"id": "v296", "ph": "4c554378", "equity": 96948991, "ret": -3.05}, {"id": "v298", "ph": "5d4bbec0", "equity": 95566672, "ret": -4.43}], "20260623": [{"id": "v306", "ph": "6966b8f6", "equity": 100000000, "ret": 0.0}, {"id": "v307", "ph": "6abce93d", "equity": 100000000, "ret": 0.0}, {"id": "v313", "ph": "b9f4ee72", "equity": 100000000, "ret": 0.0}, {"id": "v314", "ph": "7511570e", "equity": 100000000, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 100000000, "ret": 0.0}, {"id": "v317", "ph": "51f8ee6d", "equity": 100000000, "ret": 0.0}, {"id": "v321", "ph": "e82de49b", "equity": 100000000, "ret": 0.0}, {"id": "v81", "ph": "a6eac1e4", "equity": 99876259, "ret": -0.12}, {"id": "v91", "ph": "5674a3d7", "equity": 99876259, "ret": -0.12}, {"id": "v95", "ph": "7e28e756", "equity": 99876259, "ret": -0.12}, {"id": "v319", "ph": "ca25f043", "equity": 99660626, "ret": -0.34}, {"id": "v316", "ph": "8dc1d197", "equity": 99602340, "ret": -0.4}, {"id": "v304", "ph": "96c7e8e1", "equity": 99583541, "ret": -0.42}, {"id": "v320", "ph": "48d6a9ef", "equity": 99522538, "ret": -0.48}, {"id": "v308", "ph": "cb12dd0b", "equity": 99484063, "ret": -0.52}, {"id": "v305", "ph": "8cc4eea6", "equity": 99455619, "ret": -0.54}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99404017, "ret": -0.6}, {"id": "v203", "ph": "2071defa", "equity": 99404017, "ret": -0.6}, {"id": "v99", "ph": "fb39409b", "equity": 99365571, "ret": -0.63}, {"id": "v101", "ph": "c4354346", "equity": 99365571, "ret": -0.63}, {"id": "v199", "ph": "390bfab3", "equity": 99365571, "ret": -0.63}, {"id": "v207", "ph": "0f6601a0", "equity": 99365571, "ret": -0.63}, {"id": "v209", "ph": "8730802d", "equity": 99365571, "ret": -0.63}, {"id": "v49", "ph": "cdba73e0", "equity": 99355488, "ret": -0.64}, {"id": "v51", "ph": "21a98e46", "equity": 99355488, "ret": -0.64}, {"id": "v87", "ph": "c0be98c0", "equity": 99018741, "ret": -0.98}, {"id": "v93", "ph": "f10d4e45", "equity": 99018741, "ret": -0.98}, {"id": "v103", "ph": "75b0a37c", "equity": 99018741, "ret": -0.98}, {"id": "v195", "ph": "dd89cf59", "equity": 99018741, "ret": -0.98}, {"id": "v197", "ph": "5c290a32", "equity": 99018741, "ret": -0.98}, {"id": "v201", "ph": "cb8a413e", "equity": 99018741, "ret": -0.98}, {"id": "v205", "ph": "02e5a3f5", "equity": 99018741, "ret": -0.98}, {"id": "v211", "ph": "9227673c", "equity": 99018741, "ret": -0.98}, {"id": "v217", "ph": "4c547a61", "equity": 99002738, "ret": -1.0}, {"id": "v218", "ph": "7304d2d4", "equity": 99002738, "ret": -1.0}, {"id": "v223", "ph": "b57356b8", "equity": 98930370, "ret": -1.07}, {"id": "v224", "ph": "888ab069", "equity": 98930370, "ret": -1.07}, {"id": "v229", "ph": "d9261dfb", "equity": 98930370, "ret": -1.07}, {"id": "v230", "ph": "141579fe", "equity": 98930370, "ret": -1.07}, {"id": "v235", "ph": "3e6c1666", "equity": 98930370, "ret": -1.07}, {"id": "v236", "ph": "f9c75560", "equity": 98930370, "ret": -1.07}, {"id": "v265", "ph": "7faed59d", "equity": 98930370, "ret": -1.07}, {"id": "v266", "ph": "c133b585", "equity": 98930370, "ret": -1.07}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98930370, "ret": -1.07}, {"id": "v272", "ph": "2ed2027f", "equity": 98930370, "ret": -1.07}, {"id": "v277", "ph": "488b612a", "equity": 98930370, "ret": -1.07}, {"id": "v278", "ph": "861fb42b", "equity": 98930370, "ret": -1.07}, {"id": "v283", "ph": "479e4b25", "equity": 98930370, "ret": -1.07}, {"id": "v284", "ph": "261c5d58", "equity": 98930370, "ret": -1.07}, {"id": "v57", "ph": "e7e98b6d", "equity": 98879376, "ret": -1.12}, {"id": "v59", "ph": "1858e2ec", "equity": 98879376, "ret": -1.12}, {"id": "v157", "ph": "80f3e23b", "equity": 98883246, "ret": -1.12}, {"id": "v159", "ph": "af80c67a", "equity": 98883246, "ret": -1.12}, {"id": "v161", "ph": "ed5677e6", "equity": 98879376, "ret": -1.12}, {"id": "v165", "ph": "8f862b27", "equity": 98879376, "ret": -1.12}, {"id": "v167", "ph": "b6d6aed8", "equity": 98879376, "ret": -1.12}, {"id": "v302", "ph": "3f30502d", "equity": 98829145, "ret": -1.17}, {"id": "v107", "ph": "be5cd36b", "equity": 98682584, "ret": -1.32}, {"id": "v213", "ph": "0e1d8e45", "equity": 98682584, "ret": -1.32}, {"id": "v215", "ph": "a904a49d", "equity": 98682584, "ret": -1.32}, {"id": "v89", "ph": "c49d5680", "equity": 98634536, "ret": -1.37}, {"id": "v97", "ph": "ebf31977", "equity": 98634536, "ret": -1.37}, {"id": "v318", "ph": "c99872ef", "equity": 98484983, "ret": -1.52}, {"id": "v105", "ph": "88395429", "equity": 98446363, "ret": -1.55}, {"id": "v310", "ph": "ec9dd55c", "equity": 98385145, "ret": -1.61}, {"id": "v301", "ph": "30da2021", "equity": 98256277, "ret": -1.74}, {"id": "v155", "ph": "31c0d84e", "equity": 98161814, "ret": -1.84}, {"id": "v1", "ph": "4874f4c9", "equity": 97995717, "ret": -2.0}, {"id": "v47", "ph": "ed758fcf", "equity": 97925592, "ret": -2.07}, {"id": "v311", "ph": "8409c6e5", "equity": 97922048, "ret": -2.08}, {"id": "v147", "ph": "2fbeeedb", "equity": 97833766, "ret": -2.17}, {"id": "v149", "ph": "c5329f8d", "equity": 97833766, "ret": -2.17}, {"id": "v151", "ph": "2eb1dd06", "equity": 97833766, "ret": -2.17}, {"id": "v303", "ph": "1a084164", "equity": 97432486, "ret": -2.57}, {"id": "v312", "ph": "4c23846f", "equity": 96768473, "ret": -3.23}, {"id": "v41", "ph": "e9d84e84", "equity": 96633673, "ret": -3.37}, {"id": "v309", "ph": "07610040", "equity": 96389485, "ret": -3.61}, {"id": "v4", "ph": "b6219595", "equity": 96036004, "ret": -3.96}, {"id": "v40", "ph": "70731d89", "equity": 95687271, "ret": -4.31}, {"id": "v296", "ph": "4c554378", "equity": 95071919, "ret": -4.93}, {"id": "v300", "ph": "c6ddc17b", "equity": 93918078, "ret": -6.08}, {"id": "v299", "ph": "25046b1a", "equity": 93683292, "ret": -6.32}, {"id": "v298", "ph": "5d4bbec0", "equity": 92518385, "ret": -7.48}], "20260624": [{"id": "v321", "ph": "e82de49b", "equity": 100085854, "ret": 0.09}, {"id": "v317", "ph": "51f8ee6d", "equity": 100060486, "ret": 0.06}, {"id": "v306", "ph": "6966b8f6", "equity": 100000522, "ret": 0.0}, {"id": "v315", "ph": "e6d5b283", "equity": 99883355, "ret": -0.12}, {"id": "v313", "ph": "b9f4ee72", "equity": 99826917, "ret": -0.17}, {"id": "v307", "ph": "6abce93d", "equity": 99802993, "ret": -0.2}, {"id": "v314", "ph": "7511570e", "equity": 99792429, "ret": -0.21}, {"id": "v91", "ph": "5674a3d7", "equity": 99663265, "ret": -0.34}, {"id": "v81", "ph": "a6eac1e4", "equity": 99636149, "ret": -0.36}, {"id": "v95", "ph": "7e28e756", "equity": 99636149, "ret": -0.36}, {"id": "v308", "ph": "cb12dd0b", "equity": 99546904, "ret": -0.45}, {"id": "v304", "ph": "96c7e8e1", "equity": 99355993, "ret": -0.64}, {"id": "v319", "ph": "ca25f043", "equity": 99288100, "ret": -0.71}, {"id": "v316", "ph": "8dc1d197", "equity": 99193213, "ret": -0.81}, {"id": "v305", "ph": "8cc4eea6", "equity": 99183211, "ret": -0.82}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99163907, "ret": -0.84}, {"id": "v203", "ph": "2071defa", "equity": 99163907, "ret": -0.84}, {"id": "v99", "ph": "fb39409b", "equity": 99152577, "ret": -0.85}, {"id": "v101", "ph": "c4354346", "equity": 99152577, "ret": -0.85}, {"id": "v199", "ph": "390bfab3", "equity": 99152577, "ret": -0.85}, {"id": "v207", "ph": "0f6601a0", "equity": 99152577, "ret": -0.85}, {"id": "v209", "ph": "8730802d", "equity": 99152577, "ret": -0.85}, {"id": "v49", "ph": "cdba73e0", "equity": 99115378, "ret": -0.88}, {"id": "v51", "ph": "21a98e46", "equity": 99115378, "ret": -0.88}, {"id": "v320", "ph": "48d6a9ef", "equity": 99096561, "ret": -0.9}, {"id": "v87", "ph": "c0be98c0", "equity": 99066109, "ret": -0.93}, {"id": "v93", "ph": "f10d4e45", "equity": 99066109, "ret": -0.93}, {"id": "v103", "ph": "75b0a37c", "equity": 99066109, "ret": -0.93}, {"id": "v197", "ph": "5c290a32", "equity": 99066109, "ret": -0.93}, {"id": "v205", "ph": "02e5a3f5", "equity": 99066109, "ret": -0.93}, {"id": "v195", "ph": "dd89cf59", "equity": 98899102, "ret": -1.1}, {"id": "v201", "ph": "cb8a413e", "equity": 98899102, "ret": -1.1}, {"id": "v211", "ph": "9227673c", "equity": 98899102, "ret": -1.1}, {"id": "v107", "ph": "be5cd36b", "equity": 98777904, "ret": -1.22}, {"id": "v213", "ph": "0e1d8e45", "equity": 98777904, "ret": -1.22}, {"id": "v57", "ph": "e7e98b6d", "equity": 98666382, "ret": -1.33}, {"id": "v59", "ph": "1858e2ec", "equity": 98666382, "ret": -1.33}, {"id": "v161", "ph": "ed5677e6", "equity": 98666382, "ret": -1.33}, {"id": "v165", "ph": "8f862b27", "equity": 98666382, "ret": -1.33}, {"id": "v167", "ph": "b6d6aed8", "equity": 98666382, "ret": -1.33}, {"id": "v217", "ph": "4c547a61", "equity": 98672158, "ret": -1.33}, {"id": "v218", "ph": "7304d2d4", "equity": 98672158, "ret": -1.33}, {"id": "v157", "ph": "80f3e23b", "equity": 98643136, "ret": -1.36}, {"id": "v159", "ph": "af80c67a", "equity": 98643136, "ret": -1.36}, {"id": "v89", "ph": "c49d5680", "equity": 98615759, "ret": -1.38}, {"id": "v97", "ph": "ebf31977", "equity": 98615759, "ret": -1.38}, {"id": "v105", "ph": "88395429", "equity": 98597406, "ret": -1.4}, {"id": "v223", "ph": "b57356b8", "equity": 98599790, "ret": -1.4}, {"id": "v224", "ph": "888ab069", "equity": 98599790, "ret": -1.4}, {"id": "v229", "ph": "d9261dfb", "equity": 98599790, "ret": -1.4}, {"id": "v230", "ph": "141579fe", "equity": 98599790, "ret": -1.4}, {"id": "v235", "ph": "3e6c1666", "equity": 98599790, "ret": -1.4}, {"id": "v236", "ph": "f9c75560", "equity": 98599790, "ret": -1.4}, {"id": "v265", "ph": "7faed59d", "equity": 98599790, "ret": -1.4}, {"id": "v266", "ph": "c133b585", "equity": 98599790, "ret": -1.4}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98599790, "ret": -1.4}, {"id": "v272", "ph": "2ed2027f", "equity": 98599790, "ret": -1.4}, {"id": "v277", "ph": "488b612a", "equity": 98599790, "ret": -1.4}, {"id": "v278", "ph": "861fb42b", "equity": 98599790, "ret": -1.4}, {"id": "v283", "ph": "479e4b25", "equity": 98599790, "ret": -1.4}, {"id": "v284", "ph": "261c5d58", "equity": 98599790, "ret": -1.4}, {"id": "v215", "ph": "a904a49d", "equity": 98584893, "ret": -1.42}, {"id": "v302", "ph": "3f30502d", "equity": 98415182, "ret": -1.58}, {"id": "v155", "ph": "31c0d84e", "equity": 98262712, "ret": -1.74}, {"id": "v47", "ph": "ed758fcf", "equity": 98075491, "ret": -1.92}, {"id": "v318", "ph": "c99872ef", "equity": 98060011, "ret": -1.94}, {"id": "v147", "ph": "2fbeeedb", "equity": 97921225, "ret": -2.08}, {"id": "v149", "ph": "c5329f8d", "equity": 97921225, "ret": -2.08}, {"id": "v151", "ph": "2eb1dd06", "equity": 97921225, "ret": -2.08}, {"id": "v311", "ph": "8409c6e5", "equity": 97891655, "ret": -2.11}, {"id": "v301", "ph": "30da2021", "equity": 97750914, "ret": -2.25}, {"id": "v310", "ph": "ec9dd55c", "equity": 97639577, "ret": -2.36}, {"id": "v1", "ph": "4874f4c9", "equity": 97475814, "ret": -2.52}, {"id": "v303", "ph": "1a084164", "equity": 97118111, "ret": -2.88}, {"id": "v41", "ph": "e9d84e84", "equity": 96580621, "ret": -3.42}, {"id": "v4", "ph": "b6219595", "equity": 95980663, "ret": -4.02}, {"id": "v312", "ph": "4c23846f", "equity": 95969821, "ret": -4.03}, {"id": "v309", "ph": "07610040", "equity": 95955384, "ret": -4.04}, {"id": "v40", "ph": "70731d89", "equity": 95748230, "ret": -4.25}, {"id": "v296", "ph": "4c554378", "equity": 94163911, "ret": -5.84}, {"id": "v300", "ph": "c6ddc17b", "equity": 93696621, "ret": -6.3}, {"id": "v299", "ph": "25046b1a", "equity": 93194033, "ret": -6.81}, {"id": "v298", "ph": "5d4bbec0", "equity": 92404552, "ret": -7.6}], "20260625": [{"id": "v317", "ph": "51f8ee6d", "equity": 99993632, "ret": -0.01}, {"id": "v321", "ph": "e82de49b", "equity": 99982218, "ret": -0.02}, {"id": "v315", "ph": "e6d5b283", "equity": 99958954, "ret": -0.04}, {"id": "v306", "ph": "6966b8f6", "equity": 99920351, "ret": -0.08}, {"id": "v314", "ph": "7511570e", "equity": 99898729, "ret": -0.1}, {"id": "v313", "ph": "b9f4ee72", "equity": 99812686, "ret": -0.19}, {"id": "v81", "ph": "a6eac1e4", "equity": 99778449, "ret": -0.22}, {"id": "v91", "ph": "5674a3d7", "equity": 99775565, "ret": -0.22}, {"id": "v95", "ph": "7e28e756", "equity": 99778449, "ret": -0.22}, {"id": "v307", "ph": "6abce93d", "equity": 99783177, "ret": -0.22}, {"id": "v308", "ph": "cb12dd0b", "equity": 99549413, "ret": -0.45}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99326774, "ret": -0.67}, {"id": "v203", "ph": "2071defa", "equity": 99326774, "ret": -0.67}, {"id": "v199", "ph": "390bfab3", "equity": 99282766, "ret": -0.72}, {"id": "v207", "ph": "0f6601a0", "equity": 99282766, "ret": -0.72}, {"id": "v209", "ph": "8730802d", "equity": 99282766, "ret": -0.72}, {"id": "v49", "ph": "cdba73e0", "equity": 99257678, "ret": -0.74}, {"id": "v51", "ph": "21a98e46", "equity": 99257678, "ret": -0.74}, {"id": "v99", "ph": "fb39409b", "equity": 99264877, "ret": -0.74}, {"id": "v101", "ph": "c4354346", "equity": 99264877, "ret": -0.74}, {"id": "v319", "ph": "ca25f043", "equity": 99151697, "ret": -0.85}, {"id": "v304", "ph": "96c7e8e1", "equity": 99087927, "ret": -0.91}, {"id": "v316", "ph": "8dc1d197", "equity": 99064791, "ret": -0.94}, {"id": "v197", "ph": "5c290a32", "equity": 99022763, "ret": -0.98}, {"id": "v205", "ph": "02e5a3f5", "equity": 99022763, "ret": -0.98}, {"id": "v87", "ph": "c0be98c0", "equity": 99004874, "ret": -1.0}, {"id": "v93", "ph": "f10d4e45", "equity": 99004874, "ret": -1.0}, {"id": "v103", "ph": "75b0a37c", "equity": 99004874, "ret": -1.0}, {"id": "v320", "ph": "48d6a9ef", "equity": 98966439, "ret": -1.03}, {"id": "v305", "ph": "8cc4eea6", "equity": 98834032, "ret": -1.17}, {"id": "v157", "ph": "80f3e23b", "equity": 98805812, "ret": -1.19}, {"id": "v159", "ph": "af80c67a", "equity": 98805812, "ret": -1.19}, {"id": "v161", "ph": "ed5677e6", "equity": 98796476, "ret": -1.2}, {"id": "v165", "ph": "8f862b27", "equity": 98796476, "ret": -1.2}, {"id": "v167", "ph": "b6d6aed8", "equity": 98796476, "ret": -1.2}, {"id": "v195", "ph": "dd89cf59", "equity": 98801518, "ret": -1.2}, {"id": "v201", "ph": "cb8a413e", "equity": 98801518, "ret": -1.2}, {"id": "v211", "ph": "9227673c", "equity": 98801518, "ret": -1.2}, {"id": "v57", "ph": "e7e98b6d", "equity": 98778682, "ret": -1.22}, {"id": "v59", "ph": "1858e2ec", "equity": 98778682, "ret": -1.22}, {"id": "v89", "ph": "c49d5680", "equity": 98647719, "ret": -1.35}, {"id": "v97", "ph": "ebf31977", "equity": 98647719, "ret": -1.35}, {"id": "v302", "ph": "3f30502d", "equity": 98641582, "ret": -1.36}, {"id": "v217", "ph": "4c547a61", "equity": 98614246, "ret": -1.39}, {"id": "v218", "ph": "7304d2d4", "equity": 98614246, "ret": -1.39}, {"id": "v213", "ph": "0e1d8e45", "equity": 98585038, "ret": -1.41}, {"id": "v107", "ph": "be5cd36b", "equity": 98564470, "ret": -1.44}, {"id": "v223", "ph": "b57356b8", "equity": 98541878, "ret": -1.46}, {"id": "v224", "ph": "888ab069", "equity": 98541878, "ret": -1.46}, {"id": "v229", "ph": "d9261dfb", "equity": 98541878, "ret": -1.46}, {"id": "v230", "ph": "141579fe", "equity": 98541878, "ret": -1.46}, {"id": "v235", "ph": "3e6c1666", "equity": 98541878, "ret": -1.46}, {"id": "v236", "ph": "f9c75560", "equity": 98541878, "ret": -1.46}, {"id": "v265", "ph": "7faed59d", "equity": 98541878, "ret": -1.46}, {"id": "v266", "ph": "c133b585", "equity": 98541878, "ret": -1.46}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98541878, "ret": -1.46}, {"id": "v272", "ph": "2ed2027f", "equity": 98541878, "ret": -1.46}, {"id": "v277", "ph": "488b612a", "equity": 98541878, "ret": -1.46}, {"id": "v278", "ph": "861fb42b", "equity": 98541878, "ret": -1.46}, {"id": "v283", "ph": "479e4b25", "equity": 98541878, "ret": -1.46}, {"id": "v284", "ph": "261c5d58", "equity": 98541878, "ret": -1.46}, {"id": "v318", "ph": "c99872ef", "equity": 98448234, "ret": -1.55}, {"id": "v105", "ph": "88395429", "equity": 98368172, "ret": -1.63}, {"id": "v215", "ph": "a904a49d", "equity": 98337789, "ret": -1.66}, {"id": "v155", "ph": "31c0d84e", "equity": 98064390, "ret": -1.94}, {"id": "v301", "ph": "30da2021", "equity": 97971314, "ret": -2.03}, {"id": "v310", "ph": "ec9dd55c", "equity": 97969177, "ret": -2.03}, {"id": "v47", "ph": "ed758fcf", "equity": 97846897, "ret": -2.15}, {"id": "v147", "ph": "2fbeeedb", "equity": 97810659, "ret": -2.19}, {"id": "v149", "ph": "c5329f8d", "equity": 97810659, "ret": -2.19}, {"id": "v151", "ph": "2eb1dd06", "equity": 97810659, "ret": -2.19}, {"id": "v1", "ph": "4874f4c9", "equity": 97699714, "ret": -2.3}, {"id": "v311", "ph": "8409c6e5", "equity": 97612070, "ret": -2.39}, {"id": "v40", "ph": "70731d89", "equity": 97128790, "ret": -2.87}, {"id": "v312", "ph": "4c23846f", "equity": 97086568, "ret": -2.91}, {"id": "v303", "ph": "1a084164", "equity": 97078943, "ret": -2.92}, {"id": "v41", "ph": "e9d84e84", "equity": 96647542, "ret": -3.35}, {"id": "v309", "ph": "07610040", "equity": 96637545, "ret": -3.36}, {"id": "v4", "ph": "b6219595", "equity": 96048864, "ret": -3.95}, {"id": "v296", "ph": "4c554378", "equity": 95720669, "ret": -4.28}, {"id": "v299", "ph": "25046b1a", "equity": 95394672, "ret": -4.61}, {"id": "v300", "ph": "c6ddc17b", "equity": 94713522, "ret": -5.29}, {"id": "v298", "ph": "5d4bbec0", "equity": 94020155, "ret": -5.98}], "20260626": [{"id": "v314", "ph": "7511570e", "equity": 99900880, "ret": -0.1}, {"id": "v315", "ph": "e6d5b283", "equity": 99816609, "ret": -0.18}, {"id": "v81", "ph": "a6eac1e4", "equity": 99807451, "ret": -0.19}, {"id": "v95", "ph": "7e28e756", "equity": 99807451, "ret": -0.19}, {"id": "v321", "ph": "e82de49b", "equity": 99813711, "ret": -0.19}, {"id": "v91", "ph": "5674a3d7", "equity": 99782191, "ret": -0.22}, {"id": "v313", "ph": "b9f4ee72", "equity": 99685397, "ret": -0.31}, {"id": "v307", "ph": "6abce93d", "equity": 99640613, "ret": -0.36}, {"id": "v306", "ph": "6966b8f6", "equity": 99583813, "ret": -0.42}, {"id": "v317", "ph": "51f8ee6d", "equity": 99551515, "ret": -0.45}, {"id": "v49", "ph": "cdba73e0", "equity": 99286680, "ret": -0.71}, {"id": "v51", "ph": "21a98e46", "equity": 99286680, "ret": -0.71}, {"id": "v308", "ph": "cb12dd0b", "equity": 99293485, "ret": -0.71}, {"id": "v99", "ph": "fb39409b", "equity": 99271503, "ret": -0.73}, {"id": "v101", "ph": "c4354346", "equity": 99271503, "ret": -0.73}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99108526, "ret": -0.89}, {"id": "v203", "ph": "2071defa", "equity": 99108526, "ret": -0.89}, {"id": "v199", "ph": "390bfab3", "equity": 99074342, "ret": -0.93}, {"id": "v207", "ph": "0f6601a0", "equity": 99074342, "ret": -0.93}, {"id": "v209", "ph": "8730802d", "equity": 99074342, "ret": -0.93}, {"id": "v87", "ph": "c0be98c0", "equity": 98896181, "ret": -1.1}, {"id": "v93", "ph": "f10d4e45", "equity": 98896181, "ret": -1.1}, {"id": "v103", "ph": "75b0a37c", "equity": 98896181, "ret": -1.1}, {"id": "v319", "ph": "ca25f043", "equity": 98901880, "ret": -1.1}, {"id": "v304", "ph": "96c7e8e1", "equity": 98807436, "ret": -1.19}, {"id": "v57", "ph": "e7e98b6d", "equity": 98785308, "ret": -1.21}, {"id": "v59", "ph": "1858e2ec", "equity": 98785308, "ret": -1.21}, {"id": "v316", "ph": "8dc1d197", "equity": 98720505, "ret": -1.28}, {"id": "v197", "ph": "5c290a32", "equity": 98699020, "ret": -1.3}, {"id": "v205", "ph": "02e5a3f5", "equity": 98699020, "ret": -1.3}, {"id": "v302", "ph": "3f30502d", "equity": 98665893, "ret": -1.33}, {"id": "v157", "ph": "80f3e23b", "equity": 98589864, "ret": -1.41}, {"id": "v159", "ph": "af80c67a", "equity": 98589864, "ret": -1.41}, {"id": "v161", "ph": "ed5677e6", "equity": 98589202, "ret": -1.41}, {"id": "v165", "ph": "8f862b27", "equity": 98589202, "ret": -1.41}, {"id": "v167", "ph": "b6d6aed8", "equity": 98589202, "ret": -1.41}, {"id": "v320", "ph": "48d6a9ef", "equity": 98583273, "ret": -1.42}, {"id": "v89", "ph": "c49d5680", "equity": 98542206, "ret": -1.46}, {"id": "v97", "ph": "ebf31977", "equity": 98542206, "ret": -1.46}, {"id": "v195", "ph": "dd89cf59", "equity": 98454369, "ret": -1.55}, {"id": "v201", "ph": "cb8a413e", "equity": 98454369, "ret": -1.55}, {"id": "v211", "ph": "9227673c", "equity": 98454369, "ret": -1.55}, {"id": "v305", "ph": "8cc4eea6", "equity": 98401081, "ret": -1.6}, {"id": "v217", "ph": "4c547a61", "equity": 98351778, "ret": -1.65}, {"id": "v218", "ph": "7304d2d4", "equity": 98351778, "ret": -1.65}, {"id": "v223", "ph": "b57356b8", "equity": 98279410, "ret": -1.72}, {"id": "v224", "ph": "888ab069", "equity": 98279410, "ret": -1.72}, {"id": "v229", "ph": "d9261dfb", "equity": 98279410, "ret": -1.72}, {"id": "v230", "ph": "141579fe", "equity": 98279410, "ret": -1.72}, {"id": "v235", "ph": "3e6c1666", "equity": 98279410, "ret": -1.72}, {"id": "v236", "ph": "f9c75560", "equity": 98279410, "ret": -1.72}, {"id": "v265", "ph": "7faed59d", "equity": 98279410, "ret": -1.72}, {"id": "v266", "ph": "c133b585", "equity": 98279410, "ret": -1.72}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98279410, "ret": -1.72}, {"id": "v272", "ph": "2ed2027f", "equity": 98279410, "ret": -1.72}, {"id": "v277", "ph": "488b612a", "equity": 98279410, "ret": -1.72}, {"id": "v278", "ph": "861fb42b", "equity": 98279410, "ret": -1.72}, {"id": "v283", "ph": "479e4b25", "equity": 98279410, "ret": -1.72}, {"id": "v284", "ph": "261c5d58", "equity": 98279410, "ret": -1.72}, {"id": "v105", "ph": "88395429", "equity": 98222164, "ret": -1.78}, {"id": "v107", "ph": "be5cd36b", "equity": 98198994, "ret": -1.8}, {"id": "v301", "ph": "30da2021", "equity": 97988925, "ret": -2.01}, {"id": "v213", "ph": "0e1d8e45", "equity": 97972312, "ret": -2.03}, {"id": "v1", "ph": "4874f4c9", "equity": 97711838, "ret": -2.29}, {"id": "v47", "ph": "ed758fcf", "equity": 97704069, "ret": -2.3}, {"id": "v215", "ph": "a904a49d", "equity": 97701657, "ret": -2.3}, {"id": "v155", "ph": "31c0d84e", "equity": 97449295, "ret": -2.55}, {"id": "v318", "ph": "c99872ef", "equity": 97391096, "ret": -2.61}, {"id": "v147", "ph": "2fbeeedb", "equity": 97369471, "ret": -2.63}, {"id": "v149", "ph": "c5329f8d", "equity": 97369471, "ret": -2.63}, {"id": "v151", "ph": "2eb1dd06", "equity": 97369471, "ret": -2.63}, {"id": "v311", "ph": "8409c6e5", "equity": 96938905, "ret": -3.06}, {"id": "v303", "ph": "1a084164", "equity": 96838921, "ret": -3.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 96814041, "ret": -3.19}, {"id": "v41", "ph": "e9d84e84", "equity": 96436419, "ret": -3.56}, {"id": "v40", "ph": "70731d89", "equity": 96034565, "ret": -3.97}, {"id": "v309", "ph": "07610040", "equity": 95970701, "ret": -4.03}, {"id": "v4", "ph": "b6219595", "equity": 95844101, "ret": -4.16}, {"id": "v312", "ph": "4c23846f", "equity": 94932436, "ret": -5.07}, {"id": "v296", "ph": "4c554378", "equity": 93944044, "ret": -6.06}, {"id": "v300", "ph": "c6ddc17b", "equity": 93694239, "ret": -6.31}, {"id": "v298", "ph": "5d4bbec0", "equity": 92024557, "ret": -7.98}, {"id": "v299", "ph": "25046b1a", "equity": 91806294, "ret": -8.19}], "20260629": [{"id": "v306", "ph": "6966b8f6", "equity": 100300459, "ret": 0.3}, {"id": "v321", "ph": "e82de49b", "equity": 100189547, "ret": 0.19}, {"id": "v308", "ph": "cb12dd0b", "equity": 99999961, "ret": -0.0}, {"id": "v314", "ph": "7511570e", "equity": 99813480, "ret": -0.19}, {"id": "v313", "ph": "b9f4ee72", "equity": 99730074, "ret": -0.27}, {"id": "v307", "ph": "6abce93d", "equity": 99697202, "ret": -0.3}, {"id": "v317", "ph": "51f8ee6d", "equity": 99696555, "ret": -0.3}, {"id": "v91", "ph": "5674a3d7", "equity": 99687191, "ret": -0.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 99674451, "ret": -0.33}, {"id": "v95", "ph": "7e28e756", "equity": 99674451, "ret": -0.33}, {"id": "v315", "ph": "e6d5b283", "equity": 99654810, "ret": -0.35}, {"id": "v87", "ph": "c0be98c0", "equity": 99491935, "ret": -0.51}, {"id": "v93", "ph": "f10d4e45", "equity": 99491935, "ret": -0.51}, {"id": "v103", "ph": "75b0a37c", "equity": 99491935, "ret": -0.51}, {"id": "v197", "ph": "5c290a32", "equity": 99388275, "ret": -0.61}, {"id": "v205", "ph": "02e5a3f5", "equity": 99388275, "ret": -0.61}, {"id": "v99", "ph": "fb39409b", "equity": 99176503, "ret": -0.82}, {"id": "v101", "ph": "c4354346", "equity": 99176503, "ret": -0.82}, {"id": "v49", "ph": "cdba73e0", "equity": 99153680, "ret": -0.85}, {"id": "v51", "ph": "21a98e46", "equity": 99153680, "ret": -0.85}, {"id": "v195", "ph": "dd89cf59", "equity": 99143624, "ret": -0.86}, {"id": "v201", "ph": "cb8a413e", "equity": 99143624, "ret": -0.86}, {"id": "v211", "ph": "9227673c", "equity": 99143624, "ret": -0.86}, {"id": "v89", "ph": "c49d5680", "equity": 99133820, "ret": -0.87}, {"id": "v97", "ph": "ebf31977", "equity": 99133820, "ret": -0.87}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99083026, "ret": -0.92}, {"id": "v203", "ph": "2071defa", "equity": 99083026, "ret": -0.92}, {"id": "v199", "ph": "390bfab3", "equity": 99072842, "ret": -0.93}, {"id": "v207", "ph": "0f6601a0", "equity": 99072842, "ret": -0.93}, {"id": "v209", "ph": "8730802d", "equity": 99072842, "ret": -0.93}, {"id": "v319", "ph": "ca25f043", "equity": 99052498, "ret": -0.95}, {"id": "v105", "ph": "88395429", "equity": 99012940, "ret": -0.99}, {"id": "v107", "ph": "be5cd36b", "equity": 98985970, "ret": -1.01}, {"id": "v316", "ph": "8dc1d197", "equity": 98925942, "ret": -1.07}, {"id": "v304", "ph": "96c7e8e1", "equity": 98923153, "ret": -1.08}, {"id": "v213", "ph": "0e1d8e45", "equity": 98866788, "ret": -1.13}, {"id": "v320", "ph": "48d6a9ef", "equity": 98801732, "ret": -1.2}, {"id": "v305", "ph": "8cc4eea6", "equity": 98794030, "ret": -1.21}, {"id": "v57", "ph": "e7e98b6d", "equity": 98690308, "ret": -1.31}, {"id": "v59", "ph": "1858e2ec", "equity": 98690308, "ret": -1.31}, {"id": "v147", "ph": "2fbeeedb", "equity": 98693892, "ret": -1.31}, {"id": "v149", "ph": "c5329f8d", "equity": 98693892, "ret": -1.31}, {"id": "v151", "ph": "2eb1dd06", "equity": 98693892, "ret": -1.31}, {"id": "v215", "ph": "a904a49d", "equity": 98596133, "ret": -1.4}, {"id": "v161", "ph": "ed5677e6", "equity": 98587202, "ret": -1.41}, {"id": "v165", "ph": "8f862b27", "equity": 98587202, "ret": -1.41}, {"id": "v167", "ph": "b6d6aed8", "equity": 98587202, "ret": -1.41}, {"id": "v157", "ph": "80f3e23b", "equity": 98563364, "ret": -1.44}, {"id": "v159", "ph": "af80c67a", "equity": 98563364, "ret": -1.44}, {"id": "v302", "ph": "3f30502d", "equity": 98543843, "ret": -1.46}, {"id": "v47", "ph": "ed758fcf", "equity": 98490705, "ret": -1.51}, {"id": "v217", "ph": "4c547a61", "equity": 98406867, "ret": -1.59}, {"id": "v218", "ph": "7304d2d4", "equity": 98406867, "ret": -1.59}, {"id": "v155", "ph": "31c0d84e", "equity": 98342931, "ret": -1.66}, {"id": "v223", "ph": "b57356b8", "equity": 98334499, "ret": -1.67}, {"id": "v224", "ph": "888ab069", "equity": 98334499, "ret": -1.67}, {"id": "v229", "ph": "d9261dfb", "equity": 98334499, "ret": -1.67}, {"id": "v230", "ph": "141579fe", "equity": 98334499, "ret": -1.67}, {"id": "v235", "ph": "3e6c1666", "equity": 98334499, "ret": -1.67}, {"id": "v236", "ph": "f9c75560", "equity": 98334499, "ret": -1.67}, {"id": "v265", "ph": "7faed59d", "equity": 98334499, "ret": -1.67}, {"id": "v266", "ph": "c133b585", "equity": 98334499, "ret": -1.67}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98334499, "ret": -1.67}, {"id": "v272", "ph": "2ed2027f", "equity": 98334499, "ret": -1.67}, {"id": "v277", "ph": "488b612a", "equity": 98334499, "ret": -1.67}, {"id": "v278", "ph": "861fb42b", "equity": 98334499, "ret": -1.67}, {"id": "v283", "ph": "479e4b25", "equity": 98334499, "ret": -1.67}, {"id": "v284", "ph": "261c5d58", "equity": 98334499, "ret": -1.67}, {"id": "v301", "ph": "30da2021", "equity": 97870675, "ret": -2.13}, {"id": "v41", "ph": "e9d84e84", "equity": 97642337, "ret": -2.36}, {"id": "v1", "ph": "4874f4c9", "equity": 97618226, "ret": -2.38}, {"id": "v4", "ph": "b6219595", "equity": 97133478, "ret": -2.87}, {"id": "v40", "ph": "70731d89", "equity": 97128027, "ret": -2.87}, {"id": "v303", "ph": "1a084164", "equity": 96941008, "ret": -3.06}, {"id": "v310", "ph": "ec9dd55c", "equity": 96874396, "ret": -3.13}, {"id": "v318", "ph": "c99872ef", "equity": 96778920, "ret": -3.22}, {"id": "v311", "ph": "8409c6e5", "equity": 96345178, "ret": -3.65}, {"id": "v309", "ph": "07610040", "equity": 95447771, "ret": -4.55}, {"id": "v300", "ph": "c6ddc17b", "equity": 94255949, "ret": -5.74}, {"id": "v296", "ph": "4c554378", "equity": 93871964, "ret": -6.13}, {"id": "v312", "ph": "4c23846f", "equity": 93604983, "ret": -6.4}, {"id": "v298", "ph": "5d4bbec0", "equity": 91385783, "ret": -8.61}, {"id": "v299", "ph": "25046b1a", "equity": 91015801, "ret": -8.98}], "20260630": [{"id": "v308", "ph": "cb12dd0b", "equity": 102469206, "ret": 2.47}, {"id": "v147", "ph": "2fbeeedb", "equity": 102192163, "ret": 2.19}, {"id": "v149", "ph": "c5329f8d", "equity": 102192163, "ret": 2.19}, {"id": "v151", "ph": "2eb1dd06", "equity": 102192163, "ret": 2.19}, {"id": "v306", "ph": "6966b8f6", "equity": 102132719, "ret": 2.13}, {"id": "v40", "ph": "70731d89", "equity": 101679673, "ret": 1.68}, {"id": "v321", "ph": "e82de49b", "equity": 101535047, "ret": 1.54}, {"id": "v41", "ph": "e9d84e84", "equity": 101160969, "ret": 1.16}, {"id": "v105", "ph": "88395429", "equity": 101130434, "ret": 1.13}, {"id": "v107", "ph": "be5cd36b", "equity": 101112564, "ret": 1.11}, {"id": "v87", "ph": "c0be98c0", "equity": 101073595, "ret": 1.07}, {"id": "v93", "ph": "f10d4e45", "equity": 101073595, "ret": 1.07}, {"id": "v103", "ph": "75b0a37c", "equity": 101073595, "ret": 1.07}, {"id": "v47", "ph": "ed758fcf", "equity": 100911006, "ret": 0.91}, {"id": "v4", "ph": "b6219595", "equity": 100843214, "ret": 0.84}, {"id": "v197", "ph": "5c290a32", "equity": 100829685, "ret": 0.83}, {"id": "v205", "ph": "02e5a3f5", "equity": 100829685, "ret": 0.83}, {"id": "v213", "ph": "0e1d8e45", "equity": 100832132, "ret": 0.83}, {"id": "v89", "ph": "c49d5680", "equity": 100713689, "ret": 0.71}, {"id": "v97", "ph": "ebf31977", "equity": 100713689, "ret": 0.71}, {"id": "v155", "ph": "31c0d84e", "equity": 100602732, "ret": 0.6}, {"id": "v195", "ph": "dd89cf59", "equity": 100586342, "ret": 0.59}, {"id": "v201", "ph": "cb8a413e", "equity": 100586342, "ret": 0.59}, {"id": "v211", "ph": "9227673c", "equity": 100586342, "ret": 0.59}, {"id": "v215", "ph": "a904a49d", "equity": 100561477, "ret": 0.56}, {"id": "v317", "ph": "51f8ee6d", "equity": 100498339, "ret": 0.5}, {"id": "v315", "ph": "e6d5b283", "equity": 100458935, "ret": 0.46}, {"id": "v314", "ph": "7511570e", "equity": 100173078, "ret": 0.17}, {"id": "v81", "ph": "a6eac1e4", "equity": 99935386, "ret": -0.06}, {"id": "v95", "ph": "7e28e756", "equity": 99935386, "ret": -0.06}, {"id": "v91", "ph": "5674a3d7", "equity": 99861051, "ret": -0.14}, {"id": "v307", "ph": "6abce93d", "equity": 99777709, "ret": -0.22}, {"id": "v305", "ph": "8cc4eea6", "equity": 99743065, "ret": -0.26}, {"id": "v313", "ph": "b9f4ee72", "equity": 99742527, "ret": -0.26}, {"id": "v49", "ph": "cdba73e0", "equity": 99721831, "ret": -0.28}, {"id": "v51", "ph": "21a98e46", "equity": 99721831, "ret": -0.28}, {"id": "v316", "ph": "8dc1d197", "equity": 99373992, "ret": -0.63}, {"id": "v302", "ph": "3f30502d", "equity": 99359071, "ret": -0.64}, {"id": "v99", "ph": "fb39409b", "equity": 99351671, "ret": -0.65}, {"id": "v101", "ph": "c4354346", "equity": 99351671, "ret": -0.65}, {"id": "v304", "ph": "96c7e8e1", "equity": 99275158, "ret": -0.72}, {"id": "v320", "ph": "48d6a9ef", "equity": 99264932, "ret": -0.74}, {"id": "v319", "ph": "ca25f043", "equity": 99228748, "ret": -0.77}, {"id": "v189", "ph": "dfdbd0c8", "equity": 99184020, "ret": -0.82}, {"id": "v203", "ph": "2071defa", "equity": 99184020, "ret": -0.82}, {"id": "v199", "ph": "390bfab3", "equity": 99107760, "ret": -0.89}, {"id": "v207", "ph": "0f6601a0", "equity": 99107760, "ret": -0.89}, {"id": "v209", "ph": "8730802d", "equity": 99107760, "ret": -0.89}, {"id": "v57", "ph": "e7e98b6d", "equity": 99089809, "ret": -0.91}, {"id": "v59", "ph": "1858e2ec", "equity": 99089809, "ret": -0.91}, {"id": "v157", "ph": "80f3e23b", "equity": 98971766, "ret": -1.03}, {"id": "v159", "ph": "af80c67a", "equity": 98971766, "ret": -1.03}, {"id": "v161", "ph": "ed5677e6", "equity": 98847202, "ret": -1.15}, {"id": "v165", "ph": "8f862b27", "equity": 98847202, "ret": -1.15}, {"id": "v167", "ph": "b6d6aed8", "equity": 98847202, "ret": -1.15}, {"id": "v311", "ph": "8409c6e5", "equity": 98788881, "ret": -1.21}, {"id": "v301", "ph": "30da2021", "equity": 98678112, "ret": -1.32}, {"id": "v1", "ph": "4874f4c9", "equity": 98537662, "ret": -1.46}, {"id": "v217", "ph": "4c547a61", "equity": 98541610, "ret": -1.46}, {"id": "v218", "ph": "7304d2d4", "equity": 98541610, "ret": -1.46}, {"id": "v309", "ph": "07610040", "equity": 98525429, "ret": -1.47}, {"id": "v310", "ph": "ec9dd55c", "equity": 98512835, "ret": -1.49}, {"id": "v223", "ph": "b57356b8", "equity": 98469242, "ret": -1.53}, {"id": "v224", "ph": "888ab069", "equity": 98469242, "ret": -1.53}, {"id": "v229", "ph": "d9261dfb", "equity": 98469242, "ret": -1.53}, {"id": "v230", "ph": "141579fe", "equity": 98469242, "ret": -1.53}, {"id": "v235", "ph": "3e6c1666", "equity": 98469242, "ret": -1.53}, {"id": "v236", "ph": "f9c75560", "equity": 98469242, "ret": -1.53}, {"id": "v265", "ph": "7faed59d", "equity": 98469242, "ret": -1.53}, {"id": "v266", "ph": "c133b585", "equity": 98469242, "ret": -1.53}, {"id": "v271", "ph": "2b9ccdcd", "equity": 98469242, "ret": -1.53}, {"id": "v272", "ph": "2ed2027f", "equity": 98469242, "ret": -1.53}, {"id": "v277", "ph": "488b612a", "equity": 98469242, "ret": -1.53}, {"id": "v278", "ph": "861fb42b", "equity": 98469242, "ret": -1.53}, {"id": "v283", "ph": "479e4b25", "equity": 98469242, "ret": -1.53}, {"id": "v284", "ph": "261c5d58", "equity": 98469242, "ret": -1.53}, {"id": "v318", "ph": "c99872ef", "equity": 97999020, "ret": -2.0}, {"id": "v303", "ph": "1a084164", "equity": 97258359, "ret": -2.74}, {"id": "v300", "ph": "c6ddc17b", "equity": 96532942, "ret": -3.47}, {"id": "v312", "ph": "4c23846f", "equity": 96196017, "ret": -3.8}, {"id": "v298", "ph": "5d4bbec0", "equity": 94827463, "ret": -5.17}, {"id": "v296", "ph": "4c554378", "equity": 94813548, "ret": -5.19}, {"id": "v299", "ph": "25046b1a", "equity": 93333201, "ret": -6.67}], "20260701": [{"id": "v308", "ph": "cb12dd0b", "equity": 101360932, "ret": 1.36}, {"id": "v306", "ph": "6966b8f6", "equity": 101023539, "ret": 1.02}, {"id": "v321", "ph": "e82de49b", "equity": 100836847, "ret": 0.84}, {"id": "v315", "ph": "e6d5b283", "equity": 100570300, "ret": 0.57}, {"id": "v314", "ph": "7511570e", "equity": 100059178, "ret": 0.06}, {"id": "v87", "ph": "c0be98c0", "equity": 99918552, "ret": -0.08}, {"id": "v93", "ph": "f10d4e45", "equity": 99918552, "ret": -0.08}, {"id": "v103", "ph": "75b0a37c", "equity": 99860630, "ret": -0.14}, {"id": "v317", "ph": "51f8ee6d", "equity": 99859195, "ret": -0.14}, {"id": "v81", "ph": "a6eac1e4", "equity": 99804200, "ret": -0.2}, {"id": "v95", "ph": "7e28e756", "equity": 99804200, "ret": -0.2}, {"id": "v91", "ph": "5674a3d7", "equity": 99732447, "ret": -0.27}, {"id": "v147", "ph": "2fbeeedb", "equity": 99693486, "ret": -0.31}, {"id": "v151", "ph": "2eb1dd06", "equity": 99693486, "ret": -0.31}, {"id": "v49", "ph": "cdba73e0", "equity": 99613131, "ret": -0.39}, {"id": "v51", "ph": "21a98e46", "equity": 99613131, "ret": -0.39}, {"id": "v197", "ph": "5c290a32", "equity": 99601051, "ret": -0.4}, {"id": "v149", "ph": "c5329f8d", "equity": 99575229, "ret": -0.42}, {"id": "v89", "ph": "c49d5680", "equity": 99567185, "ret": -0.43}, {"id": "v105", "ph": "88395429", "equity": 99565829, "ret": -0.43}, {"id": "v107", "ph": "be5cd36b", "equity": 99546459, "ret": -0.45}, {"id": "v205", "ph": "02e5a3f5", "equity": 99543130, "ret": -0.46}, {"id": "v97", "ph": "ebf31977", "equity": 99509263, "ret": -0.49}, {"id": "v195", "ph": "dd89cf59", "equity": 99462748, "ret": -0.54}, {"id": "v201", "ph": "cb8a413e", "equity": 99462748, "ret": -0.54}, {"id": "v211", "ph": "9227673c", "equity": 99404827, "ret": -0.6}, {"id": "v47", "ph": "ed758fcf", "equity": 99370627, "ret": -0.63}, {"id": "v99", "ph": "fb39409b", "equity": 99226467, "ret": -0.77}, {"id": "v101", "ph": "c4354346", "equity": 99226467, "ret": -0.77}, {"id": "v213", "ph": "0e1d8e45", "equity": 99196638, "ret": -0.8}, {"id": "v302", "ph": "3f30502d", "equity": 99089671, "ret": -0.91}, {"id": "v40", "ph": "70731d89", "equity": 99078373, "ret": -0.92}, {"id": "v313", "ph": "b9f4ee72", "equity": 99063825, "ret": -0.94}, {"id": "v215", "ph": "a904a49d", "equity": 99027622, "ret": -0.97}, {"id": "v207", "ph": "0f6601a0", "equity": 99015662, "ret": -0.98}, {"id": "v209", "ph": "8730802d", "equity": 99015662, "ret": -0.98}, {"id": "v155", "ph": "31c0d84e", "equity": 98992814, "ret": -1.01}, {"id": "v189", "ph": "dfdbd0c8", "equity": 98988762, "ret": -1.01}, {"id": "v203", "ph": "2071defa", "equity": 98988762, "ret": -1.01}, {"id": "v57", "ph": "e7e98b6d", "equity": 98982309, "ret": -1.02}, {"id": "v59", "ph": "1858e2ec", "equity": 98982309, "ret": -1.02}, {"id": "v199", "ph": "390bfab3", "equity": 98915940, "ret": -1.08}, {"id": "v307", "ph": "6abce93d", "equity": 98890484, "ret": -1.11}, {"id": "v319", "ph": "ca25f043", "equity": 98830572, "ret": -1.17}, {"id": "v157", "ph": "80f3e23b", "equity": 98795294, "ret": -1.2}, {"id": "v159", "ph": "af80c67a", "equity": 98795294, "ret": -1.2}, {"id": "v161", "ph": "ed5677e6", "equity": 98767602, "ret": -1.23}, {"id": "v165", "ph": "8f862b27", "equity": 98767602, "ret": -1.23}, {"id": "v167", "ph": "b6d6aed8", "equity": 98767602, "ret": -1.23}, {"id": "v316", "ph": "8dc1d197", "equity": 98752327, "ret": -1.25}, {"id": "v41", "ph": "e9d84e84", "equity": 98699639, "ret": -1.3}, {"id": "v305", "ph": "8cc4eea6", "equity": 98581531, "ret": -1.42}, {"id": "v304", "ph": "96c7e8e1", "equity": 98559814, "ret": -1.44}, {"id": "v320", "ph": "48d6a9ef", "equity": 98556948, "ret": -1.44}, {"id": "v4", "ph": "b6219595", "equity": 98505594, "ret": -1.49}, {"id": "v301", "ph": "30da2021", "equity": 98413612, "ret": -1.59}, {"id": "v1", "ph": "4874f4c9", "equity": 98294162, "ret": -1.71}, {"id": "v310", "ph": "ec9dd55c", "equity": 97841463, "ret": -2.16}, {"id": "v217", "ph": "4c547a61", "equity": 97681778, "ret": -2.32}, {"id": "v218", "ph": "7304d2d4", "equity": 97681778, "ret": -2.32}, {"id": "v223", "ph": "b57356b8", "equity": 97609410, "ret": -2.39}, {"id": "v224", "ph": "888ab069", "equity": 97609410, "ret": -2.39}, {"id": "v229", "ph": "d9261dfb", "equity": 97609410, "ret": -2.39}, {"id": "v230", "ph": "141579fe", "equity": 97609410, "ret": -2.39}, {"id": "v235", "ph": "3e6c1666", "equity": 97609410, "ret": -2.39}, {"id": "v236", "ph": "f9c75560", "equity": 97609410, "ret": -2.39}, {"id": "v265", "ph": "7faed59d", "equity": 97609410, "ret": -2.39}, {"id": "v266", "ph": "c133b585", "equity": 97609410, "ret": -2.39}, {"id": "v271", "ph": "2b9ccdcd", "equity": 97609410, "ret": -2.39}, {"id": "v272", "ph": "2ed2027f", "equity": 97609410, "ret": -2.39}, {"id": "v277", "ph": "488b612a", "equity": 97609410, "ret": -2.39}, {"id": "v278", "ph": "861fb42b", "equity": 97609410, "ret": -2.39}, {"id": "v283", "ph": "479e4b25", "equity": 97609410, "ret": -2.39}, {"id": "v284", "ph": "261c5d58", "equity": 97609410, "ret": -2.39}, {"id": "v309", "ph": "07610040", "equity": 97561429, "ret": -2.44}, {"id": "v311", "ph": "8409c6e5", "equity": 97339411, "ret": -2.66}, {"id": "v318", "ph": "c99872ef", "equity": 96866665, "ret": -3.13}, {"id": "v303", "ph": "1a084164", "equity": 96567001, "ret": -3.43}, {"id": "v312", "ph": "4c23846f", "equity": 94754537, "ret": -5.25}, {"id": "v300", "ph": "c6ddc17b", "equity": 93711266, "ret": -6.29}, {"id": "v296", "ph": "4c554378", "equity": 93238208, "ret": -6.76}, {"id": "v298", "ph": "5d4bbec0", "equity": 91885138, "ret": -8.11}, {"id": "v299", "ph": "25046b1a", "equity": 90740541, "ret": -9.26}], "20260702": [{"id": "v321", "ph": "e82de49b", "equity": 98791447, "ret": -1.21}, {"id": "v319", "ph": "ca25f043", "equity": 98585872, "ret": -1.41}, {"id": "v313", "ph": "b9f4ee72", "equity": 98254344, "ret": -1.75}, {"id": "v317", "ph": "51f8ee6d", "equity": 98083547, "ret": -1.92}, {"id": "v316", "ph": "8dc1d197", "equity": 97958697, "ret": -2.04}, {"id": "v306", "ph": "6966b8f6", "equity": 97799665, "ret": -2.2}, {"id": "v320", "ph": "48d6a9ef", "equity": 97726108, "ret": -2.27}, {"id": "v314", "ph": "7511570e", "equity": 97620794, "ret": -2.38}, {"id": "v307", "ph": "6abce93d", "equity": 97389674, "ret": -2.61}, {"id": "v205", "ph": "02e5a3f5", "equity": 97246999, "ret": -2.75}, {"id": "v91", "ph": "5674a3d7", "equity": 97234833, "ret": -2.77}, {"id": "v81", "ph": "a6eac1e4", "equity": 96929027, "ret": -3.07}, {"id": "v95", "ph": "7e28e756", "equity": 96929027, "ret": -3.07}, {"id": "v99", "ph": "fb39409b", "equity": 96779933, "ret": -3.22}, {"id": "v101", "ph": "c4354346", "equity": 96779933, "ret": -3.22}, {"id": "v49", "ph": "cdba73e0", "equity": 96739834, "ret": -3.26}, {"id": "v51", "ph": "21a98e46", "equity": 96739834, "ret": -3.26}, {"id": "v199", "ph": "390bfab3", "equity": 96631456, "ret": -3.37}, {"id": "v304", "ph": "96c7e8e1", "equity": 96611170, "ret": -3.39}, {"id": "v197", "ph": "5c290a32", "equity": 96566014, "ret": -3.43}, {"id": "v207", "ph": "0f6601a0", "equity": 96572081, "ret": -3.43}, {"id": "v209", "ph": "8730802d", "equity": 96572081, "ret": -3.43}, {"id": "v57", "ph": "e7e98b6d", "equity": 96539505, "ret": -3.46}, {"id": "v59", "ph": "1858e2ec", "equity": 96539505, "ret": -3.46}, {"id": "v103", "ph": "75b0a37c", "equity": 96385631, "ret": -3.61}, {"id": "v161", "ph": "ed5677e6", "equity": 96318491, "ret": -3.68}, {"id": "v165", "ph": "8f862b27", "equity": 96318491, "ret": -3.68}, {"id": "v167", "ph": "b6d6aed8", "equity": 96318491, "ret": -3.68}, {"id": "v315", "ph": "e6d5b283", "equity": 96255988, "ret": -3.74}, {"id": "v195", "ph": "dd89cf59", "equity": 96182658, "ret": -3.82}, {"id": "v201", "ph": "cb8a413e", "equity": 96182658, "ret": -3.82}, {"id": "v189", "ph": "dfdbd0c8", "equity": 96136966, "ret": -3.86}, {"id": "v203", "ph": "2071defa", "equity": 96136966, "ret": -3.86}, {"id": "v217", "ph": "4c547a61", "equity": 96094928, "ret": -3.91}, {"id": "v218", "ph": "7304d2d4", "equity": 96094928, "ret": -3.91}, {"id": "v305", "ph": "8cc4eea6", "equity": 96059397, "ret": -3.94}, {"id": "v308", "ph": "cb12dd0b", "equity": 96046199, "ret": -3.95}, {"id": "v223", "ph": "b57356b8", "equity": 96022560, "ret": -3.98}, {"id": "v224", "ph": "888ab069", "equity": 96022560, "ret": -3.98}, {"id": "v229", "ph": "d9261dfb", "equity": 96022560, "ret": -3.98}, {"id": "v230", "ph": "141579fe", "equity": 96022560, "ret": -3.98}, {"id": "v235", "ph": "3e6c1666", "equity": 96022560, "ret": -3.98}, {"id": "v236", "ph": "f9c75560", "equity": 96022560, "ret": -3.98}, {"id": "v265", "ph": "7faed59d", "equity": 96022560, "ret": -3.98}, {"id": "v266", "ph": "c133b585", "equity": 96022560, "ret": -3.98}, {"id": "v271", "ph": "2b9ccdcd", "equity": 96022560, "ret": -3.98}, {"id": "v272", "ph": "2ed2027f", "equity": 96022560, "ret": -3.98}, {"id": "v277", "ph": "488b612a", "equity": 96022560, "ret": -3.98}, {"id": "v278", "ph": "861fb42b", "equity": 96022560, "ret": -3.98}, {"id": "v283", "ph": "479e4b25", "equity": 96022560, "ret": -3.98}, {"id": "v284", "ph": "261c5d58", "equity": 96022560, "ret": -3.98}, {"id": "v97", "ph": "ebf31977", "equity": 95995095, "ret": -4.0}, {"id": "v157", "ph": "80f3e23b", "equity": 95937374, "ret": -4.06}, {"id": "v159", "ph": "af80c67a", "equity": 95937374, "ret": -4.06}, {"id": "v211", "ph": "9227673c", "equity": 95933695, "ret": -4.07}, {"id": "v87", "ph": "c0be98c0", "equity": 95582492, "ret": -4.42}, {"id": "v93", "ph": "f10d4e45", "equity": 95582492, "ret": -4.42}, {"id": "v302", "ph": "3f30502d", "equity": 95445187, "ret": -4.55}, {"id": "v105", "ph": "88395429", "equity": 95443794, "ret": -4.56}, {"id": "v107", "ph": "be5cd36b", "equity": 95420371, "ret": -4.58}, {"id": "v47", "ph": "ed758fcf", "equity": 95248102, "ret": -4.75}, {"id": "v89", "ph": "c49d5680", "equity": 95191756, "ret": -4.81}, {"id": "v213", "ph": "0e1d8e45", "equity": 95032623, "ret": -4.97}, {"id": "v303", "ph": "1a084164", "equity": 94973975, "ret": -5.03}, {"id": "v301", "ph": "30da2021", "equity": 94918817, "ret": -5.08}, {"id": "v155", "ph": "31c0d84e", "equity": 94884928, "ret": -5.12}, {"id": "v149", "ph": "c5329f8d", "equity": 94835485, "ret": -5.16}, {"id": "v215", "ph": "a904a49d", "equity": 94714687, "ret": -5.29}, {"id": "v310", "ph": "ec9dd55c", "equity": 94667951, "ret": -5.33}, {"id": "v1", "ph": "4874f4c9", "equity": 94529504, "ret": -5.47}, {"id": "v318", "ph": "c99872ef", "equity": 94498663, "ret": -5.5}, {"id": "v147", "ph": "2fbeeedb", "equity": 93309835, "ret": -6.69}, {"id": "v151", "ph": "2eb1dd06", "equity": 93309835, "ret": -6.69}, {"id": "v41", "ph": "e9d84e84", "equity": 92888798, "ret": -7.11}, {"id": "v309", "ph": "07610040", "equity": 92000675, "ret": -8.0}, {"id": "v311", "ph": "8409c6e5", "equity": 91855356, "ret": -8.14}, {"id": "v4", "ph": "b6219595", "equity": 91060410, "ret": -8.94}, {"id": "v40", "ph": "70731d89", "equity": 90588484, "ret": -9.41}, {"id": "v312", "ph": "4c23846f", "equity": 90083317, "ret": -9.92}, {"id": "v296", "ph": "4c554378", "equity": 89998698, "ret": -10.0}, {"id": "v300", "ph": "c6ddc17b", "equity": 85532266, "ret": -14.47}, {"id": "v299", "ph": "25046b1a", "equity": 84271313, "ret": -15.73}, {"id": "v298", "ph": "5d4bbec0", "equity": 84062899, "ret": -15.94}], "20260703": [{"id": "v319", "ph": "ca25f043", "equity": 98425166, "ret": -1.57}, {"id": "v321", "ph": "e82de49b", "equity": 98254043, "ret": -1.75}, {"id": "v313", "ph": "b9f4ee72", "equity": 98201465, "ret": -1.8}, {"id": "v316", "ph": "8dc1d197", "equity": 97685295, "ret": -2.31}, {"id": "v317", "ph": "51f8ee6d", "equity": 97525130, "ret": -2.47}, {"id": "v320", "ph": "48d6a9ef", "equity": 97485037, "ret": -2.51}, {"id": "v314", "ph": "7511570e", "equity": 97275856, "ret": -2.72}, {"id": "v307", "ph": "6abce93d", "equity": 97013909, "ret": -2.99}, {"id": "v205", "ph": "02e5a3f5", "equity": 96883635, "ret": -3.12}, {"id": "v91", "ph": "5674a3d7", "equity": 96607445, "ret": -3.39}, {"id": "v306", "ph": "6966b8f6", "equity": 96557673, "ret": -3.44}, {"id": "v199", "ph": "390bfab3", "equity": 96554368, "ret": -3.45}, {"id": "v304", "ph": "96c7e8e1", "equity": 96441037, "ret": -3.56}, {"id": "v197", "ph": "5c290a32", "equity": 96399937, "ret": -3.6}, {"id": "v99", "ph": "fb39409b", "equity": 96145358, "ret": -3.85}, {"id": "v101", "ph": "c4354346", "equity": 96145358, "ret": -3.85}, {"id": "v207", "ph": "0f6601a0", "equity": 96048256, "ret": -3.95}, {"id": "v209", "ph": "8730802d", "equity": 96048256, "ret": -3.95}, {"id": "v57", "ph": "e7e98b6d", "equity": 95904930, "ret": -4.1}, {"id": "v59", "ph": "1858e2ec", "equity": 95904930, "ret": -4.1}, {"id": "v315", "ph": "e6d5b283", "equity": 95877764, "ret": -4.12}, {"id": "v103", "ph": "75b0a37c", "equity": 95790009, "ret": -4.21}, {"id": "v161", "ph": "ed5677e6", "equity": 95776078, "ret": -4.22}, {"id": "v165", "ph": "8f862b27", "equity": 95776078, "ret": -4.22}, {"id": "v167", "ph": "b6d6aed8", "equity": 95776078, "ret": -4.22}, {"id": "v49", "ph": "cdba73e0", "equity": 95750950, "ret": -4.25}, {"id": "v51", "ph": "21a98e46", "equity": 95750950, "ret": -4.25}, {"id": "v195", "ph": "dd89cf59", "equity": 95673198, "ret": -4.33}, {"id": "v201", "ph": "cb8a413e", "equity": 95673198, "ret": -4.33}, {"id": "v217", "ph": "4c547a61", "equity": 95667983, "ret": -4.33}, {"id": "v218", "ph": "7304d2d4", "equity": 95667983, "ret": -4.33}, {"id": "v81", "ph": "a6eac1e4", "equity": 95606729, "ret": -4.39}, {"id": "v95", "ph": "7e28e756", "equity": 95606729, "ret": -4.39}, {"id": "v223", "ph": "b57356b8", "equity": 95595615, "ret": -4.4}, {"id": "v224", "ph": "888ab069", "equity": 95595615, "ret": -4.4}, {"id": "v229", "ph": "d9261dfb", "equity": 95595615, "ret": -4.4}, {"id": "v230", "ph": "141579fe", "equity": 95595615, "ret": -4.4}, {"id": "v235", "ph": "3e6c1666", "equity": 95595615, "ret": -4.4}, {"id": "v236", "ph": "f9c75560", "equity": 95595615, "ret": -4.4}, {"id": "v265", "ph": "7faed59d", "equity": 95595615, "ret": -4.4}, {"id": "v266", "ph": "c133b585", "equity": 95595615, "ret": -4.4}, {"id": "v271", "ph": "2b9ccdcd", "equity": 95595615, "ret": -4.4}, {"id": "v272", "ph": "2ed2027f", "equity": 95595615, "ret": -4.4}, {"id": "v277", "ph": "488b612a", "equity": 95595615, "ret": -4.4}, {"id": "v278", "ph": "861fb42b", "equity": 95595615, "ret": -4.4}, {"id": "v283", "ph": "479e4b25", "equity": 95595615, "ret": -4.4}, {"id": "v284", "ph": "261c5d58", "equity": 95595615, "ret": -4.4}, {"id": "v305", "ph": "8cc4eea6", "equity": 95541925, "ret": -4.46}, {"id": "v211", "ph": "9227673c", "equity": 95426636, "ret": -4.57}, {"id": "v157", "ph": "80f3e23b", "equity": 95415410, "ret": -4.58}, {"id": "v159", "ph": "af80c67a", "equity": 95415410, "ret": -4.58}, {"id": "v189", "ph": "dfdbd0c8", "equity": 95279466, "ret": -4.72}, {"id": "v203", "ph": "2071defa", "equity": 95279466, "ret": -4.72}, {"id": "v97", "ph": "ebf31977", "equity": 95090844, "ret": -4.91}, {"id": "v87", "ph": "c0be98c0", "equity": 94984959, "ret": -5.02}, {"id": "v93", "ph": "f10d4e45", "equity": 94984959, "ret": -5.02}, {"id": "v308", "ph": "cb12dd0b", "equity": 94777607, "ret": -5.22}, {"id": "v302", "ph": "3f30502d", "equity": 94528879, "ret": -5.47}, {"id": "v303", "ph": "1a084164", "equity": 94528920, "ret": -5.47}, {"id": "v310", "ph": "ec9dd55c", "equity": 94363260, "ret": -5.64}, {"id": "v107", "ph": "be5cd36b", "equity": 94341505, "ret": -5.66}, {"id": "v89", "ph": "c49d5680", "equity": 94285756, "ret": -5.71}, {"id": "v155", "ph": "31c0d84e", "equity": 94292507, "ret": -5.71}, {"id": "v47", "ph": "ed758fcf", "equity": 94188860, "ret": -5.81}, {"id": "v213", "ph": "0e1d8e45", "equity": 94106686, "ret": -5.89}, {"id": "v105", "ph": "88395429", "equity": 94051138, "ret": -5.95}, {"id": "v301", "ph": "30da2021", "equity": 94001763, "ret": -6.0}, {"id": "v149", "ph": "c5329f8d", "equity": 93961371, "ret": -6.04}, {"id": "v318", "ph": "c99872ef", "equity": 93732003, "ret": -6.27}, {"id": "v215", "ph": "a904a49d", "equity": 93655835, "ret": -6.34}, {"id": "v1", "ph": "4874f4c9", "equity": 93473178, "ret": -6.53}, {"id": "v147", "ph": "2fbeeedb", "equity": 92615293, "ret": -7.38}, {"id": "v151", "ph": "2eb1dd06", "equity": 92615293, "ret": -7.38}, {"id": "v309", "ph": "07610040", "equity": 91881104, "ret": -8.12}, {"id": "v41", "ph": "e9d84e84", "equity": 91480991, "ret": -8.52}, {"id": "v311", "ph": "8409c6e5", "equity": 91180769, "ret": -8.82}, {"id": "v312", "ph": "4c23846f", "equity": 89938849, "ret": -10.06}, {"id": "v296", "ph": "4c554378", "equity": 89823803, "ret": -10.18}, {"id": "v4", "ph": "b6219595", "equity": 89703610, "ret": -10.3}, {"id": "v40", "ph": "70731d89", "equity": 89146216, "ret": -10.85}, {"id": "v300", "ph": "c6ddc17b", "equity": 84388306, "ret": -15.61}, {"id": "v298", "ph": "5d4bbec0", "equity": 83997991, "ret": -16.0}, {"id": "v299", "ph": "25046b1a", "equity": 83603796, "ret": -16.4}], "20260706": [{"id": "v319", "ph": "ca25f043", "equity": 98197566, "ret": -1.8}, {"id": "v313", "ph": "b9f4ee72", "equity": 97603564, "ret": -2.4}, {"id": "v316", "ph": "8dc1d197", "equity": 97234734, "ret": -2.77}, {"id": "v321", "ph": "e82de49b", "equity": 97144508, "ret": -2.86}, {"id": "v317", "ph": "51f8ee6d", "equity": 96840895, "ret": -3.16}, {"id": "v320", "ph": "48d6a9ef", "equity": 96760128, "ret": -3.24}, {"id": "v307", "ph": "6abce93d", "equity": 96230218, "ret": -3.77}, {"id": "v314", "ph": "7511570e", "equity": 95751362, "ret": -4.25}, {"id": "v205", "ph": "02e5a3f5", "equity": 95544491, "ret": -4.46}, {"id": "v91", "ph": "5674a3d7", "equity": 95510977, "ret": -4.49}, {"id": "v199", "ph": "390bfab3", "equity": 95397379, "ret": -4.6}, {"id": "v304", "ph": "96c7e8e1", "equity": 95339874, "ret": -4.66}, {"id": "v99", "ph": "fb39409b", "equity": 95236824, "ret": -4.76}, {"id": "v101", "ph": "c4354346", "equity": 95236824, "ret": -4.76}, {"id": "v207", "ph": "0f6601a0", "equity": 95075567, "ret": -4.92}, {"id": "v209", "ph": "8730802d", "equity": 95075567, "ret": -4.92}, {"id": "v81", "ph": "a6eac1e4", "equity": 95007002, "ret": -4.99}, {"id": "v95", "ph": "7e28e756", "equity": 95007002, "ret": -4.99}, {"id": "v197", "ph": "5c290a32", "equity": 94741409, "ret": -5.26}, {"id": "v57", "ph": "e7e98b6d", "equity": 94699077, "ret": -5.3}, {"id": "v59", "ph": "1858e2ec", "equity": 94699077, "ret": -5.3}, {"id": "v103", "ph": "75b0a37c", "equity": 94668122, "ret": -5.33}, {"id": "v306", "ph": "6966b8f6", "equity": 94605287, "ret": -5.39}, {"id": "v161", "ph": "ed5677e6", "equity": 94496826, "ret": -5.5}, {"id": "v165", "ph": "8f862b27", "equity": 94496826, "ret": -5.5}, {"id": "v167", "ph": "b6d6aed8", "equity": 94496826, "ret": -5.5}, {"id": "v189", "ph": "dfdbd0c8", "equity": 94488662, "ret": -5.51}, {"id": "v203", "ph": "2071defa", "equity": 94488662, "ret": -5.51}, {"id": "v217", "ph": "4c547a61", "equity": 94426233, "ret": -5.57}, {"id": "v218", "ph": "7304d2d4", "equity": 94426233, "ret": -5.57}, {"id": "v49", "ph": "cdba73e0", "equity": 94406113, "ret": -5.59}, {"id": "v51", "ph": "21a98e46", "equity": 94406113, "ret": -5.59}, {"id": "v223", "ph": "b57356b8", "equity": 94355882, "ret": -5.64}, {"id": "v224", "ph": "888ab069", "equity": 94355882, "ret": -5.64}, {"id": "v229", "ph": "d9261dfb", "equity": 94355882, "ret": -5.64}, {"id": "v230", "ph": "141579fe", "equity": 94355882, "ret": -5.64}, {"id": "v235", "ph": "3e6c1666", "equity": 94355882, "ret": -5.64}, {"id": "v236", "ph": "f9c75560", "equity": 94355882, "ret": -5.64}, {"id": "v265", "ph": "7faed59d", "equity": 94355882, "ret": -5.64}, {"id": "v266", "ph": "c133b585", "equity": 94355882, "ret": -5.64}, {"id": "v271", "ph": "2b9ccdcd", "equity": 94355882, "ret": -5.64}, {"id": "v272", "ph": "2ed2027f", "equity": 94355882, "ret": -5.64}, {"id": "v277", "ph": "488b612a", "equity": 94355882, "ret": -5.64}, {"id": "v278", "ph": "861fb42b", "equity": 94355882, "ret": -5.64}, {"id": "v283", "ph": "479e4b25", "equity": 94355882, "ret": -5.64}, {"id": "v284", "ph": "261c5d58", "equity": 94355882, "ret": -5.64}, {"id": "v211", "ph": "9227673c", "equity": 94235871, "ret": -5.76}, {"id": "v305", "ph": "8cc4eea6", "equity": 94224669, "ret": -5.78}, {"id": "v195", "ph": "dd89cf59", "equity": 94212019, "ret": -5.79}, {"id": "v201", "ph": "cb8a413e", "equity": 94212019, "ret": -5.79}, {"id": "v157", "ph": "80f3e23b", "equity": 93957691, "ret": -6.04}, {"id": "v159", "ph": "af80c67a", "equity": 93957691, "ret": -6.04}, {"id": "v310", "ph": "ec9dd55c", "equity": 93938789, "ret": -6.06}, {"id": "v107", "ph": "be5cd36b", "equity": 93866495, "ret": -6.13}, {"id": "v97", "ph": "ebf31977", "equity": 93770220, "ret": -6.23}, {"id": "v315", "ph": "e6d5b283", "equity": 93711754, "ret": -6.29}, {"id": "v87", "ph": "c0be98c0", "equity": 93450916, "ret": -6.55}, {"id": "v93", "ph": "f10d4e45", "equity": 93450916, "ret": -6.55}, {"id": "v303", "ph": "1a084164", "equity": 93378687, "ret": -6.62}, {"id": "v105", "ph": "88395429", "equity": 93223229, "ret": -6.78}, {"id": "v213", "ph": "0e1d8e45", "equity": 93085970, "ret": -6.91}, {"id": "v215", "ph": "a904a49d", "equity": 92982818, "ret": -7.02}, {"id": "v308", "ph": "cb12dd0b", "equity": 92964903, "ret": -7.04}, {"id": "v318", "ph": "c99872ef", "equity": 92867651, "ret": -7.13}, {"id": "v47", "ph": "ed758fcf", "equity": 92618653, "ret": -7.38}, {"id": "v155", "ph": "31c0d84e", "equity": 92607149, "ret": -7.39}, {"id": "v302", "ph": "3f30502d", "equity": 92518208, "ret": -7.48}, {"id": "v89", "ph": "c49d5680", "equity": 92511480, "ret": -7.49}, {"id": "v301", "ph": "30da2021", "equity": 92319361, "ret": -7.68}, {"id": "v1", "ph": "4874f4c9", "equity": 91573111, "ret": -8.43}, {"id": "v149", "ph": "c5329f8d", "equity": 91557578, "ret": -8.44}, {"id": "v147", "ph": "2fbeeedb", "equity": 89660568, "ret": -10.34}, {"id": "v151", "ph": "2eb1dd06", "equity": 89660568, "ret": -10.34}, {"id": "v309", "ph": "07610040", "equity": 89431315, "ret": -10.57}, {"id": "v311", "ph": "8409c6e5", "equity": 89401928, "ret": -10.6}, {"id": "v296", "ph": "4c554378", "equity": 89247261, "ret": -10.75}, {"id": "v41", "ph": "e9d84e84", "equity": 88846484, "ret": -11.15}, {"id": "v312", "ph": "4c23846f", "equity": 88019396, "ret": -11.98}, {"id": "v4", "ph": "b6219595", "equity": 86554007, "ret": -13.45}, {"id": "v40", "ph": "70731d89", "equity": 85831302, "ret": -14.17}, {"id": "v300", "ph": "c6ddc17b", "equity": 82944532, "ret": -17.06}, {"id": "v298", "ph": "5d4bbec0", "equity": 81095511, "ret": -18.9}, {"id": "v299", "ph": "25046b1a", "equity": 80278493, "ret": -19.72}], "20260707": [{"id": "v319", "ph": "ca25f043", "equity": 98693670, "ret": -1.31}, {"id": "v316", "ph": "8dc1d197", "equity": 98305505, "ret": -1.69}, {"id": "v313", "ph": "b9f4ee72", "equity": 98262263, "ret": -1.74}, {"id": "v320", "ph": "48d6a9ef", "equity": 98247893, "ret": -1.75}, {"id": "v317", "ph": "51f8ee6d", "equity": 97707033, "ret": -2.29}, {"id": "v314", "ph": "7511570e", "equity": 97509493, "ret": -2.49}, {"id": "v91", "ph": "5674a3d7", "equity": 97333001, "ret": -2.67}, {"id": "v199", "ph": "390bfab3", "equity": 97277991, "ret": -2.72}, {"id": "v321", "ph": "e82de49b", "equity": 97253215, "ret": -2.75}, {"id": "v81", "ph": "a6eac1e4", "equity": 97049213, "ret": -2.95}, {"id": "v95", "ph": "7e28e756", "equity": 97050436, "ret": -2.95}, {"id": "v306", "ph": "6966b8f6", "equity": 96847146, "ret": -3.15}, {"id": "v307", "ph": "6abce93d", "equity": 96696164, "ret": -3.3}, {"id": "v189", "ph": "dfdbd0c8", "equity": 96556561, "ret": -3.44}, {"id": "v203", "ph": "2071defa", "equity": 96557781, "ret": -3.44}, {"id": "v99", "ph": "fb39409b", "equity": 96461789, "ret": -3.54}, {"id": "v101", "ph": "c4354346", "equity": 96462037, "ret": -3.54}, {"id": "v205", "ph": "02e5a3f5", "equity": 96453452, "ret": -3.55}, {"id": "v304", "ph": "96c7e8e1", "equity": 96428577, "ret": -3.57}, {"id": "v305", "ph": "8cc4eea6", "equity": 96418011, "ret": -3.58}, {"id": "v103", "ph": "75b0a37c", "equity": 96298247, "ret": -3.7}, {"id": "v49", "ph": "cdba73e0", "equity": 96002579, "ret": -4.0}, {"id": "v51", "ph": "21a98e46", "equity": 96001353, "ret": -4.0}, {"id": "v107", "ph": "be5cd36b", "equity": 95993990, "ret": -4.01}, {"id": "v197", "ph": "5c290a32", "equity": 95968207, "ret": -4.03}, {"id": "v302", "ph": "3f30502d", "equity": 95614631, "ret": -4.39}, {"id": "v157", "ph": "80f3e23b", "equity": 95569082, "ret": -4.43}, {"id": "v159", "ph": "af80c67a", "equity": 95567859, "ret": -4.43}, {"id": "v57", "ph": "e7e98b6d", "equity": 95554443, "ret": -4.45}, {"id": "v59", "ph": "1858e2ec", "equity": 95554690, "ret": -4.45}, {"id": "v207", "ph": "0f6601a0", "equity": 95525632, "ret": -4.47}, {"id": "v209", "ph": "8730802d", "equity": 95525880, "ret": -4.47}, {"id": "v217", "ph": "4c547a61", "equity": 95450761, "ret": -4.55}, {"id": "v218", "ph": "7304d2d4", "equity": 95450761, "ret": -4.55}, {"id": "v223", "ph": "b57356b8", "equity": 95388809, "ret": -4.61}, {"id": "v224", "ph": "888ab069", "equity": 95388809, "ret": -4.61}, {"id": "v229", "ph": "d9261dfb", "equity": 95388809, "ret": -4.61}, {"id": "v230", "ph": "141579fe", "equity": 95388809, "ret": -4.61}, {"id": "v235", "ph": "3e6c1666", "equity": 95388809, "ret": -4.61}, {"id": "v236", "ph": "f9c75560", "equity": 95388809, "ret": -4.61}, {"id": "v265", "ph": "7faed59d", "equity": 95388809, "ret": -4.61}, {"id": "v266", "ph": "c133b585", "equity": 95388809, "ret": -4.61}, {"id": "v271", "ph": "2b9ccdcd", "equity": 95388809, "ret": -4.61}, {"id": "v272", "ph": "2ed2027f", "equity": 95388809, "ret": -4.61}, {"id": "v277", "ph": "488b612a", "equity": 95388809, "ret": -4.61}, {"id": "v278", "ph": "861fb42b", "equity": 95388809, "ret": -4.61}, {"id": "v283", "ph": "479e4b25", "equity": 95388809, "ret": -4.61}, {"id": "v284", "ph": "261c5d58", "equity": 95388809, "ret": -4.61}, {"id": "v105", "ph": "88395429", "equity": 95282295, "ret": -4.72}, {"id": "v87", "ph": "c0be98c0", "equity": 95222534, "ret": -4.78}, {"id": "v93", "ph": "f10d4e45", "equity": 95222534, "ret": -4.78}, {"id": "v195", "ph": "dd89cf59", "equity": 95180923, "ret": -4.82}, {"id": "v201", "ph": "cb8a413e", "equity": 95180923, "ret": -4.82}, {"id": "v213", "ph": "0e1d8e45", "equity": 95176202, "ret": -4.82}, {"id": "v211", "ph": "9227673c", "equity": 95089597, "ret": -4.91}, {"id": "v308", "ph": "cb12dd0b", "equity": 94879582, "ret": -5.12}, {"id": "v303", "ph": "1a084164", "equity": 94738991, "ret": -5.26}, {"id": "v97", "ph": "ebf31977", "equity": 94655179, "ret": -5.34}, {"id": "v161", "ph": "ed5677e6", "equity": 94577324, "ret": -5.42}, {"id": "v165", "ph": "8f862b27", "equity": 94577324, "ret": -5.42}, {"id": "v167", "ph": "b6d6aed8", "equity": 94577572, "ret": -5.42}, {"id": "v155", "ph": "31c0d84e", "equity": 94245039, "ret": -5.75}, {"id": "v47", "ph": "ed758fcf", "equity": 94237190, "ret": -5.76}, {"id": "v215", "ph": "a904a49d", "equity": 94242294, "ret": -5.76}, {"id": "v301", "ph": "30da2021", "equity": 93978996, "ret": -6.02}, {"id": "v310", "ph": "ec9dd55c", "equity": 93711421, "ret": -6.29}, {"id": "v89", "ph": "c49d5680", "equity": 93531243, "ret": -6.47}, {"id": "v315", "ph": "e6d5b283", "equity": 93396771, "ret": -6.6}, {"id": "v1", "ph": "4874f4c9", "equity": 93346275, "ret": -6.65}, {"id": "v149", "ph": "c5329f8d", "equity": 92610472, "ret": -7.39}, {"id": "v318", "ph": "c99872ef", "equity": 91695304, "ret": -8.3}, {"id": "v147", "ph": "2fbeeedb", "equity": 91607410, "ret": -8.39}, {"id": "v151", "ph": "2eb1dd06", "equity": 91608014, "ret": -8.39}, {"id": "v41", "ph": "e9d84e84", "equity": 89790563, "ret": -10.21}, {"id": "v311", "ph": "8409c6e5", "equity": 89611335, "ret": -10.39}, {"id": "v309", "ph": "07610040", "equity": 89551113, "ret": -10.45}, {"id": "v4", "ph": "b6219595", "equity": 88521115, "ret": -11.48}, {"id": "v296", "ph": "4c554378", "equity": 88093113, "ret": -11.91}, {"id": "v40", "ph": "70731d89", "equity": 87995606, "ret": -12.0}, {"id": "v312", "ph": "4c23846f", "equity": 86480137, "ret": -13.52}, {"id": "v300", "ph": "c6ddc17b", "equity": 85099596, "ret": -14.9}, {"id": "v298", "ph": "5d4bbec0", "equity": 81378493, "ret": -18.62}, {"id": "v299", "ph": "25046b1a", "equity": 81031423, "ret": -18.97}], "20260708": [{"id": "v319", "ph": "ca25f043", "equity": 97470051, "ret": -2.53}, {"id": "v321", "ph": "e82de49b", "equity": 95863837, "ret": -4.14}, {"id": "v313", "ph": "b9f4ee72", "equity": 95481223, "ret": -4.52}, {"id": "v101", "ph": "c4354346", "equity": 94493731, "ret": -5.51}, {"id": "v317", "ph": "51f8ee6d", "equity": 94450610, "ret": -5.55}, {"id": "v209", "ph": "8730802d", "equity": 94203324, "ret": -5.8}, {"id": "v59", "ph": "1858e2ec", "equity": 93894385, "ret": -6.11}, {"id": "v307", "ph": "6abce93d", "equity": 93837086, "ret": -6.16}, {"id": "v316", "ph": "8dc1d197", "equity": 93831128, "ret": -6.17}, {"id": "v99", "ph": "fb39409b", "equity": 93816583, "ret": -6.18}, {"id": "v167", "ph": "b6d6aed8", "equity": 93564546, "ret": -6.44}, {"id": "v207", "ph": "0f6601a0", "equity": 93526176, "ret": -6.47}, {"id": "v315", "ph": "e6d5b283", "equity": 93303825, "ret": -6.7}, {"id": "v205", "ph": "02e5a3f5", "equity": 93270613, "ret": -6.73}, {"id": "v57", "ph": "e7e98b6d", "equity": 93217237, "ret": -6.78}, {"id": "v320", "ph": "48d6a9ef", "equity": 93176307, "ret": -6.82}, {"id": "v161", "ph": "ed5677e6", "equity": 92887398, "ret": -7.11}, {"id": "v165", "ph": "8f862b27", "equity": 92887398, "ret": -7.11}, {"id": "v103", "ph": "75b0a37c", "equity": 92752222, "ret": -7.25}, {"id": "v314", "ph": "7511570e", "equity": 92717172, "ret": -7.28}, {"id": "v197", "ph": "5c290a32", "equity": 92525434, "ret": -7.47}, {"id": "v304", "ph": "96c7e8e1", "equity": 92465058, "ret": -7.53}, {"id": "v95", "ph": "7e28e756", "equity": 92376183, "ret": -7.62}, {"id": "v91", "ph": "5674a3d7", "equity": 92342374, "ret": -7.66}, {"id": "v211", "ph": "9227673c", "equity": 92194352, "ret": -7.81}, {"id": "v199", "ph": "390bfab3", "equity": 91895564, "ret": -8.1}, {"id": "v97", "ph": "ebf31977", "equity": 91886112, "ret": -8.11}, {"id": "v306", "ph": "6966b8f6", "equity": 91650241, "ret": -8.35}, {"id": "v195", "ph": "dd89cf59", "equity": 91566277, "ret": -8.43}, {"id": "v201", "ph": "cb8a413e", "equity": 91566277, "ret": -8.43}, {"id": "v49", "ph": "cdba73e0", "equity": 91326648, "ret": -8.67}, {"id": "v203", "ph": "2071defa", "equity": 91153904, "ret": -8.85}, {"id": "v107", "ph": "be5cd36b", "equity": 91033303, "ret": -8.97}, {"id": "v87", "ph": "c0be98c0", "equity": 90966948, "ret": -9.03}, {"id": "v93", "ph": "f10d4e45", "equity": 90966948, "ret": -9.03}, {"id": "v81", "ph": "a6eac1e4", "equity": 90865296, "ret": -9.13}, {"id": "v301", "ph": "30da2021", "equity": 90473273, "ret": -9.53}, {"id": "v318", "ph": "c99872ef", "equity": 90470932, "ret": -9.53}, {"id": "v157", "ph": "80f3e23b", "equity": 90163528, "ret": -9.84}, {"id": "v310", "ph": "ec9dd55c", "equity": 89945372, "ret": -10.05}, {"id": "v217", "ph": "4c547a61", "equity": 89912014, "ret": -10.09}, {"id": "v218", "ph": "7304d2d4", "equity": 89912014, "ret": -10.09}, {"id": "v223", "ph": "b57356b8", "equity": 89843062, "ret": -10.16}, {"id": "v224", "ph": "888ab069", "equity": 89843062, "ret": -10.16}, {"id": "v229", "ph": "d9261dfb", "equity": 89843062, "ret": -10.16}, {"id": "v230", "ph": "141579fe", "equity": 89843062, "ret": -10.16}, {"id": "v235", "ph": "3e6c1666", "equity": 89843062, "ret": -10.16}, {"id": "v236", "ph": "f9c75560", "equity": 89843062, "ret": -10.16}, {"id": "v265", "ph": "7faed59d", "equity": 89843062, "ret": -10.16}, {"id": "v266", "ph": "c133b585", "equity": 89843062, "ret": -10.16}, {"id": "v271", "ph": "2b9ccdcd", "equity": 89843062, "ret": -10.16}, {"id": "v272", "ph": "2ed2027f", "equity": 89843062, "ret": -10.16}, {"id": "v277", "ph": "488b612a", "equity": 89843062, "ret": -10.16}, {"id": "v278", "ph": "861fb42b", "equity": 89843062, "ret": -10.16}, {"id": "v283", "ph": "479e4b25", "equity": 89843062, "ret": -10.16}, {"id": "v284", "ph": "261c5d58", "equity": 89843062, "ret": -10.16}, {"id": "v1", "ph": "4874f4c9", "equity": 89831124, "ret": -10.17}, {"id": "v51", "ph": "21a98e46", "equity": 89813662, "ret": -10.19}, {"id": "v89", "ph": "c49d5680", "equity": 89757086, "ret": -10.24}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89645117, "ret": -10.35}, {"id": "v303", "ph": "1a084164", "equity": 89566981, "ret": -10.43}, {"id": "v308", "ph": "cb12dd0b", "equity": 89416268, "ret": -10.58}, {"id": "v305", "ph": "8cc4eea6", "equity": 89391615, "ret": -10.61}, {"id": "v215", "ph": "a904a49d", "equity": 89291041, "ret": -10.71}, {"id": "v105", "ph": "88395429", "equity": 88899445, "ret": -11.1}, {"id": "v159", "ph": "af80c67a", "equity": 88652641, "ret": -11.35}, {"id": "v149", "ph": "c5329f8d", "equity": 88050190, "ret": -11.95}, {"id": "v213", "ph": "0e1d8e45", "equity": 88053066, "ret": -11.95}, {"id": "v47", "ph": "ed758fcf", "equity": 87850567, "ret": -12.15}, {"id": "v302", "ph": "3f30502d", "equity": 87442505, "ret": -12.56}, {"id": "v155", "ph": "31c0d84e", "equity": 87118129, "ret": -12.88}, {"id": "v296", "ph": "4c554378", "equity": 86292842, "ret": -13.71}, {"id": "v311", "ph": "8409c6e5", "equity": 86084678, "ret": -13.92}, {"id": "v151", "ph": "2eb1dd06", "equity": 86032047, "ret": -13.97}, {"id": "v312", "ph": "4c23846f", "equity": 85522576, "ret": -14.48}, {"id": "v41", "ph": "e9d84e84", "equity": 85291413, "ret": -14.71}, {"id": "v309", "ph": "07610040", "equity": 85107529, "ret": -14.89}, {"id": "v147", "ph": "2fbeeedb", "equity": 84376797, "ret": -15.62}, {"id": "v4", "ph": "b6219595", "equity": 82925280, "ret": -17.07}, {"id": "v40", "ph": "70731d89", "equity": 81170051, "ret": -18.83}, {"id": "v298", "ph": "5d4bbec0", "equity": 79196319, "ret": -20.8}, {"id": "v299", "ph": "25046b1a", "equity": 76919853, "ret": -23.08}, {"id": "v300", "ph": "c6ddc17b", "equity": 73167500, "ret": -26.83}], "20260709": [{"id": "v319", "ph": "ca25f043", "equity": 97029426, "ret": -2.97}, {"id": "v321", "ph": "e82de49b", "equity": 95372120, "ret": -4.63}, {"id": "v313", "ph": "b9f4ee72", "equity": 94897989, "ret": -5.1}, {"id": "v101", "ph": "c4354346", "equity": 94371518, "ret": -5.63}, {"id": "v317", "ph": "51f8ee6d", "equity": 94152545, "ret": -5.85}, {"id": "v99", "ph": "fb39409b", "equity": 93694369, "ret": -6.31}, {"id": "v59", "ph": "1858e2ec", "equity": 93648469, "ret": -6.35}, {"id": "v209", "ph": "8730802d", "equity": 93379392, "ret": -6.62}, {"id": "v316", "ph": "8dc1d197", "equity": 93225309, "ret": -6.77}, {"id": "v307", "ph": "6abce93d", "equity": 93189093, "ret": -6.81}, {"id": "v57", "ph": "e7e98b6d", "equity": 92971321, "ret": -7.03}, {"id": "v103", "ph": "75b0a37c", "equity": 92831928, "ret": -7.17}, {"id": "v207", "ph": "0f6601a0", "equity": 92702244, "ret": -7.3}, {"id": "v167", "ph": "b6d6aed8", "equity": 92619115, "ret": -7.38}, {"id": "v205", "ph": "02e5a3f5", "equity": 92574760, "ret": -7.43}, {"id": "v95", "ph": "7e28e756", "equity": 92521583, "ret": -7.48}, {"id": "v320", "ph": "48d6a9ef", "equity": 92421366, "ret": -7.58}, {"id": "v91", "ph": "5674a3d7", "equity": 92146760, "ret": -7.85}, {"id": "v315", "ph": "e6d5b283", "equity": 92046625, "ret": -7.95}, {"id": "v161", "ph": "ed5677e6", "equity": 91941966, "ret": -8.06}, {"id": "v165", "ph": "8f862b27", "equity": 91941966, "ret": -8.06}, {"id": "v314", "ph": "7511570e", "equity": 91879039, "ret": -8.12}, {"id": "v304", "ph": "96c7e8e1", "equity": 91855794, "ret": -8.14}, {"id": "v197", "ph": "5c290a32", "equity": 91841551, "ret": -8.16}, {"id": "v97", "ph": "ebf31977", "equity": 91705949, "ret": -8.29}, {"id": "v211", "ph": "9227673c", "equity": 91570738, "ret": -8.43}, {"id": "v49", "ph": "cdba73e0", "equity": 91460358, "ret": -8.54}, {"id": "v203", "ph": "2071defa", "equity": 91259889, "ret": -8.74}, {"id": "v199", "ph": "390bfab3", "equity": 91193283, "ret": -8.81}, {"id": "v87", "ph": "c0be98c0", "equity": 91057754, "ret": -8.94}, {"id": "v93", "ph": "f10d4e45", "equity": 91057754, "ret": -8.94}, {"id": "v81", "ph": "a6eac1e4", "equity": 91014210, "ret": -8.99}, {"id": "v195", "ph": "dd89cf59", "equity": 90952863, "ret": -9.05}, {"id": "v201", "ph": "cb8a413e", "equity": 90952863, "ret": -9.05}, {"id": "v107", "ph": "be5cd36b", "equity": 90911509, "ret": -9.09}, {"id": "v306", "ph": "6966b8f6", "equity": 90826472, "ret": -9.17}, {"id": "v157", "ph": "80f3e23b", "equity": 90259699, "ret": -9.74}, {"id": "v318", "ph": "c99872ef", "equity": 89956910, "ret": -10.04}, {"id": "v51", "ph": "21a98e46", "equity": 89951186, "ret": -10.05}, {"id": "v89", "ph": "c49d5680", "equity": 89823123, "ret": -10.18}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89754616, "ret": -10.25}, {"id": "v301", "ph": "30da2021", "equity": 89630173, "ret": -10.37}, {"id": "v215", "ph": "a904a49d", "equity": 89171184, "ret": -10.83}, {"id": "v217", "ph": "4c547a61", "equity": 89102440, "ret": -10.9}, {"id": "v218", "ph": "7304d2d4", "equity": 89102440, "ret": -10.9}, {"id": "v223", "ph": "b57356b8", "equity": 89036088, "ret": -10.96}, {"id": "v224", "ph": "888ab069", "equity": 89036088, "ret": -10.96}, {"id": "v229", "ph": "d9261dfb", "equity": 89036088, "ret": -10.96}, {"id": "v230", "ph": "141579fe", "equity": 89036088, "ret": -10.96}, {"id": "v235", "ph": "3e6c1666", "equity": 89036088, "ret": -10.96}, {"id": "v236", "ph": "f9c75560", "equity": 89036088, "ret": -10.96}, {"id": "v265", "ph": "7faed59d", "equity": 89036088, "ret": -10.96}, {"id": "v266", "ph": "c133b585", "equity": 89036088, "ret": -10.96}, {"id": "v271", "ph": "2b9ccdcd", "equity": 89036088, "ret": -10.96}, {"id": "v272", "ph": "2ed2027f", "equity": 89036088, "ret": -10.96}, {"id": "v277", "ph": "488b612a", "equity": 89036088, "ret": -10.96}, {"id": "v278", "ph": "861fb42b", "equity": 89036088, "ret": -10.96}, {"id": "v283", "ph": "479e4b25", "equity": 89036088, "ret": -10.96}, {"id": "v284", "ph": "261c5d58", "equity": 89036088, "ret": -10.96}, {"id": "v1", "ph": "4874f4c9", "equity": 88779474, "ret": -11.22}, {"id": "v105", "ph": "88395429", "equity": 88758699, "ret": -11.24}, {"id": "v159", "ph": "af80c67a", "equity": 88749577, "ret": -11.25}, {"id": "v305", "ph": "8cc4eea6", "equity": 88509485, "ret": -11.49}, {"id": "v308", "ph": "cb12dd0b", "equity": 88508656, "ret": -11.49}, {"id": "v303", "ph": "1a084164", "equity": 88400399, "ret": -11.6}, {"id": "v310", "ph": "ec9dd55c", "equity": 88282336, "ret": -11.72}, {"id": "v213", "ph": "0e1d8e45", "equity": 87872908, "ret": -12.13}, {"id": "v47", "ph": "ed758fcf", "equity": 87700307, "ret": -12.3}, {"id": "v149", "ph": "c5329f8d", "equity": 87295308, "ret": -12.7}, {"id": "v302", "ph": "3f30502d", "equity": 87005003, "ret": -12.99}, {"id": "v155", "ph": "31c0d84e", "equity": 86926728, "ret": -13.07}, {"id": "v311", "ph": "8409c6e5", "equity": 85710417, "ret": -14.29}, {"id": "v151", "ph": "2eb1dd06", "equity": 85488465, "ret": -14.51}, {"id": "v41", "ph": "e9d84e84", "equity": 85404189, "ret": -14.6}, {"id": "v312", "ph": "4c23846f", "equity": 84462620, "ret": -15.54}, {"id": "v296", "ph": "4c554378", "equity": 84397596, "ret": -15.6}, {"id": "v309", "ph": "07610040", "equity": 84155459, "ret": -15.84}, {"id": "v147", "ph": "2fbeeedb", "equity": 83834534, "ret": -16.17}, {"id": "v4", "ph": "b6219595", "equity": 82094579, "ret": -17.91}, {"id": "v40", "ph": "70731d89", "equity": 80360480, "ret": -19.64}, {"id": "v298", "ph": "5d4bbec0", "equity": 78505369, "ret": -21.49}, {"id": "v299", "ph": "25046b1a", "equity": 75857462, "ret": -24.14}, {"id": "v300", "ph": "c6ddc17b", "equity": 73074500, "ret": -26.93}], "20260710": [{"id": "v321", "ph": "e82de49b", "equity": 98078466, "ret": -1.92}, {"id": "v319", "ph": "ca25f043", "equity": 97310052, "ret": -2.69}, {"id": "v313", "ph": "b9f4ee72", "equity": 97070899, "ret": -2.93}, {"id": "v317", "ph": "51f8ee6d", "equity": 96658854, "ret": -3.34}, {"id": "v307", "ph": "6abce93d", "equity": 95735759, "ret": -4.26}, {"id": "v316", "ph": "8dc1d197", "equity": 95238005, "ret": -4.76}, {"id": "v320", "ph": "48d6a9ef", "equity": 95010028, "ret": -4.99}, {"id": "v205", "ph": "02e5a3f5", "equity": 94946029, "ret": -5.05}, {"id": "v197", "ph": "5c290a32", "equity": 94826304, "ret": -5.17}, {"id": "v95", "ph": "7e28e756", "equity": 94712823, "ret": -5.29}, {"id": "v101", "ph": "c4354346", "equity": 94284391, "ret": -5.72}, {"id": "v203", "ph": "2071defa", "equity": 94078563, "ret": -5.92}, {"id": "v103", "ph": "75b0a37c", "equity": 94044661, "ret": -5.96}, {"id": "v91", "ph": "5674a3d7", "equity": 94024918, "ret": -5.98}, {"id": "v314", "ph": "7511570e", "equity": 93928332, "ret": -6.07}, {"id": "v199", "ph": "390bfab3", "equity": 93733922, "ret": -6.27}, {"id": "v59", "ph": "1858e2ec", "equity": 93680067, "ret": -6.32}, {"id": "v99", "ph": "fb39409b", "equity": 93607255, "ret": -6.39}, {"id": "v49", "ph": "cdba73e0", "equity": 93559466, "ret": -6.44}, {"id": "v306", "ph": "6966b8f6", "equity": 93513081, "ret": -6.49}, {"id": "v97", "ph": "ebf31977", "equity": 93408327, "ret": -6.59}, {"id": "v209", "ph": "8730802d", "equity": 93286824, "ret": -6.71}, {"id": "v81", "ph": "a6eac1e4", "equity": 93172304, "ret": -6.83}, {"id": "v304", "ph": "96c7e8e1", "equity": 93155434, "ret": -6.84}, {"id": "v157", "ph": "80f3e23b", "equity": 93020895, "ret": -6.98}, {"id": "v57", "ph": "e7e98b6d", "equity": 93002931, "ret": -7.0}, {"id": "v211", "ph": "9227673c", "equity": 92778517, "ret": -7.22}, {"id": "v207", "ph": "0f6601a0", "equity": 92609916, "ret": -7.39}, {"id": "v167", "ph": "b6d6aed8", "equity": 92577084, "ret": -7.42}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92540144, "ret": -7.46}, {"id": "v315", "ph": "e6d5b283", "equity": 92532857, "ret": -7.47}, {"id": "v87", "ph": "c0be98c0", "equity": 92305303, "ret": -7.69}, {"id": "v93", "ph": "f10d4e45", "equity": 92305303, "ret": -7.69}, {"id": "v217", "ph": "4c547a61", "equity": 92223428, "ret": -7.78}, {"id": "v218", "ph": "7304d2d4", "equity": 92223428, "ret": -7.78}, {"id": "v195", "ph": "dd89cf59", "equity": 92194654, "ret": -7.81}, {"id": "v201", "ph": "cb8a413e", "equity": 92194654, "ret": -7.81}, {"id": "v223", "ph": "b57356b8", "equity": 92151976, "ret": -7.85}, {"id": "v224", "ph": "888ab069", "equity": 92151976, "ret": -7.85}, {"id": "v229", "ph": "d9261dfb", "equity": 92151976, "ret": -7.85}, {"id": "v230", "ph": "141579fe", "equity": 92151976, "ret": -7.85}, {"id": "v235", "ph": "3e6c1666", "equity": 92151976, "ret": -7.85}, {"id": "v236", "ph": "f9c75560", "equity": 92151976, "ret": -7.85}, {"id": "v265", "ph": "7faed59d", "equity": 92151976, "ret": -7.85}, {"id": "v266", "ph": "c133b585", "equity": 92151976, "ret": -7.85}, {"id": "v271", "ph": "2b9ccdcd", "equity": 92151976, "ret": -7.85}, {"id": "v272", "ph": "2ed2027f", "equity": 92151976, "ret": -7.85}, {"id": "v277", "ph": "488b612a", "equity": 92151976, "ret": -7.85}, {"id": "v278", "ph": "861fb42b", "equity": 92151976, "ret": -7.85}, {"id": "v283", "ph": "479e4b25", "equity": 92151976, "ret": -7.85}, {"id": "v284", "ph": "261c5d58", "equity": 92151976, "ret": -7.85}, {"id": "v89", "ph": "c49d5680", "equity": 92126436, "ret": -7.87}, {"id": "v51", "ph": "21a98e46", "equity": 92016918, "ret": -7.98}, {"id": "v161", "ph": "ed5677e6", "equity": 91902967, "ret": -8.1}, {"id": "v165", "ph": "8f862b27", "equity": 91902967, "ret": -8.1}, {"id": "v107", "ph": "be5cd36b", "equity": 91871987, "ret": -8.13}, {"id": "v305", "ph": "8cc4eea6", "equity": 91737647, "ret": -8.26}, {"id": "v159", "ph": "af80c67a", "equity": 91478297, "ret": -8.52}, {"id": "v303", "ph": "1a084164", "equity": 91467512, "ret": -8.53}, {"id": "v318", "ph": "c99872ef", "equity": 91229350, "ret": -8.77}, {"id": "v308", "ph": "cb12dd0b", "equity": 91016667, "ret": -8.98}, {"id": "v105", "ph": "88395429", "equity": 91002544, "ret": -9.0}, {"id": "v310", "ph": "ec9dd55c", "equity": 90929061, "ret": -9.07}, {"id": "v213", "ph": "0e1d8e45", "equity": 90733969, "ret": -9.27}, {"id": "v149", "ph": "c5329f8d", "equity": 90683014, "ret": -9.32}, {"id": "v215", "ph": "a904a49d", "equity": 90127065, "ret": -9.87}, {"id": "v302", "ph": "3f30502d", "equity": 90012486, "ret": -9.99}, {"id": "v301", "ph": "30da2021", "equity": 89977588, "ret": -10.02}, {"id": "v47", "ph": "ed758fcf", "equity": 89839040, "ret": -10.16}, {"id": "v155", "ph": "31c0d84e", "equity": 89712039, "ret": -10.29}, {"id": "v151", "ph": "2eb1dd06", "equity": 89274993, "ret": -10.73}, {"id": "v1", "ph": "4874f4c9", "equity": 89233426, "ret": -10.77}, {"id": "v311", "ph": "8409c6e5", "equity": 88466825, "ret": -11.53}, {"id": "v41", "ph": "e9d84e84", "equity": 88070920, "ret": -11.93}, {"id": "v147", "ph": "2fbeeedb", "equity": 87599302, "ret": -12.4}, {"id": "v312", "ph": "4c23846f", "equity": 86750962, "ret": -13.25}, {"id": "v309", "ph": "07610040", "equity": 86198031, "ret": -13.8}, {"id": "v296", "ph": "4c554378", "equity": 86036993, "ret": -13.96}, {"id": "v4", "ph": "b6219595", "equity": 85584881, "ret": -14.42}, {"id": "v40", "ph": "70731d89", "equity": 83785743, "ret": -16.21}, {"id": "v298", "ph": "5d4bbec0", "equity": 81408367, "ret": -18.59}, {"id": "v299", "ph": "25046b1a", "equity": 78985821, "ret": -21.01}, {"id": "v300", "ph": "c6ddc17b", "equity": 75750936, "ret": -24.25}], "20260713": [{"id": "v321", "ph": "e82de49b", "equity": 97993285, "ret": -2.01}, {"id": "v319", "ph": "ca25f043", "equity": 97450702, "ret": -2.55}, {"id": "v317", "ph": "51f8ee6d", "equity": 96646823, "ret": -3.35}, {"id": "v313", "ph": "b9f4ee72", "equity": 95903205, "ret": -4.1}, {"id": "v205", "ph": "02e5a3f5", "equity": 94889018, "ret": -5.11}, {"id": "v307", "ph": "6abce93d", "equity": 94694981, "ret": -5.31}, {"id": "v197", "ph": "5c290a32", "equity": 94654242, "ret": -5.35}, {"id": "v316", "ph": "8dc1d197", "equity": 94551424, "ret": -5.45}, {"id": "v320", "ph": "48d6a9ef", "equity": 94356057, "ret": -5.64}, {"id": "v95", "ph": "7e28e756", "equity": 94208212, "ret": -5.79}, {"id": "v203", "ph": "2071defa", "equity": 94145780, "ret": -5.85}, {"id": "v103", "ph": "75b0a37c", "equity": 94078397, "ret": -5.92}, {"id": "v199", "ph": "390bfab3", "equity": 93659485, "ret": -6.34}, {"id": "v101", "ph": "c4354346", "equity": 93648515, "ret": -6.35}, {"id": "v306", "ph": "6966b8f6", "equity": 93424603, "ret": -6.58}, {"id": "v91", "ph": "5674a3d7", "equity": 93323862, "ret": -6.68}, {"id": "v59", "ph": "1858e2ec", "equity": 93231925, "ret": -6.77}, {"id": "v157", "ph": "80f3e23b", "equity": 93198393, "ret": -6.8}, {"id": "v49", "ph": "cdba73e0", "equity": 93181463, "ret": -6.82}, {"id": "v314", "ph": "7511570e", "equity": 93184031, "ret": -6.82}, {"id": "v99", "ph": "fb39409b", "equity": 92972759, "ret": -7.03}, {"id": "v211", "ph": "9227673c", "equity": 92963129, "ret": -7.04}, {"id": "v97", "ph": "ebf31977", "equity": 92725192, "ret": -7.27}, {"id": "v304", "ph": "96c7e8e1", "equity": 92687756, "ret": -7.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 92677068, "ret": -7.32}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92628577, "ret": -7.37}, {"id": "v209", "ph": "8730802d", "equity": 92592451, "ret": -7.41}, {"id": "v57", "ph": "e7e98b6d", "equity": 92556169, "ret": -7.44}, {"id": "v315", "ph": "e6d5b283", "equity": 92418791, "ret": -7.58}, {"id": "v195", "ph": "dd89cf59", "equity": 92402967, "ret": -7.6}, {"id": "v201", "ph": "cb8a413e", "equity": 92402967, "ret": -7.6}, {"id": "v87", "ph": "c0be98c0", "equity": 92365980, "ret": -7.63}, {"id": "v93", "ph": "f10d4e45", "equity": 92365980, "ret": -7.63}, {"id": "v167", "ph": "b6d6aed8", "equity": 92215482, "ret": -7.78}, {"id": "v107", "ph": "be5cd36b", "equity": 91987442, "ret": -8.01}, {"id": "v318", "ph": "c99872ef", "equity": 91961004, "ret": -8.04}, {"id": "v207", "ph": "0f6601a0", "equity": 91936002, "ret": -8.06}, {"id": "v51", "ph": "21a98e46", "equity": 91665291, "ret": -8.33}, {"id": "v159", "ph": "af80c67a", "equity": 91669242, "ret": -8.33}, {"id": "v161", "ph": "ed5677e6", "equity": 91538846, "ret": -8.46}, {"id": "v165", "ph": "8f862b27", "equity": 91538846, "ret": -8.46}, {"id": "v89", "ph": "c49d5680", "equity": 91454254, "ret": -8.55}, {"id": "v217", "ph": "4c547a61", "equity": 90753087, "ret": -9.25}, {"id": "v218", "ph": "7304d2d4", "equity": 90753087, "ret": -9.25}, {"id": "v213", "ph": "0e1d8e45", "equity": 90711698, "ret": -9.29}, {"id": "v223", "ph": "b57356b8", "equity": 90682636, "ret": -9.32}, {"id": "v224", "ph": "888ab069", "equity": 90682636, "ret": -9.32}, {"id": "v229", "ph": "d9261dfb", "equity": 90682636, "ret": -9.32}, {"id": "v230", "ph": "141579fe", "equity": 90682636, "ret": -9.32}, {"id": "v235", "ph": "3e6c1666", "equity": 90682636, "ret": -9.32}, {"id": "v236", "ph": "f9c75560", "equity": 90682636, "ret": -9.32}, {"id": "v265", "ph": "7faed59d", "equity": 90682636, "ret": -9.32}, {"id": "v266", "ph": "c133b585", "equity": 90682636, "ret": -9.32}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90682636, "ret": -9.32}, {"id": "v272", "ph": "2ed2027f", "equity": 90682636, "ret": -9.32}, {"id": "v277", "ph": "488b612a", "equity": 90682636, "ret": -9.32}, {"id": "v278", "ph": "861fb42b", "equity": 90682636, "ret": -9.32}, {"id": "v283", "ph": "479e4b25", "equity": 90682636, "ret": -9.32}, {"id": "v284", "ph": "261c5d58", "equity": 90682636, "ret": -9.32}, {"id": "v308", "ph": "cb12dd0b", "equity": 90558789, "ret": -9.44}, {"id": "v215", "ph": "a904a49d", "equity": 90427248, "ret": -9.57}, {"id": "v303", "ph": "1a084164", "equity": 90424464, "ret": -9.58}, {"id": "v105", "ph": "88395429", "equity": 90398777, "ret": -9.6}, {"id": "v310", "ph": "ec9dd55c", "equity": 90385822, "ret": -9.61}, {"id": "v305", "ph": "8cc4eea6", "equity": 90346041, "ret": -9.65}, {"id": "v149", "ph": "c5329f8d", "equity": 90280128, "ret": -9.72}, {"id": "v301", "ph": "30da2021", "equity": 89786566, "ret": -10.21}, {"id": "v155", "ph": "31c0d84e", "equity": 89782507, "ret": -10.22}, {"id": "v47", "ph": "ed758fcf", "equity": 89371696, "ret": -10.63}, {"id": "v302", "ph": "3f30502d", "equity": 89344229, "ret": -10.66}, {"id": "v1", "ph": "4874f4c9", "equity": 89166050, "ret": -10.83}, {"id": "v151", "ph": "2eb1dd06", "equity": 89091286, "ret": -10.91}, {"id": "v311", "ph": "8409c6e5", "equity": 88615165, "ret": -11.38}, {"id": "v312", "ph": "4c23846f", "equity": 88055182, "ret": -11.94}, {"id": "v309", "ph": "07610040", "equity": 87642331, "ret": -12.36}, {"id": "v147", "ph": "2fbeeedb", "equity": 87432951, "ret": -12.57}, {"id": "v41", "ph": "e9d84e84", "equity": 87023320, "ret": -12.98}, {"id": "v4", "ph": "b6219595", "equity": 85761199, "ret": -14.24}, {"id": "v296", "ph": "4c554378", "equity": 84594910, "ret": -15.41}, {"id": "v40", "ph": "70731d89", "equity": 83960853, "ret": -16.04}, {"id": "v298", "ph": "5d4bbec0", "equity": 82134287, "ret": -17.87}, {"id": "v299", "ph": "25046b1a", "equity": 78453749, "ret": -21.55}, {"id": "v300", "ph": "c6ddc17b", "equity": 74901773, "ret": -25.1}], "20260714": [{"id": "v321", "ph": "e82de49b", "equity": 97789385, "ret": -2.21}, {"id": "v319", "ph": "ca25f043", "equity": 97582805, "ret": -2.42}, {"id": "v317", "ph": "51f8ee6d", "equity": 96466283, "ret": -3.53}, {"id": "v313", "ph": "b9f4ee72", "equity": 95558095, "ret": -4.44}, {"id": "v205", "ph": "02e5a3f5", "equity": 94974938, "ret": -5.03}, {"id": "v316", "ph": "8dc1d197", "equity": 94811844, "ret": -5.19}, {"id": "v197", "ph": "5c290a32", "equity": 94781792, "ret": -5.22}, {"id": "v320", "ph": "48d6a9ef", "equity": 94552797, "ret": -5.45}, {"id": "v307", "ph": "6abce93d", "equity": 94443551, "ret": -5.56}, {"id": "v103", "ph": "75b0a37c", "equity": 94273847, "ret": -5.73}, {"id": "v203", "ph": "2071defa", "equity": 94162800, "ret": -5.84}, {"id": "v199", "ph": "390bfab3", "equity": 93730535, "ret": -6.27}, {"id": "v95", "ph": "7e28e756", "equity": 93688530, "ret": -6.31}, {"id": "v306", "ph": "6966b8f6", "equity": 93128874, "ret": -6.87}, {"id": "v157", "ph": "80f3e23b", "equity": 93099933, "ret": -6.9}, {"id": "v101", "ph": "c4354346", "equity": 93085645, "ret": -6.91}, {"id": "v91", "ph": "5674a3d7", "equity": 93035902, "ret": -6.96}, {"id": "v211", "ph": "9227673c", "equity": 92979319, "ret": -7.02}, {"id": "v314", "ph": "7511570e", "equity": 92922331, "ret": -7.08}, {"id": "v49", "ph": "cdba73e0", "equity": 92903643, "ret": -7.1}, {"id": "v59", "ph": "1858e2ec", "equity": 92684865, "ret": -7.32}, {"id": "v189", "ph": "dfdbd0c8", "equity": 92671757, "ret": -7.33}, {"id": "v304", "ph": "96c7e8e1", "equity": 92642276, "ret": -7.36}, {"id": "v87", "ph": "c0be98c0", "equity": 92587920, "ret": -7.41}, {"id": "v93", "ph": "f10d4e45", "equity": 92587920, "ret": -7.41}, {"id": "v97", "ph": "ebf31977", "equity": 92465332, "ret": -7.53}, {"id": "v195", "ph": "dd89cf59", "equity": 92445067, "ret": -7.55}, {"id": "v201", "ph": "cb8a413e", "equity": 92445067, "ret": -7.55}, {"id": "v99", "ph": "fb39409b", "equity": 92410299, "ret": -7.59}, {"id": "v318", "ph": "c99872ef", "equity": 92219004, "ret": -7.78}, {"id": "v81", "ph": "a6eac1e4", "equity": 92177746, "ret": -7.82}, {"id": "v57", "ph": "e7e98b6d", "equity": 92009519, "ret": -7.99}, {"id": "v107", "ph": "be5cd36b", "equity": 92000429, "ret": -8.0}, {"id": "v209", "ph": "8730802d", "equity": 91790701, "ret": -8.21}, {"id": "v159", "ph": "af80c67a", "equity": 91582652, "ret": -8.42}, {"id": "v167", "ph": "b6d6aed8", "equity": 91427362, "ret": -8.57}, {"id": "v51", "ph": "21a98e46", "equity": 91402341, "ret": -8.6}, {"id": "v89", "ph": "c49d5680", "equity": 91243384, "ret": -8.76}, {"id": "v315", "ph": "e6d5b283", "equity": 91168571, "ret": -8.83}, {"id": "v207", "ph": "0f6601a0", "equity": 91144662, "ret": -8.86}, {"id": "v161", "ph": "ed5677e6", "equity": 90748936, "ret": -9.25}, {"id": "v165", "ph": "8f862b27", "equity": 90748936, "ret": -9.25}, {"id": "v310", "ph": "ec9dd55c", "equity": 90753202, "ret": -9.25}, {"id": "v213", "ph": "0e1d8e45", "equity": 90718328, "ret": -9.28}, {"id": "v217", "ph": "4c547a61", "equity": 90375417, "ret": -9.62}, {"id": "v218", "ph": "7304d2d4", "equity": 90375417, "ret": -9.62}, {"id": "v149", "ph": "c5329f8d", "equity": 90342768, "ret": -9.66}, {"id": "v223", "ph": "b57356b8", "equity": 90306266, "ret": -9.69}, {"id": "v224", "ph": "888ab069", "equity": 90306266, "ret": -9.69}, {"id": "v229", "ph": "d9261dfb", "equity": 90306266, "ret": -9.69}, {"id": "v230", "ph": "141579fe", "equity": 90306266, "ret": -9.69}, {"id": "v235", "ph": "3e6c1666", "equity": 90306266, "ret": -9.69}, {"id": "v236", "ph": "f9c75560", "equity": 90306266, "ret": -9.69}, {"id": "v265", "ph": "7faed59d", "equity": 90306266, "ret": -9.69}, {"id": "v266", "ph": "c133b585", "equity": 90306266, "ret": -9.69}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90306266, "ret": -9.69}, {"id": "v272", "ph": "2ed2027f", "equity": 90306266, "ret": -9.69}, {"id": "v277", "ph": "488b612a", "equity": 90306266, "ret": -9.69}, {"id": "v278", "ph": "861fb42b", "equity": 90306266, "ret": -9.69}, {"id": "v283", "ph": "479e4b25", "equity": 90306266, "ret": -9.69}, {"id": "v284", "ph": "261c5d58", "equity": 90306266, "ret": -9.69}, {"id": "v215", "ph": "a904a49d", "equity": 90240432, "ret": -9.76}, {"id": "v308", "ph": "cb12dd0b", "equity": 90214089, "ret": -9.79}, {"id": "v305", "ph": "8cc4eea6", "equity": 90063781, "ret": -9.94}, {"id": "v303", "ph": "1a084164", "equity": 89879294, "ret": -10.12}, {"id": "v105", "ph": "88395429", "equity": 89867245, "ret": -10.13}, {"id": "v155", "ph": "31c0d84e", "equity": 89637757, "ret": -10.36}, {"id": "v151", "ph": "2eb1dd06", "equity": 89445646, "ret": -10.55}, {"id": "v302", "ph": "3f30502d", "equity": 89306717, "ret": -10.69}, {"id": "v47", "ph": "ed758fcf", "equity": 89082566, "ret": -10.92}, {"id": "v301", "ph": "30da2021", "equity": 88985970, "ret": -11.01}, {"id": "v312", "ph": "4c23846f", "equity": 88434822, "ret": -11.57}, {"id": "v1", "ph": "4874f4c9", "equity": 88164415, "ret": -11.84}, {"id": "v311", "ph": "8409c6e5", "equity": 88024704, "ret": -11.98}, {"id": "v147", "ph": "2fbeeedb", "equity": 87818641, "ret": -12.18}, {"id": "v309", "ph": "07610040", "equity": 87561431, "ret": -12.44}, {"id": "v41", "ph": "e9d84e84", "equity": 87034620, "ret": -12.97}, {"id": "v4", "ph": "b6219595", "equity": 85775725, "ret": -14.22}, {"id": "v296", "ph": "4c554378", "equity": 84158665, "ret": -15.84}, {"id": "v40", "ph": "70731d89", "equity": 83965736, "ret": -16.03}, {"id": "v298", "ph": "5d4bbec0", "equity": 83302908, "ret": -16.7}, {"id": "v299", "ph": "25046b1a", "equity": 78333222, "ret": -21.67}, {"id": "v300", "ph": "c6ddc17b", "equity": 75953953, "ret": -24.05}], "20260715": [{"id": "v321", "ph": "e82de49b", "equity": 97881585, "ret": -2.12}, {"id": "v319", "ph": "ca25f043", "equity": 96941125, "ret": -3.06}, {"id": "v317", "ph": "51f8ee6d", "equity": 96721623, "ret": -3.28}, {"id": "v205", "ph": "02e5a3f5", "equity": 96494865, "ret": -3.51}, {"id": "v197", "ph": "5c290a32", "equity": 96288031, "ret": -3.71}, {"id": "v313", "ph": "b9f4ee72", "equity": 96177243, "ret": -3.82}, {"id": "v203", "ph": "2071defa", "equity": 95945420, "ret": -4.05}, {"id": "v103", "ph": "75b0a37c", "equity": 95590478, "ret": -4.41}, {"id": "v307", "ph": "6abce93d", "equity": 95511253, "ret": -4.49}, {"id": "v199", "ph": "390bfab3", "equity": 95234481, "ret": -4.77}, {"id": "v95", "ph": "7e28e756", "equity": 95172330, "ret": -4.83}, {"id": "v157", "ph": "80f3e23b", "equity": 94561247, "ret": -5.44}, {"id": "v316", "ph": "8dc1d197", "equity": 94512037, "ret": -5.49}, {"id": "v49", "ph": "cdba73e0", "equity": 94452030, "ret": -5.55}, {"id": "v320", "ph": "48d6a9ef", "equity": 94452811, "ret": -5.55}, {"id": "v189", "ph": "dfdbd0c8", "equity": 94413537, "ret": -5.59}, {"id": "v211", "ph": "9227673c", "equity": 94345283, "ret": -5.65}, {"id": "v91", "ph": "5674a3d7", "equity": 94341738, "ret": -5.66}, {"id": "v101", "ph": "c4354346", "equity": 94241434, "ret": -5.76}, {"id": "v314", "ph": "7511570e", "equity": 94137586, "ret": -5.86}, {"id": "v59", "ph": "1858e2ec", "equity": 94073717, "ret": -5.93}, {"id": "v87", "ph": "c0be98c0", "equity": 93886718, "ret": -6.11}, {"id": "v93", "ph": "f10d4e45", "equity": 93886718, "ret": -6.11}, {"id": "v195", "ph": "dd89cf59", "equity": 93793440, "ret": -6.21}, {"id": "v201", "ph": "cb8a413e", "equity": 93793440, "ret": -6.21}, {"id": "v97", "ph": "ebf31977", "equity": 93769938, "ret": -6.23}, {"id": "v306", "ph": "6966b8f6", "equity": 93693114, "ret": -6.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 93645606, "ret": -6.35}, {"id": "v99", "ph": "fb39409b", "equity": 93565198, "ret": -6.43}, {"id": "v107", "ph": "be5cd36b", "equity": 93472999, "ret": -6.53}, {"id": "v57", "ph": "e7e98b6d", "equity": 93396997, "ret": -6.6}, {"id": "v318", "ph": "c99872ef", "equity": 93105804, "ret": -6.89}, {"id": "v159", "ph": "af80c67a", "equity": 93021557, "ret": -6.98}, {"id": "v209", "ph": "8730802d", "equity": 92996410, "ret": -7.0}, {"id": "v51", "ph": "21a98e46", "equity": 92918693, "ret": -7.08}, {"id": "v304", "ph": "96c7e8e1", "equity": 92841909, "ret": -7.16}, {"id": "v167", "ph": "b6d6aed8", "equity": 92783723, "ret": -7.22}, {"id": "v89", "ph": "c49d5680", "equity": 92506353, "ret": -7.49}, {"id": "v213", "ph": "0e1d8e45", "equity": 92448858, "ret": -7.55}, {"id": "v207", "ph": "0f6601a0", "equity": 92322401, "ret": -7.68}, {"id": "v161", "ph": "ed5677e6", "equity": 92101406, "ret": -7.9}, {"id": "v165", "ph": "8f862b27", "equity": 92101406, "ret": -7.9}, {"id": "v149", "ph": "c5329f8d", "equity": 92091172, "ret": -7.91}, {"id": "v217", "ph": "4c547a61", "equity": 92083378, "ret": -7.92}, {"id": "v218", "ph": "7304d2d4", "equity": 92083378, "ret": -7.92}, {"id": "v223", "ph": "b57356b8", "equity": 92014227, "ret": -7.99}, {"id": "v224", "ph": "888ab069", "equity": 92014227, "ret": -7.99}, {"id": "v229", "ph": "d9261dfb", "equity": 92014227, "ret": -7.99}, {"id": "v230", "ph": "141579fe", "equity": 92014227, "ret": -7.99}, {"id": "v235", "ph": "3e6c1666", "equity": 92014227, "ret": -7.99}, {"id": "v236", "ph": "f9c75560", "equity": 92014227, "ret": -7.99}, {"id": "v265", "ph": "7faed59d", "equity": 92014227, "ret": -7.99}, {"id": "v266", "ph": "c133b585", "equity": 92014227, "ret": -7.99}, {"id": "v271", "ph": "2b9ccdcd", "equity": 92014227, "ret": -7.99}, {"id": "v272", "ph": "2ed2027f", "equity": 92014227, "ret": -7.99}, {"id": "v277", "ph": "488b612a", "equity": 92014227, "ret": -7.99}, {"id": "v278", "ph": "861fb42b", "equity": 92014227, "ret": -7.99}, {"id": "v283", "ph": "479e4b25", "equity": 92014227, "ret": -7.99}, {"id": "v284", "ph": "261c5d58", "equity": 92014227, "ret": -7.99}, {"id": "v315", "ph": "e6d5b283", "equity": 91954633, "ret": -8.05}, {"id": "v215", "ph": "a904a49d", "equity": 91742192, "ret": -8.26}, {"id": "v308", "ph": "cb12dd0b", "equity": 91602089, "ret": -8.4}, {"id": "v310", "ph": "ec9dd55c", "equity": 91437214, "ret": -8.56}, {"id": "v305", "ph": "8cc4eea6", "equity": 91318887, "ret": -8.68}, {"id": "v105", "ph": "88395429", "equity": 91294695, "ret": -8.71}, {"id": "v303", "ph": "1a084164", "equity": 91280975, "ret": -8.72}, {"id": "v151", "ph": "2eb1dd06", "equity": 91151628, "ret": -8.85}, {"id": "v155", "ph": "31c0d84e", "equity": 91066702, "ret": -8.93}, {"id": "v302", "ph": "3f30502d", "equity": 90999999, "ret": -9.0}, {"id": "v47", "ph": "ed758fcf", "equity": 90556310, "ret": -9.44}, {"id": "v301", "ph": "30da2021", "equity": 90510544, "ret": -9.49}, {"id": "v1", "ph": "4874f4c9", "equity": 89753670, "ret": -10.25}, {"id": "v312", "ph": "4c23846f", "equity": 89629262, "ret": -10.37}, {"id": "v147", "ph": "2fbeeedb", "equity": 89491453, "ret": -10.51}, {"id": "v41", "ph": "e9d84e84", "equity": 89149905, "ret": -10.85}, {"id": "v309", "ph": "07610040", "equity": 88927631, "ret": -11.07}, {"id": "v311", "ph": "8409c6e5", "equity": 88877600, "ret": -11.12}, {"id": "v4", "ph": "b6219595", "equity": 86786797, "ret": -13.21}, {"id": "v40", "ph": "70731d89", "equity": 84949022, "ret": -15.05}, {"id": "v296", "ph": "4c554378", "equity": 84318050, "ret": -15.68}, {"id": "v298", "ph": "5d4bbec0", "equity": 84182209, "ret": -15.82}, {"id": "v299", "ph": "25046b1a", "equity": 79402935, "ret": -20.6}, {"id": "v300", "ph": "c6ddc17b", "equity": 77045856, "ret": -22.95}], "20260716": [{"id": "v321", "ph": "e82de49b", "equity": 97662800, "ret": -2.34}, {"id": "v317", "ph": "51f8ee6d", "equity": 96342751, "ret": -3.66}, {"id": "v205", "ph": "02e5a3f5", "equity": 96098532, "ret": -3.9}, {"id": "v319", "ph": "ca25f043", "equity": 95637660, "ret": -4.36}, {"id": "v197", "ph": "5c290a32", "equity": 95579791, "ret": -4.42}, {"id": "v203", "ph": "2071defa", "equity": 95582104, "ret": -4.42}, {"id": "v103", "ph": "75b0a37c", "equity": 95449502, "ret": -4.55}, {"id": "v313", "ph": "b9f4ee72", "equity": 95008900, "ret": -4.99}, {"id": "v95", "ph": "7e28e756", "equity": 94748728, "ret": -5.25}, {"id": "v199", "ph": "390bfab3", "equity": 94565021, "ret": -5.43}, {"id": "v307", "ph": "6abce93d", "equity": 94270692, "ret": -5.73}, {"id": "v101", "ph": "c4354346", "equity": 94237231, "ret": -5.76}, {"id": "v59", "ph": "1858e2ec", "equity": 94226283, "ret": -5.77}, {"id": "v157", "ph": "80f3e23b", "equity": 94217123, "ret": -5.78}, {"id": "v49", "ph": "cdba73e0", "equity": 94125926, "ret": -5.87}, {"id": "v211", "ph": "9227673c", "equity": 94095386, "ret": -5.9}, {"id": "v189", "ph": "dfdbd0c8", "equity": 93681511, "ret": -6.32}, {"id": "v314", "ph": "7511570e", "equity": 93578380, "ret": -6.42}, {"id": "v99", "ph": "fb39409b", "equity": 93562035, "ret": -6.44}, {"id": "v316", "ph": "8dc1d197", "equity": 93564398, "ret": -6.44}, {"id": "v57", "ph": "e7e98b6d", "equity": 93550050, "ret": -6.45}, {"id": "v91", "ph": "5674a3d7", "equity": 93540268, "ret": -6.46}, {"id": "v107", "ph": "be5cd36b", "equity": 93475030, "ret": -6.52}, {"id": "v87", "ph": "c0be98c0", "equity": 93437735, "ret": -6.56}, {"id": "v93", "ph": "f10d4e45", "equity": 93437735, "ret": -6.56}, {"id": "v306", "ph": "6966b8f6", "equity": 93314376, "ret": -6.69}, {"id": "v320", "ph": "48d6a9ef", "equity": 93302940, "ret": -6.7}, {"id": "v97", "ph": "ebf31977", "equity": 93246574, "ret": -6.75}, {"id": "v195", "ph": "dd89cf59", "equity": 93233458, "ret": -6.77}, {"id": "v201", "ph": "cb8a413e", "equity": 93233458, "ret": -6.77}, {"id": "v318", "ph": "c99872ef", "equity": 92972504, "ret": -7.03}, {"id": "v209", "ph": "8730802d", "equity": 92923788, "ret": -7.08}, {"id": "v81", "ph": "a6eac1e4", "equity": 92858315, "ret": -7.14}, {"id": "v167", "ph": "b6d6aed8", "equity": 92804598, "ret": -7.2}, {"id": "v159", "ph": "af80c67a", "equity": 92313584, "ret": -7.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 92306951, "ret": -7.69}, {"id": "v207", "ph": "0f6601a0", "equity": 92265672, "ret": -7.73}, {"id": "v51", "ph": "21a98e46", "equity": 92228353, "ret": -7.77}, {"id": "v315", "ph": "e6d5b283", "equity": 92176927, "ret": -7.82}, {"id": "v161", "ph": "ed5677e6", "equity": 92123621, "ret": -7.88}, {"id": "v165", "ph": "8f862b27", "equity": 92123621, "ret": -7.88}, {"id": "v213", "ph": "0e1d8e45", "equity": 92105005, "ret": -7.89}, {"id": "v89", "ph": "c49d5680", "equity": 91672443, "ret": -8.33}, {"id": "v215", "ph": "a904a49d", "equity": 91600859, "ret": -8.4}, {"id": "v149", "ph": "c5329f8d", "equity": 91348894, "ret": -8.65}, {"id": "v308", "ph": "cb12dd0b", "equity": 91129257, "ret": -8.87}, {"id": "v105", "ph": "88395429", "equity": 90897351, "ret": -9.1}, {"id": "v155", "ph": "31c0d84e", "equity": 90751770, "ret": -9.25}, {"id": "v217", "ph": "4c547a61", "equity": 90452057, "ret": -9.55}, {"id": "v218", "ph": "7304d2d4", "equity": 90452057, "ret": -9.55}, {"id": "v223", "ph": "b57356b8", "equity": 90381905, "ret": -9.62}, {"id": "v224", "ph": "888ab069", "equity": 90381905, "ret": -9.62}, {"id": "v229", "ph": "d9261dfb", "equity": 90381905, "ret": -9.62}, {"id": "v230", "ph": "141579fe", "equity": 90381905, "ret": -9.62}, {"id": "v235", "ph": "3e6c1666", "equity": 90381905, "ret": -9.62}, {"id": "v236", "ph": "f9c75560", "equity": 90381905, "ret": -9.62}, {"id": "v265", "ph": "7faed59d", "equity": 90381905, "ret": -9.62}, {"id": "v266", "ph": "c133b585", "equity": 90381905, "ret": -9.62}, {"id": "v271", "ph": "2b9ccdcd", "equity": 90381905, "ret": -9.62}, {"id": "v272", "ph": "2ed2027f", "equity": 90381905, "ret": -9.62}, {"id": "v277", "ph": "488b612a", "equity": 90381905, "ret": -9.62}, {"id": "v278", "ph": "861fb42b", "equity": 90381905, "ret": -9.62}, {"id": "v283", "ph": "479e4b25", "equity": 90381905, "ret": -9.62}, {"id": "v284", "ph": "261c5d58", "equity": 90381905, "ret": -9.62}, {"id": "v301", "ph": "30da2021", "equity": 90291973, "ret": -9.71}, {"id": "v47", "ph": "ed758fcf", "equity": 90254293, "ret": -9.75}, {"id": "v305", "ph": "8cc4eea6", "equity": 90139532, "ret": -9.86}, {"id": "v310", "ph": "ec9dd55c", "equity": 89818318, "ret": -10.18}, {"id": "v303", "ph": "1a084164", "equity": 89794120, "ret": -10.21}, {"id": "v151", "ph": "2eb1dd06", "equity": 89703330, "ret": -10.3}, {"id": "v1", "ph": "4874f4c9", "equity": 89683916, "ret": -10.32}, {"id": "v302", "ph": "3f30502d", "equity": 89587578, "ret": -10.41}, {"id": "v312", "ph": "4c23846f", "equity": 89359819, "ret": -10.64}, {"id": "v309", "ph": "07610040", "equity": 88934323, "ret": -11.07}, {"id": "v311", "ph": "8409c6e5", "equity": 88468299, "ret": -11.53}, {"id": "v41", "ph": "e9d84e84", "equity": 88438727, "ret": -11.56}, {"id": "v147", "ph": "2fbeeedb", "equity": 88051474, "ret": -11.95}, {"id": "v4", "ph": "b6219595", "equity": 85931638, "ret": -14.07}, {"id": "v40", "ph": "70731d89", "equity": 84117298, "ret": -15.88}, {"id": "v296", "ph": "4c554378", "equity": 82994880, "ret": -17.01}, {"id": "v298", "ph": "5d4bbec0", "equity": 82799229, "ret": -17.2}, {"id": "v299", "ph": "25046b1a", "equity": 79039512, "ret": -20.96}, {"id": "v300", "ph": "c6ddc17b", "equity": 75498773, "ret": -24.5}], "20260720": [{"id": "v321", "ph": "e82de49b", "equity": 96303358, "ret": -3.7}, {"id": "v319", "ph": "ca25f043", "equity": 96044191, "ret": -3.96}, {"id": "v317", "ph": "51f8ee6d", "equity": 95288497, "ret": -4.71}, {"id": "v103", "ph": "75b0a37c", "equity": 93981281, "ret": -6.02}, {"id": "v205", "ph": "02e5a3f5", "equity": 93885806, "ret": -6.11}, {"id": "v203", "ph": "2071defa", "equity": 93581916, "ret": -6.42}, {"id": "v313", "ph": "b9f4ee72", "equity": 93201667, "ret": -6.8}, {"id": "v95", "ph": "7e28e756", "equity": 93141972, "ret": -6.86}, {"id": "v101", "ph": "c4354346", "equity": 92822611, "ret": -7.18}, {"id": "v197", "ph": "5c290a32", "equity": 92785025, "ret": -7.21}, {"id": "v107", "ph": "be5cd36b", "equity": 92365156, "ret": -7.63}, {"id": "v211", "ph": "9227673c", "equity": 92222608, "ret": -7.78}, {"id": "v59", "ph": "1858e2ec", "equity": 92203842, "ret": -7.8}, {"id": "v99", "ph": "fb39409b", "equity": 92148835, "ret": -7.85}, {"id": "v49", "ph": "cdba73e0", "equity": 92068274, "ret": -7.93}, {"id": "v316", "ph": "8dc1d197", "equity": 92048108, "ret": -7.95}, {"id": "v307", "ph": "6abce93d", "equity": 91964764, "ret": -8.04}, {"id": "v157", "ph": "80f3e23b", "equity": 91915976, "ret": -8.08}, {"id": "v199", "ph": "390bfab3", "equity": 91829052, "ret": -8.17}, {"id": "v318", "ph": "c99872ef", "equity": 91722878, "ret": -8.28}, {"id": "v57", "ph": "e7e98b6d", "equity": 91530428, "ret": -8.47}, {"id": "v320", "ph": "48d6a9ef", "equity": 91403769, "ret": -8.6}, {"id": "v87", "ph": "c0be98c0", "equity": 91390375, "ret": -8.61}, {"id": "v93", "ph": "f10d4e45", "equity": 91390375, "ret": -8.61}, {"id": "v97", "ph": "ebf31977", "equity": 91306098, "ret": -8.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 91190931, "ret": -8.81}, {"id": "v189", "ph": "dfdbd0c8", "equity": 91179391, "ret": -8.82}, {"id": "v91", "ph": "5674a3d7", "equity": 91038152, "ret": -8.96}, {"id": "v209", "ph": "8730802d", "equity": 90834039, "ret": -9.17}, {"id": "v195", "ph": "dd89cf59", "equity": 90778699, "ret": -9.22}, {"id": "v201", "ph": "cb8a413e", "equity": 90778699, "ret": -9.22}, {"id": "v314", "ph": "7511570e", "equity": 90564147, "ret": -9.44}, {"id": "v81", "ph": "a6eac1e4", "equity": 90539154, "ret": -9.46}, {"id": "v306", "ph": "6966b8f6", "equity": 90332758, "ret": -9.67}, {"id": "v167", "ph": "b6d6aed8", "equity": 90306583, "ret": -9.69}, {"id": "v207", "ph": "0f6601a0", "equity": 90235466, "ret": -9.76}, {"id": "v215", "ph": "a904a49d", "equity": 90166566, "ret": -9.83}, {"id": "v213", "ph": "0e1d8e45", "equity": 90160174, "ret": -9.84}, {"id": "v161", "ph": "ed5677e6", "equity": 89630326, "ret": -10.37}, {"id": "v165", "ph": "8f862b27", "equity": 89630326, "ret": -10.37}, {"id": "v159", "ph": "af80c67a", "equity": 89531050, "ret": -10.47}, {"id": "v51", "ph": "21a98e46", "equity": 89486279, "ret": -10.51}, {"id": "v315", "ph": "e6d5b283", "equity": 89455929, "ret": -10.54}, {"id": "v105", "ph": "88395429", "equity": 89360548, "ret": -10.64}, {"id": "v89", "ph": "c49d5680", "equity": 89150562, "ret": -10.85}, {"id": "v308", "ph": "cb12dd0b", "equity": 88841934, "ret": -11.16}, {"id": "v310", "ph": "ec9dd55c", "equity": 88693215, "ret": -11.31}, {"id": "v155", "ph": "31c0d84e", "equity": 88538444, "ret": -11.46}, {"id": "v47", "ph": "ed758fcf", "equity": 88311396, "ret": -11.69}, {"id": "v305", "ph": "8cc4eea6", "equity": 87805982, "ret": -12.19}, {"id": "v149", "ph": "c5329f8d", "equity": 87377221, "ret": -12.62}, {"id": "v301", "ph": "30da2021", "equity": 87115160, "ret": -12.88}, {"id": "v312", "ph": "4c23846f", "equity": 86824419, "ret": -13.18}, {"id": "v217", "ph": "4c547a61", "equity": 86727416, "ret": -13.27}, {"id": "v218", "ph": "7304d2d4", "equity": 86727416, "ret": -13.27}, {"id": "v223", "ph": "b57356b8", "equity": 86665159, "ret": -13.33}, {"id": "v224", "ph": "888ab069", "equity": 86665159, "ret": -13.33}, {"id": "v229", "ph": "d9261dfb", "equity": 86665159, "ret": -13.33}, {"id": "v230", "ph": "141579fe", "equity": 86665159, "ret": -13.33}, {"id": "v235", "ph": "3e6c1666", "equity": 86665159, "ret": -13.33}, {"id": "v236", "ph": "f9c75560", "equity": 86665159, "ret": -13.33}, {"id": "v265", "ph": "7faed59d", "equity": 86665159, "ret": -13.33}, {"id": "v266", "ph": "c133b585", "equity": 86665159, "ret": -13.33}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86665159, "ret": -13.33}, {"id": "v272", "ph": "2ed2027f", "equity": 86665159, "ret": -13.33}, {"id": "v277", "ph": "488b612a", "equity": 86665159, "ret": -13.33}, {"id": "v278", "ph": "861fb42b", "equity": 86665159, "ret": -13.33}, {"id": "v283", "ph": "479e4b25", "equity": 86665159, "ret": -13.33}, {"id": "v284", "ph": "261c5d58", "equity": 86665159, "ret": -13.33}, {"id": "v1", "ph": "4874f4c9", "equity": 86623058, "ret": -13.38}, {"id": "v309", "ph": "07610040", "equity": 86303983, "ret": -13.7}, {"id": "v311", "ph": "8409c6e5", "equity": 86212810, "ret": -13.79}, {"id": "v303", "ph": "1a084164", "equity": 86195681, "ret": -13.8}, {"id": "v151", "ph": "2eb1dd06", "equity": 85016045, "ret": -14.98}, {"id": "v41", "ph": "e9d84e84", "equity": 84517336, "ret": -15.48}, {"id": "v302", "ph": "3f30502d", "equity": 84451669, "ret": -15.55}, {"id": "v147", "ph": "2fbeeedb", "equity": 83598548, "ret": -16.4}, {"id": "v4", "ph": "b6219595", "equity": 81621988, "ret": -18.38}, {"id": "v296", "ph": "4c554378", "equity": 80332295, "ret": -19.67}, {"id": "v40", "ph": "70731d89", "equity": 79967856, "ret": -20.03}, {"id": "v298", "ph": "5d4bbec0", "equity": 78569163, "ret": -21.43}, {"id": "v299", "ph": "25046b1a", "equity": 74944589, "ret": -25.06}, {"id": "v300", "ph": "c6ddc17b", "equity": 71115223, "ret": -28.88}], "20260721": [{"id": "v321", "ph": "e82de49b", "equity": 96591994, "ret": -3.41}, {"id": "v319", "ph": "ca25f043", "equity": 96446024, "ret": -3.55}, {"id": "v317", "ph": "51f8ee6d", "equity": 95147797, "ret": -4.85}, {"id": "v103", "ph": "75b0a37c", "equity": 93883981, "ret": -6.12}, {"id": "v205", "ph": "02e5a3f5", "equity": 93630760, "ret": -6.37}, {"id": "v313", "ph": "b9f4ee72", "equity": 93214559, "ret": -6.79}, {"id": "v203", "ph": "2071defa", "equity": 93087341, "ret": -6.91}, {"id": "v101", "ph": "c4354346", "equity": 92722111, "ret": -7.28}, {"id": "v197", "ph": "5c290a32", "equity": 92429405, "ret": -7.57}, {"id": "v95", "ph": "7e28e756", "equity": 92395930, "ret": -7.6}, {"id": "v59", "ph": "1858e2ec", "equity": 92162442, "ret": -7.84}, {"id": "v211", "ph": "9227673c", "equity": 92124448, "ret": -7.88}, {"id": "v99", "ph": "fb39409b", "equity": 92048335, "ret": -7.95}, {"id": "v316", "ph": "8dc1d197", "equity": 92025212, "ret": -7.97}, {"id": "v107", "ph": "be5cd36b", "equity": 91820632, "ret": -8.18}, {"id": "v307", "ph": "6abce93d", "equity": 91510486, "ret": -8.49}, {"id": "v57", "ph": "e7e98b6d", "equity": 91488608, "ret": -8.51}, {"id": "v49", "ph": "cdba73e0", "equity": 91443759, "ret": -8.56}, {"id": "v157", "ph": "80f3e23b", "equity": 91414714, "ret": -8.59}, {"id": "v320", "ph": "48d6a9ef", "equity": 91379973, "ret": -8.62}, {"id": "v199", "ph": "390bfab3", "equity": 91374084, "ret": -8.63}, {"id": "v318", "ph": "c99872ef", "equity": 91356580, "ret": -8.64}, {"id": "v97", "ph": "ebf31977", "equity": 91347946, "ret": -8.65}, {"id": "v304", "ph": "96c7e8e1", "equity": 91228811, "ret": -8.77}, {"id": "v87", "ph": "c0be98c0", "equity": 91188775, "ret": -8.81}, {"id": "v93", "ph": "f10d4e45", "equity": 91188775, "ret": -8.81}, {"id": "v91", "ph": "5674a3d7", "equity": 90877452, "ret": -9.12}, {"id": "v209", "ph": "8730802d", "equity": 90733539, "ret": -9.27}, {"id": "v195", "ph": "dd89cf59", "equity": 90576255, "ret": -9.42}, {"id": "v201", "ph": "cb8a413e", "equity": 90576255, "ret": -9.42}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90513367, "ret": -9.49}, {"id": "v314", "ph": "7511570e", "equity": 90457850, "ret": -9.54}, {"id": "v306", "ph": "6966b8f6", "equity": 90451761, "ret": -9.55}, {"id": "v167", "ph": "b6d6aed8", "equity": 90194183, "ret": -9.81}, {"id": "v207", "ph": "0f6601a0", "equity": 90128866, "ret": -9.87}, {"id": "v213", "ph": "0e1d8e45", "equity": 89791224, "ret": -10.21}, {"id": "v81", "ph": "a6eac1e4", "equity": 89684613, "ret": -10.32}, {"id": "v215", "ph": "a904a49d", "equity": 89631706, "ret": -10.37}, {"id": "v161", "ph": "ed5677e6", "equity": 89518526, "ret": -10.48}, {"id": "v165", "ph": "8f862b27", "equity": 89518526, "ret": -10.48}, {"id": "v315", "ph": "e6d5b283", "equity": 89479409, "ret": -10.52}, {"id": "v89", "ph": "c49d5680", "equity": 89096535, "ret": -10.9}, {"id": "v159", "ph": "af80c67a", "equity": 88860327, "ret": -11.14}, {"id": "v51", "ph": "21a98e46", "equity": 88745286, "ret": -11.25}, {"id": "v105", "ph": "88395429", "equity": 88751830, "ret": -11.25}, {"id": "v308", "ph": "cb12dd0b", "equity": 88706257, "ret": -11.29}, {"id": "v310", "ph": "ec9dd55c", "equity": 88585915, "ret": -11.41}, {"id": "v155", "ph": "31c0d84e", "equity": 88148500, "ret": -11.85}, {"id": "v305", "ph": "8cc4eea6", "equity": 87864506, "ret": -12.14}, {"id": "v47", "ph": "ed758fcf", "equity": 87810183, "ret": -12.19}, {"id": "v301", "ph": "30da2021", "equity": 87082070, "ret": -12.92}, {"id": "v312", "ph": "4c23846f", "equity": 87081619, "ret": -12.92}, {"id": "v149", "ph": "c5329f8d", "equity": 86977446, "ret": -13.02}, {"id": "v1", "ph": "4874f4c9", "equity": 86563348, "ret": -13.44}, {"id": "v309", "ph": "07610040", "equity": 86463979, "ret": -13.54}, {"id": "v311", "ph": "8409c6e5", "equity": 86101230, "ret": -13.9}, {"id": "v217", "ph": "4c547a61", "equity": 86090367, "ret": -13.91}, {"id": "v218", "ph": "7304d2d4", "equity": 86090367, "ret": -13.91}, {"id": "v223", "ph": "b57356b8", "equity": 86028111, "ret": -13.97}, {"id": "v224", "ph": "888ab069", "equity": 86028111, "ret": -13.97}, {"id": "v229", "ph": "d9261dfb", "equity": 86028111, "ret": -13.97}, {"id": "v230", "ph": "141579fe", "equity": 86028111, "ret": -13.97}, {"id": "v235", "ph": "3e6c1666", "equity": 86028111, "ret": -13.97}, {"id": "v236", "ph": "f9c75560", "equity": 86028111, "ret": -13.97}, {"id": "v265", "ph": "7faed59d", "equity": 86028111, "ret": -13.97}, {"id": "v266", "ph": "c133b585", "equity": 86028111, "ret": -13.97}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86028111, "ret": -13.97}, {"id": "v272", "ph": "2ed2027f", "equity": 86028111, "ret": -13.97}, {"id": "v277", "ph": "488b612a", "equity": 86028111, "ret": -13.97}, {"id": "v278", "ph": "861fb42b", "equity": 86028111, "ret": -13.97}, {"id": "v283", "ph": "479e4b25", "equity": 86028111, "ret": -13.97}, {"id": "v284", "ph": "261c5d58", "equity": 86028111, "ret": -13.97}, {"id": "v303", "ph": "1a084164", "equity": 85800353, "ret": -14.2}, {"id": "v151", "ph": "2eb1dd06", "equity": 84317520, "ret": -15.68}, {"id": "v302", "ph": "3f30502d", "equity": 84240679, "ret": -15.76}, {"id": "v41", "ph": "e9d84e84", "equity": 84181614, "ret": -15.82}, {"id": "v147", "ph": "2fbeeedb", "equity": 82857327, "ret": -17.14}, {"id": "v4", "ph": "b6219595", "equity": 81505657, "ret": -18.49}, {"id": "v296", "ph": "4c554378", "equity": 80029835, "ret": -19.97}, {"id": "v40", "ph": "70731d89", "equity": 79724166, "ret": -20.28}, {"id": "v298", "ph": "5d4bbec0", "equity": 78134788, "ret": -21.87}, {"id": "v299", "ph": "25046b1a", "equity": 75186062, "ret": -24.81}, {"id": "v300", "ph": "c6ddc17b", "equity": 70909523, "ret": -29.09}], "20260722": [{"id": "v319", "ph": "ca25f043", "equity": 96641404, "ret": -3.36}, {"id": "v321", "ph": "e82de49b", "equity": 95537377, "ret": -4.46}, {"id": "v317", "ph": "51f8ee6d", "equity": 94531711, "ret": -5.47}, {"id": "v103", "ph": "75b0a37c", "equity": 93201324, "ret": -6.8}, {"id": "v313", "ph": "b9f4ee72", "equity": 92977447, "ret": -7.02}, {"id": "v203", "ph": "2071defa", "equity": 92580836, "ret": -7.42}, {"id": "v101", "ph": "c4354346", "equity": 92115111, "ret": -7.88}, {"id": "v205", "ph": "02e5a3f5", "equity": 92057986, "ret": -7.94}, {"id": "v95", "ph": "7e28e756", "equity": 91889124, "ret": -8.11}, {"id": "v59", "ph": "1858e2ec", "equity": 91558042, "ret": -8.44}, {"id": "v316", "ph": "8dc1d197", "equity": 91493287, "ret": -8.51}, {"id": "v99", "ph": "fb39409b", "equity": 91441335, "ret": -8.56}, {"id": "v211", "ph": "9227673c", "equity": 91363538, "ret": -8.64}, {"id": "v107", "ph": "be5cd36b", "equity": 91245339, "ret": -8.75}, {"id": "v49", "ph": "cdba73e0", "equity": 90956284, "ret": -9.04}, {"id": "v57", "ph": "e7e98b6d", "equity": 90884208, "ret": -9.12}, {"id": "v157", "ph": "80f3e23b", "equity": 90863739, "ret": -9.14}, {"id": "v320", "ph": "48d6a9ef", "equity": 90822660, "ret": -9.18}, {"id": "v307", "ph": "6abce93d", "equity": 90804817, "ret": -9.2}, {"id": "v199", "ph": "390bfab3", "equity": 90742209, "ret": -9.26}, {"id": "v197", "ph": "5c290a32", "equity": 90666801, "ret": -9.33}, {"id": "v318", "ph": "c99872ef", "equity": 90516380, "ret": -9.48}, {"id": "v87", "ph": "c0be98c0", "equity": 90307213, "ret": -9.69}, {"id": "v93", "ph": "f10d4e45", "equity": 90307213, "ret": -9.69}, {"id": "v304", "ph": "96c7e8e1", "equity": 90277144, "ret": -9.72}, {"id": "v209", "ph": "8730802d", "equity": 90126539, "ret": -9.87}, {"id": "v91", "ph": "5674a3d7", "equity": 90021177, "ret": -9.98}, {"id": "v314", "ph": "7511570e", "equity": 89783375, "ret": -10.22}, {"id": "v189", "ph": "dfdbd0c8", "equity": 89633593, "ret": -10.37}, {"id": "v195", "ph": "dd89cf59", "equity": 89617275, "ret": -10.38}, {"id": "v201", "ph": "cb8a413e", "equity": 89617275, "ret": -10.38}, {"id": "v167", "ph": "b6d6aed8", "equity": 89610883, "ret": -10.39}, {"id": "v97", "ph": "ebf31977", "equity": 89568560, "ret": -10.43}, {"id": "v207", "ph": "0f6601a0", "equity": 89545866, "ret": -10.45}, {"id": "v215", "ph": "a904a49d", "equity": 88987147, "ret": -11.01}, {"id": "v161", "ph": "ed5677e6", "equity": 88936526, "ret": -11.06}, {"id": "v165", "ph": "8f862b27", "equity": 88936526, "ret": -11.06}, {"id": "v81", "ph": "a6eac1e4", "equity": 88933538, "ret": -11.07}, {"id": "v315", "ph": "e6d5b283", "equity": 88851609, "ret": -11.15}, {"id": "v306", "ph": "6966b8f6", "equity": 88712580, "ret": -11.29}, {"id": "v213", "ph": "0e1d8e45", "equity": 88203339, "ret": -11.8}, {"id": "v310", "ph": "ec9dd55c", "equity": 88037815, "ret": -11.96}, {"id": "v51", "ph": "21a98e46", "equity": 88001642, "ret": -12.0}, {"id": "v159", "ph": "af80c67a", "equity": 87978483, "ret": -12.02}, {"id": "v105", "ph": "88395429", "equity": 87164209, "ret": -12.84}, {"id": "v89", "ph": "c49d5680", "equity": 87152293, "ret": -12.85}, {"id": "v308", "ph": "cb12dd0b", "equity": 86987617, "ret": -13.01}, {"id": "v305", "ph": "8cc4eea6", "equity": 86676626, "ret": -13.32}, {"id": "v155", "ph": "31c0d84e", "equity": 86517483, "ret": -13.48}, {"id": "v301", "ph": "30da2021", "equity": 86299570, "ret": -13.7}, {"id": "v47", "ph": "ed758fcf", "equity": 86262582, "ret": -13.74}, {"id": "v312", "ph": "4c23846f", "equity": 85729419, "ret": -14.27}, {"id": "v1", "ph": "4874f4c9", "equity": 85660548, "ret": -14.34}, {"id": "v149", "ph": "c5329f8d", "equity": 85242679, "ret": -14.76}, {"id": "v303", "ph": "1a084164", "equity": 85186241, "ret": -14.81}, {"id": "v311", "ph": "8409c6e5", "equity": 85184230, "ret": -14.82}, {"id": "v218", "ph": "7304d2d4", "equity": 85145383, "ret": -14.85}, {"id": "v217", "ph": "4c547a61", "equity": 85097376, "ret": -14.9}, {"id": "v223", "ph": "b57356b8", "equity": 85083127, "ret": -14.92}, {"id": "v224", "ph": "888ab069", "equity": 85083127, "ret": -14.92}, {"id": "v229", "ph": "d9261dfb", "equity": 85083127, "ret": -14.92}, {"id": "v230", "ph": "141579fe", "equity": 85083127, "ret": -14.92}, {"id": "v235", "ph": "3e6c1666", "equity": 85083127, "ret": -14.92}, {"id": "v236", "ph": "f9c75560", "equity": 85083127, "ret": -14.92}, {"id": "v265", "ph": "7faed59d", "equity": 85083127, "ret": -14.92}, {"id": "v266", "ph": "c133b585", "equity": 85083127, "ret": -14.92}, {"id": "v271", "ph": "2b9ccdcd", "equity": 85083127, "ret": -14.92}, {"id": "v272", "ph": "2ed2027f", "equity": 85083127, "ret": -14.92}, {"id": "v277", "ph": "488b612a", "equity": 85083127, "ret": -14.92}, {"id": "v278", "ph": "861fb42b", "equity": 85083127, "ret": -14.92}, {"id": "v283", "ph": "479e4b25", "equity": 85083127, "ret": -14.92}, {"id": "v284", "ph": "261c5d58", "equity": 85083127, "ret": -14.92}, {"id": "v309", "ph": "07610040", "equity": 84801897, "ret": -15.2}, {"id": "v302", "ph": "3f30502d", "equity": 82984780, "ret": -17.02}, {"id": "v41", "ph": "e9d84e84", "equity": 82442562, "ret": -17.56}, {"id": "v151", "ph": "2eb1dd06", "equity": 82206766, "ret": -17.79}, {"id": "v147", "ph": "2fbeeedb", "equity": 80675705, "ret": -19.32}, {"id": "v4", "ph": "b6219595", "equity": 79163178, "ret": -20.84}, {"id": "v296", "ph": "4c554378", "equity": 79015755, "ret": -20.98}, {"id": "v40", "ph": "70731d89", "equity": 77413917, "ret": -22.59}, {"id": "v298", "ph": "5d4bbec0", "equity": 77045963, "ret": -22.95}, {"id": "v299", "ph": "25046b1a", "equity": 73699362, "ret": -26.3}, {"id": "v300", "ph": "c6ddc17b", "equity": 70020634, "ret": -29.98}], "20260723": [{"id": "v319", "ph": "ca25f043", "equity": 97344281, "ret": -2.66}, {"id": "v321", "ph": "e82de49b", "equity": 96850290, "ret": -3.15}, {"id": "v317", "ph": "51f8ee6d", "equity": 95483411, "ret": -4.52}, {"id": "v103", "ph": "75b0a37c", "equity": 94719243, "ret": -5.28}, {"id": "v203", "ph": "2071defa", "equity": 94158254, "ret": -5.84}, {"id": "v313", "ph": "b9f4ee72", "equity": 93714884, "ret": -6.29}, {"id": "v101", "ph": "c4354346", "equity": 93675266, "ret": -6.32}, {"id": "v95", "ph": "7e28e756", "equity": 93472137, "ret": -6.53}, {"id": "v205", "ph": "02e5a3f5", "equity": 93469960, "ret": -6.53}, {"id": "v59", "ph": "1858e2ec", "equity": 93262679, "ret": -6.74}, {"id": "v99", "ph": "fb39409b", "equity": 92998776, "ret": -7.0}, {"id": "v211", "ph": "9227673c", "equity": 92839096, "ret": -7.16}, {"id": "v107", "ph": "be5cd36b", "equity": 92768400, "ret": -7.23}, {"id": "v49", "ph": "cdba73e0", "equity": 92637002, "ret": -7.36}, {"id": "v57", "ph": "e7e98b6d", "equity": 92587857, "ret": -7.41}, {"id": "v157", "ph": "80f3e23b", "equity": 92198402, "ret": -7.8}, {"id": "v197", "ph": "5c290a32", "equity": 92020162, "ret": -7.98}, {"id": "v318", "ph": "c99872ef", "equity": 91922879, "ret": -8.08}, {"id": "v199", "ph": "390bfab3", "equity": 91822113, "ret": -8.18}, {"id": "v87", "ph": "c0be98c0", "equity": 91746796, "ret": -8.25}, {"id": "v93", "ph": "f10d4e45", "equity": 91746796, "ret": -8.25}, {"id": "v316", "ph": "8dc1d197", "equity": 91739958, "ret": -8.26}, {"id": "v209", "ph": "8730802d", "equity": 91679109, "ret": -8.32}, {"id": "v307", "ph": "6abce93d", "equity": 91621406, "ret": -8.38}, {"id": "v91", "ph": "5674a3d7", "equity": 91420862, "ret": -8.58}, {"id": "v167", "ph": "b6d6aed8", "equity": 91099221, "ret": -8.9}, {"id": "v320", "ph": "48d6a9ef", "equity": 91086838, "ret": -8.91}, {"id": "v207", "ph": "0f6601a0", "equity": 91055209, "ret": -8.94}, {"id": "v315", "ph": "e6d5b283", "equity": 91044857, "ret": -8.96}, {"id": "v195", "ph": "dd89cf59", "equity": 91023841, "ret": -8.98}, {"id": "v201", "ph": "cb8a413e", "equity": 91023841, "ret": -8.98}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90930405, "ret": -9.07}, {"id": "v97", "ph": "ebf31977", "equity": 90916706, "ret": -9.08}, {"id": "v304", "ph": "96c7e8e1", "equity": 90835706, "ret": -9.16}, {"id": "v314", "ph": "7511570e", "equity": 90554102, "ret": -9.45}, {"id": "v215", "ph": "a904a49d", "equity": 90456632, "ret": -9.54}, {"id": "v161", "ph": "ed5677e6", "equity": 90423951, "ret": -9.58}, {"id": "v165", "ph": "8f862b27", "equity": 90423951, "ret": -9.58}, {"id": "v81", "ph": "a6eac1e4", "equity": 90376813, "ret": -9.62}, {"id": "v306", "ph": "6966b8f6", "equity": 90321719, "ret": -9.68}, {"id": "v213", "ph": "0e1d8e45", "equity": 89961686, "ret": -10.04}, {"id": "v51", "ph": "21a98e46", "equity": 89571712, "ret": -10.43}, {"id": "v159", "ph": "af80c67a", "equity": 89135465, "ret": -10.86}, {"id": "v105", "ph": "88395429", "equity": 88920614, "ret": -11.08}, {"id": "v310", "ph": "ec9dd55c", "equity": 88699473, "ret": -11.3}, {"id": "v308", "ph": "cb12dd0b", "equity": 88514255, "ret": -11.49}, {"id": "v89", "ph": "c49d5680", "equity": 88441737, "ret": -11.56}, {"id": "v301", "ph": "30da2021", "equity": 88202693, "ret": -11.8}, {"id": "v1", "ph": "4874f4c9", "equity": 88009125, "ret": -11.99}, {"id": "v47", "ph": "ed758fcf", "equity": 87718830, "ret": -12.28}, {"id": "v312", "ph": "4c23846f", "equity": 87724114, "ret": -12.28}, {"id": "v305", "ph": "8cc4eea6", "equity": 87671213, "ret": -12.33}, {"id": "v155", "ph": "31c0d84e", "equity": 87570429, "ret": -12.43}, {"id": "v309", "ph": "07610040", "equity": 86809577, "ret": -13.19}, {"id": "v311", "ph": "8409c6e5", "equity": 86747172, "ret": -13.25}, {"id": "v149", "ph": "c5329f8d", "equity": 86595308, "ret": -13.4}, {"id": "v303", "ph": "1a084164", "equity": 86502167, "ret": -13.5}, {"id": "v217", "ph": "4c547a61", "equity": 86319467, "ret": -13.68}, {"id": "v223", "ph": "b57356b8", "equity": 86305218, "ret": -13.69}, {"id": "v229", "ph": "d9261dfb", "equity": 86305218, "ret": -13.69}, {"id": "v235", "ph": "3e6c1666", "equity": 86305218, "ret": -13.69}, {"id": "v265", "ph": "7faed59d", "equity": 86305218, "ret": -13.69}, {"id": "v271", "ph": "2b9ccdcd", "equity": 86305218, "ret": -13.69}, {"id": "v277", "ph": "488b612a", "equity": 86305218, "ret": -13.69}, {"id": "v283", "ph": "479e4b25", "equity": 86305218, "ret": -13.69}, {"id": "v218", "ph": "7304d2d4", "equity": 86106155, "ret": -13.89}, {"id": "v224", "ph": "888ab069", "equity": 86043899, "ret": -13.96}, {"id": "v230", "ph": "141579fe", "equity": 86043899, "ret": -13.96}, {"id": "v236", "ph": "f9c75560", "equity": 86043899, "ret": -13.96}, {"id": "v266", "ph": "c133b585", "equity": 86043899, "ret": -13.96}, {"id": "v272", "ph": "2ed2027f", "equity": 86043899, "ret": -13.96}, {"id": "v278", "ph": "861fb42b", "equity": 86043899, "ret": -13.96}, {"id": "v284", "ph": "261c5d58", "equity": 86043899, "ret": -13.96}, {"id": "v302", "ph": "3f30502d", "equity": 84642676, "ret": -15.36}, {"id": "v41", "ph": "e9d84e84", "equity": 84069115, "ret": -15.93}, {"id": "v151", "ph": "2eb1dd06", "equity": 83455339, "ret": -16.54}, {"id": "v147", "ph": "2fbeeedb", "equity": 81819890, "ret": -18.18}, {"id": "v4", "ph": "b6219595", "equity": 81192265, "ret": -18.81}, {"id": "v296", "ph": "4c554378", "equity": 80153572, "ret": -19.85}, {"id": "v298", "ph": "5d4bbec0", "equity": 79608330, "ret": -20.39}, {"id": "v40", "ph": "70731d89", "equity": 79425329, "ret": -20.57}, {"id": "v299", "ph": "25046b1a", "equity": 75593122, "ret": -24.41}, {"id": "v300", "ph": "c6ddc17b", "equity": 70280913, "ret": -29.72}], "20260724": [{"id": "v321", "ph": "e82de49b", "equity": 96237233, "ret": -3.76}, {"id": "v319", "ph": "ca25f043", "equity": 96203069, "ret": -3.8}, {"id": "v317", "ph": "51f8ee6d", "equity": 95142012, "ret": -4.86}, {"id": "v103", "ph": "75b0a37c", "equity": 94389132, "ret": -5.61}, {"id": "v203", "ph": "2071defa", "equity": 94123912, "ret": -5.88}, {"id": "v101", "ph": "c4354346", "equity": 93837838, "ret": -6.16}, {"id": "v59", "ph": "1858e2ec", "equity": 93439966, "ret": -6.56}, {"id": "v95", "ph": "7e28e756", "equity": 93440053, "ret": -6.56}, {"id": "v99", "ph": "fb39409b", "equity": 93161488, "ret": -6.84}, {"id": "v313", "ph": "b9f4ee72", "equity": 93040980, "ret": -6.96}, {"id": "v57", "ph": "e7e98b6d", "equity": 92766145, "ret": -7.23}, {"id": "v205", "ph": "02e5a3f5", "equity": 92735433, "ret": -7.26}, {"id": "v49", "ph": "cdba73e0", "equity": 92627409, "ret": -7.37}, {"id": "v211", "ph": "9227673c", "equity": 92514138, "ret": -7.49}, {"id": "v157", "ph": "80f3e23b", "equity": 92321501, "ret": -7.68}, {"id": "v107", "ph": "be5cd36b", "equity": 92301034, "ret": -7.7}, {"id": "v318", "ph": "c99872ef", "equity": 92080434, "ret": -7.92}, {"id": "v209", "ph": "8730802d", "equity": 91841028, "ret": -8.16}, {"id": "v87", "ph": "c0be98c0", "equity": 91427126, "ret": -8.57}, {"id": "v93", "ph": "f10d4e45", "equity": 91427126, "ret": -8.57}, {"id": "v199", "ph": "390bfab3", "equity": 91380551, "ret": -8.62}, {"id": "v167", "ph": "b6d6aed8", "equity": 91262815, "ret": -8.74}, {"id": "v207", "ph": "0f6601a0", "equity": 91216803, "ret": -8.78}, {"id": "v197", "ph": "5c290a32", "equity": 91077525, "ret": -8.92}, {"id": "v316", "ph": "8dc1d197", "equity": 91062293, "ret": -8.94}, {"id": "v91", "ph": "5674a3d7", "equity": 91042619, "ret": -8.96}, {"id": "v307", "ph": "6abce93d", "equity": 90976224, "ret": -9.02}, {"id": "v315", "ph": "e6d5b283", "equity": 90845783, "ret": -9.15}, {"id": "v195", "ph": "dd89cf59", "equity": 90706261, "ret": -9.29}, {"id": "v201", "ph": "cb8a413e", "equity": 90706261, "ret": -9.29}, {"id": "v161", "ph": "ed5677e6", "equity": 90585528, "ret": -9.41}, {"id": "v165", "ph": "8f862b27", "equity": 90585528, "ret": -9.41}, {"id": "v189", "ph": "dfdbd0c8", "equity": 90470422, "ret": -9.53}, {"id": "v320", "ph": "48d6a9ef", "equity": 90368822, "ret": -9.63}, {"id": "v314", "ph": "7511570e", "equity": 90252487, "ret": -9.75}, {"id": "v304", "ph": "96c7e8e1", "equity": 90177917, "ret": -9.82}, {"id": "v97", "ph": "ebf31977", "equity": 90152329, "ret": -9.85}, {"id": "v215", "ph": "a904a49d", "equity": 90016445, "ret": -9.98}, {"id": "v81", "ph": "a6eac1e4", "equity": 89712670, "ret": -10.29}, {"id": "v306", "ph": "6966b8f6", "equity": 89501964, "ret": -10.5}, {"id": "v213", "ph": "0e1d8e45", "equity": 89150614, "ret": -10.85}, {"id": "v51", "ph": "21a98e46", "equity": 88932420, "ret": -11.07}, {"id": "v159", "ph": "af80c67a", "equity": 88745758, "ret": -11.25}, {"id": "v301", "ph": "30da2021", "equity": 88250018, "ret": -11.75}, {"id": "v1", "ph": "4874f4c9", "equity": 88118722, "ret": -11.88}, {"id": "v105", "ph": "88395429", "equity": 88117432, "ret": -11.88}, {"id": "v310", "ph": "ec9dd55c", "equity": 88076730, "ret": -11.92}, {"id": "v308", "ph": "cb12dd0b", "equity": 87474376, "ret": -12.53}, {"id": "v312", "ph": "4c23846f", "equity": 87471024, "ret": -12.53}, {"id": "v89", "ph": "c49d5680", "equity": 87455787, "ret": -12.54}, {"id": "v305", "ph": "8cc4eea6", "equity": 86976768, "ret": -13.02}, {"id": "v47", "ph": "ed758fcf", "equity": 86781583, "ret": -13.22}, {"id": "v309", "ph": "07610040", "equity": 86727542, "ret": -13.27}, {"id": "v155", "ph": "31c0d84e", "equity": 86636675, "ret": -13.36}, {"id": "v311", "ph": "8409c6e5", "equity": 86322712, "ret": -13.68}, {"id": "v303", "ph": "1a084164", "equity": 85646622, "ret": -14.35}, {"id": "v217", "ph": "4c547a61", "equity": 85578880, "ret": -14.42}, {"id": "v223", "ph": "b57356b8", "equity": 85564631, "ret": -14.44}, {"id": "v229", "ph": "d9261dfb", "equity": 85564631, "ret": -14.44}, {"id": "v235", "ph": "3e6c1666", "equity": 85564631, "ret": -14.44}, {"id": "v265", "ph": "7faed59d", "equity": 85564631, "ret": -14.44}, {"id": "v271", "ph": "2b9ccdcd", "equity": 85564631, "ret": -14.44}, {"id": "v277", "ph": "488b612a", "equity": 85564631, "ret": -14.44}, {"id": "v283", "ph": "479e4b25", "equity": 85564631, "ret": -14.44}, {"id": "v149", "ph": "c5329f8d", "equity": 85370732, "ret": -14.63}, {"id": "v218", "ph": "7304d2d4", "equity": 85156011, "ret": -14.84}, {"id": "v224", "ph": "888ab069", "equity": 85093755, "ret": -14.91}, {"id": "v230", "ph": "141579fe", "equity": 85093755, "ret": -14.91}, {"id": "v236", "ph": "f9c75560", "equity": 85093755, "ret": -14.91}, {"id": "v266", "ph": "c133b585", "equity": 85093755, "ret": -14.91}, {"id": "v272", "ph": "2ed2027f", "equity": 85093755, "ret": -14.91}, {"id": "v278", "ph": "861fb42b", "equity": 85093755, "ret": -14.91}, {"id": "v284", "ph": "261c5d58", "equity": 85093755, "ret": -14.91}, {"id": "v302", "ph": "3f30502d", "equity": 83847192, "ret": -16.15}, {"id": "v41", "ph": "e9d84e84", "equity": 82899458, "ret": -17.1}, {"id": "v151", "ph": "2eb1dd06", "equity": 81773497, "ret": -18.23}, {"id": "v147", "ph": "2fbeeedb", "equity": 80283719, "ret": -19.72}, {"id": "v296", "ph": "4c554378", "equity": 79663192, "ret": -20.34}, {"id": "v4", "ph": "b6219595", "equity": 79399957, "ret": -20.6}, {"id": "v298", "ph": "5d4bbec0", "equity": 79128726, "ret": -20.87}, {"id": "v40", "ph": "70731d89", "equity": 77672758, "ret": -22.33}, {"id": "v299", "ph": "25046b1a", "equity": 74613187, "ret": -25.39}, {"id": "v300", "ph": "c6ddc17b", "equity": 68893661, "ret": -31.11}], "20260727": [{"id": "v319", "ph": "ca25f043", "equity": 96215398, "ret": -3.78}, {"id": "v321", "ph": "e82de49b", "equity": 96119353, "ret": -3.88}, {"id": "v317", "ph": "51f8ee6d", "equity": 94365997, "ret": -5.63}, {"id": "v313", "ph": "b9f4ee72", "equity": 92087348, "ret": -7.91}, {"id": "v205", "ph": "02e5a3f5", "equity": 91566888, "ret": -8.43}, {"id": "v103", "ph": "75b0a37c", "equity": 91527732, "ret": -8.47}, {"id": "v318", "ph": "c99872ef", "equity": 91436234, "ret": -8.56}, {"id": "v101", "ph": "c4354346", "equity": 91386557, "ret": -8.61}, {"id": "v316", "ph": "8dc1d197", "equity": 91315493, "ret": -8.68}, {"id": "v203", "ph": "2071defa", "equity": 91263472, "ret": -8.74}, {"id": "v59", "ph": "1858e2ec", "equity": 91203098, "ret": -8.8}, {"id": "v99", "ph": "fb39409b", "equity": 90724166, "ret": -9.28}, {"id": "v95", "ph": "7e28e756", "equity": 90643772, "ret": -9.36}, {"id": "v320", "ph": "48d6a9ef", "equity": 90640222, "ret": -9.36}, {"id": "v57", "ph": "e7e98b6d", "equity": 90538996, "ret": -9.46}, {"id": "v304", "ph": "96c7e8e1", "equity": 90010466, "ret": -9.99}, {"id": "v197", "ph": "5c290a32", "equity": 89994081, "ret": -10.01}, {"id": "v49", "ph": "cdba73e0", "equity": 89967305, "ret": -10.03}, {"id": "v307", "ph": "6abce93d", "equity": 89797098, "ret": -10.2}, {"id": "v211", "ph": "9227673c", "equity": 89696806, "ret": -10.3}, {"id": "v157", "ph": "80f3e23b", "equity": 89520572, "ret": -10.48}, {"id": "v97", "ph": "ebf31977", "equity": 89499524, "ret": -10.5}, {"id": "v209", "ph": "8730802d", "equity": 89427970, "ret": -10.57}, {"id": "v315", "ph": "e6d5b283", "equity": 89407562, "ret": -10.59}, {"id": "v314", "ph": "7511570e", "equity": 89232014, "ret": -10.77}, {"id": "v199", "ph": "390bfab3", "equity": 89136479, "ret": -10.86}, {"id": "v107", "ph": "be5cd36b", "equity": 88997031, "ret": -11.0}, {"id": "v306", "ph": "6966b8f6", "equity": 88898954, "ret": -11.1}, {"id": "v167", "ph": "b6d6aed8", "equity": 88855562, "ret": -11.14}, {"id": "v91", "ph": "5674a3d7", "equity": 88823953, "ret": -11.18}, {"id": "v207", "ph": "0f6601a0", "equity": 88816070, "ret": -11.18}, {"id": "v87", "ph": "c0be98c0", "equity": 88636523, "ret": -11.36}, {"id": "v93", "ph": "f10d4e45", "equity": 88636523, "ret": -11.36}, {"id": "v161", "ph": "ed5677e6", "equity": 88195113, "ret": -11.8}, {"id": "v165", "ph": "8f862b27", "equity": 88195113, "ret": -11.8}, {"id": "v195", "ph": "dd89cf59", "equity": 87928163, "ret": -12.07}, {"id": "v201", "ph": "cb8a413e", "equity": 87928163, "ret": -12.07}, {"id": "v310", "ph": "ec9dd55c", "equity": 87713974, "ret": -12.29}, {"id": "v189", "ph": "dfdbd0c8", "equity": 87256821, "ret": -12.74}, {"id": "v213", "ph": "0e1d8e45", "equity": 87225882, "ret": -12.77}, {"id": "v89", "ph": "c49d5680", "equity": 86914225, "ret": -13.09}, {"id": "v215", "ph": "a904a49d", "equity": 86794256, "ret": -13.21}, {"id": "v305", "ph": "8cc4eea6", "equity": 86692434, "ret": -13.31}, {"id": "v81", "ph": "a6eac1e4", "equity": 86512696, "ret": -13.49}, {"id": "v308", "ph": "cb12dd0b", "equity": 86242151, "ret": -13.76}, {"id": "v312", "ph": "4c23846f", "equity": 86237324, "ret": -13.76}, {"id": "v105", "ph": "88395429", "equity": 86181944, "ret": -13.82}, {"id": "v47", "ph": "ed758fcf", "equity": 85970426, "ret": -14.03}, {"id": "v51", "ph": "21a98e46", "equity": 85923618, "ret": -14.08}, {"id": "v311", "ph": "8409c6e5", "equity": 85840299, "ret": -14.16}, {"id": "v159", "ph": "af80c67a", "equity": 85556128, "ret": -14.44}, {"id": "v309", "ph": "07610040", "equity": 85212542, "ret": -14.79}, {"id": "v301", "ph": "30da2021", "equity": 85064270, "ret": -14.94}, {"id": "v155", "ph": "31c0d84e", "equity": 84722023, "ret": -15.28}, {"id": "v1", "ph": "4874f4c9", "equity": 84354514, "ret": -15.65}, {"id": "v149", "ph": "c5329f8d", "equity": 84276130, "ret": -15.72}, {"id": "v303", "ph": "1a084164", "equity": 84040178, "ret": -15.96}, {"id": "v223", "ph": "b57356b8", "equity": 83914010, "ret": -16.09}, {"id": "v235", "ph": "3e6c1666", "equity": 83914010, "ret": -16.09}, {"id": "v265", "ph": "7faed59d", "equity": 83914010, "ret": -16.09}, {"id": "v271", "ph": "2b9ccdcd", "equity": 83914010, "ret": -16.09}, {"id": "v217", "ph": "4c547a61", "equity": 83870676, "ret": -16.13}, {"id": "v229", "ph": "d9261dfb", "equity": 83856427, "ret": -16.14}, {"id": "v277", "ph": "488b612a", "equity": 83856427, "ret": -16.14}, {"id": "v283", "ph": "479e4b25", "equity": 83856427, "ret": -16.14}, {"id": "v224", "ph": "888ab069", "equity": 82980608, "ret": -17.02}, {"id": "v236", "ph": "f9c75560", "equity": 82980608, "ret": -17.02}, {"id": "v266", "ph": "c133b585", "equity": 82980608, "ret": -17.02}, {"id": "v272", "ph": "2ed2027f", "equity": 82980608, "ret": -17.02}, {"id": "v218", "ph": "7304d2d4", "equity": 82969395, "ret": -17.03}, {"id": "v230", "ph": "141579fe", "equity": 82907139, "ret": -17.09}, {"id": "v278", "ph": "861fb42b", "equity": 82907139, "ret": -17.09}, {"id": "v284", "ph": "261c5d58", "equity": 82907139, "ret": -17.09}, {"id": "v41", "ph": "e9d84e84", "equity": 81926428, "ret": -18.07}, {"id": "v302", "ph": "3f30502d", "equity": 81093448, "ret": -18.91}, {"id": "v151", "ph": "2eb1dd06", "equity": 80871239, "ret": -19.13}, {"id": "v147", "ph": "2fbeeedb", "equity": 79336726, "ret": -20.66}, {"id": "v296", "ph": "4c554378", "equity": 79038392, "ret": -20.96}, {"id": "v4", "ph": "b6219595", "equity": 78306323, "ret": -21.69}, {"id": "v298", "ph": "5d4bbec0", "equity": 77972386, "ret": -22.03}, {"id": "v40", "ph": "70731d89", "equity": 76598748, "ret": -23.4}, {"id": "v299", "ph": "25046b1a", "equity": 73737330, "ret": -26.26}, {"id": "v300", "ph": "c6ddc17b", "equity": 67419334, "ret": -32.58}], "20260728": [{"id": "v321", "ph": "e82de49b", "equity": 95058610, "ret": -4.94}, {"id": "v319", "ph": "ca25f043", "equity": 94278998, "ret": -5.72}, {"id": "v317", "ph": "51f8ee6d", "equity": 93501993, "ret": -6.5}, {"id": "v318", "ph": "c99872ef", "equity": 90762837, "ret": -9.24}, {"id": "v316", "ph": "8dc1d197", "equity": 90381365, "ret": -9.62}, {"id": "v313", "ph": "b9f4ee72", "equity": 90179251, "ret": -9.82}, {"id": "v320", "ph": "48d6a9ef", "equity": 89554005, "ret": -10.45}, {"id": "v203", "ph": "2071defa", "equity": 89343448, "ret": -10.66}, {"id": "v59", "ph": "1858e2ec", "equity": 89333757, "ret": -10.67}, {"id": "v205", "ph": "02e5a3f5", "equity": 89314987, "ret": -10.69}, {"id": "v95", "ph": "7e28e756", "equity": 89152772, "ret": -10.85}, {"id": "v101", "ph": "c4354346", "equity": 89078335, "ret": -10.92}, {"id": "v103", "ph": "75b0a37c", "equity": 88931347, "ret": -11.07}, {"id": "v57", "ph": "e7e98b6d", "equity": 88674323, "ret": -11.33}, {"id": "v49", "ph": "cdba73e0", "equity": 88478333, "ret": -11.52}, {"id": "v99", "ph": "fb39409b", "equity": 88425192, "ret": -11.57}, {"id": "v307", "ph": "6abce93d", "equity": 88341787, "ret": -11.66}, {"id": "v315", "ph": "e6d5b283", "equity": 88059990, "ret": -11.94}, {"id": "v314", "ph": "7511570e", "equity": 87815919, "ret": -12.18}, {"id": "v197", "ph": "5c290a32", "equity": 87649278, "ret": -12.35}, {"id": "v97", "ph": "ebf31977", "equity": 87494603, "ret": -12.51}, {"id": "v304", "ph": "96c7e8e1", "equity": 87477988, "ret": -12.52}, {"id": "v306", "ph": "6966b8f6", "equity": 87258167, "ret": -12.74}, {"id": "v157", "ph": "80f3e23b", "equity": 87251515, "ret": -12.75}, {"id": "v209", "ph": "8730802d", "equity": 87152019, "ret": -12.85}, {"id": "v211", "ph": "9227673c", "equity": 87129408, "ret": -12.87}, {"id": "v199", "ph": "390bfab3", "equity": 86980353, "ret": -13.02}, {"id": "v91", "ph": "5674a3d7", "equity": 86736102, "ret": -13.26}, {"id": "v167", "ph": "b6d6aed8", "equity": 86572733, "ret": -13.43}, {"id": "v207", "ph": "0f6601a0", "equity": 86559017, "ret": -13.44}, {"id": "v310", "ph": "ec9dd55c", "equity": 86539949, "ret": -13.46}, {"id": "v107", "ph": "be5cd36b", "equity": 86118013, "ret": -13.88}, {"id": "v87", "ph": "c0be98c0", "equity": 86086741, "ret": -13.91}, {"id": "v93", "ph": "f10d4e45", "equity": 86086741, "ret": -13.91}, {"id": "v161", "ph": "ed5677e6", "equity": 85938401, "ret": -14.06}, {"id": "v165", "ph": "8f862b27", "equity": 85938401, "ret": -14.06}, {"id": "v195", "ph": "dd89cf59", "equity": 85385069, "ret": -14.61}, {"id": "v201", "ph": "cb8a413e", "equity": 85385069, "ret": -14.61}, {"id": "v312", "ph": "4c23846f", "equity": 84707127, "ret": -15.29}, {"id": "v213", "ph": "0e1d8e45", "equity": 84620529, "ret": -15.38}, {"id": "v311", "ph": "8409c6e5", "equity": 84620888, "ret": -15.38}, {"id": "v81", "ph": "a6eac1e4", "equity": 84501334, "ret": -15.5}, {"id": "v308", "ph": "cb12dd0b", "equity": 84492044, "ret": -15.51}, {"id": "v89", "ph": "c49d5680", "equity": 84419073, "ret": -15.58}, {"id": "v189", "ph": "dfdbd0c8", "equity": 84299095, "ret": -15.7}, {"id": "v305", "ph": "8cc4eea6", "equity": 84000731, "ret": -16.0}, {"id": "v215", "ph": "a904a49d", "equity": 83983415, "ret": -16.02}, {"id": "v51", "ph": "21a98e46", "equity": 83908507, "ret": -16.09}, {"id": "v47", "ph": "ed758fcf", "equity": 83660987, "ret": -16.34}, {"id": "v105", "ph": "88395429", "equity": 83578935, "ret": -16.42}, {"id": "v309", "ph": "07610040", "equity": 82949428, "ret": -17.05}, {"id": "v159", "ph": "af80c67a", "equity": 82639296, "ret": -17.36}, {"id": "v301", "ph": "30da2021", "equity": 82468997, "ret": -17.53}, {"id": "v155", "ph": "31c0d84e", "equity": 82058836, "ret": -17.94}, {"id": "v1", "ph": "4874f4c9", "equity": 81613783, "ret": -18.39}, {"id": "v223", "ph": "b57356b8", "equity": 81495839, "ret": -18.5}, {"id": "v235", "ph": "3e6c1666", "equity": 81495839, "ret": -18.5}, {"id": "v265", "ph": "7faed59d", "equity": 81495839, "ret": -18.5}, {"id": "v271", "ph": "2b9ccdcd", "equity": 81495839, "ret": -18.5}, {"id": "v303", "ph": "1a084164", "equity": 81241910, "ret": -18.76}, {"id": "v149", "ph": "c5329f8d", "equity": 81219353, "ret": -18.78}, {"id": "v217", "ph": "4c547a61", "equity": 81123906, "ret": -18.88}, {"id": "v229", "ph": "d9261dfb", "equity": 81109656, "ret": -18.89}, {"id": "v277", "ph": "488b612a", "equity": 81109656, "ret": -18.89}, {"id": "v283", "ph": "479e4b25", "equity": 81109656, "ret": -18.89}, {"id": "v224", "ph": "888ab069", "equity": 80452478, "ret": -19.55}, {"id": "v236", "ph": "f9c75560", "equity": 80452478, "ret": -19.55}, {"id": "v266", "ph": "c133b585", "equity": 80452478, "ret": -19.55}, {"id": "v272", "ph": "2ed2027f", "equity": 80452478, "ret": -19.55}, {"id": "v218", "ph": "7304d2d4", "equity": 80079935, "ret": -19.92}, {"id": "v230", "ph": "141579fe", "equity": 80017679, "ret": -19.98}, {"id": "v278", "ph": "861fb42b", "equity": 80017679, "ret": -19.98}, {"id": "v284", "ph": "261c5d58", "equity": 80017679, "ret": -19.98}, {"id": "v41", "ph": "e9d84e84", "equity": 79192636, "ret": -20.81}, {"id": "v302", "ph": "3f30502d", "equity": 78215021, "ret": -21.78}, {"id": "v151", "ph": "2eb1dd06", "equity": 76870364, "ret": -23.13}, {"id": "v296", "ph": "4c554378", "equity": 76753047, "ret": -23.25}, {"id": "v4", "ph": "b6219595", "equity": 75006311, "ret": -24.99}, {"id": "v147", "ph": "2fbeeedb", "equity": 74883917, "ret": -25.12}, {"id": "v298", "ph": "5d4bbec0", "equity": 74713064, "ret": -25.29}, {"id": "v40", "ph": "70731d89", "equity": 73783421, "ret": -26.22}, {"id": "v299", "ph": "25046b1a", "equity": 71014082, "ret": -28.99}, {"id": "v300", "ph": "c6ddc17b", "equity": 63878657, "ret": -36.12}]}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/index_history.json b/agents/stock/workspace/state/sim/index_history.json
index 48357ef..c2c01b1 100644
--- a/agents/stock/workspace/state/sim/index_history.json
+++ b/agents/stock/workspace/state/sim/index_history.json
@@ -1 +1 @@
-{"KOSPI": {"20260608": 7484.41, "20260605": 8160.59, "20260604": 8639.41, "20260602": 8801.49, "20260601": 8788.38, "20260529": 8476.15, "20260528": 8185.29, "20260527": 8228.7, "20260526": 8047.51, "20260522": 7847.71, "20260521": 7815.59, "20260520": 7208.95, "20260519": 7271.66, "20260518": 7516.04, "20260515": 7493.18, "20260514": 7981.41, "20260513": 7844.01, "20260512": 7643.15, "20260511": 7822.24, "20260508": 7498.0, "20260507": 7490.05, "20260506": 7384.56, "20260504": 6936.99, "20260430": 6598.87, "20260429": 6690.9, "20260428": 6641.02, "20260427": 6615.03, "20260424": 6475.63, "20260423": 6475.81, "20260422": 6417.93, "20260421": 6388.47, "20260420": 6219.09, "20260417": 6191.92, "20260416": 6226.05, "20260415": 6091.39, "20260414": 5967.75, "20260413": 5808.62, "20260410": 5858.87, "20260409": 5778.01, "20260408": 5872.34, "20260407": 5494.78, "20260406": 5450.33, "20260403": 5377.3, "20260402": 5234.05, "20260401": 5478.7, "20260331": 5052.46, "20260330": 5277.3, "20260327": 5438.87, "20260326": 5460.46, "20260325": 5642.21, "20260324": 5553.92, "20260323": 5405.75, "20260320": 5781.2, "20260319": 5763.22, "20260318": 5925.03, "20260317": 5640.48, "20260316": 5549.85, "20260313": 5487.24, "20260312": 5583.25, "20260311": 5609.95, "20260310": 5532.59, "20260309": 5251.87, "20260306": 5584.87, "20260305": 5583.9, "20260304": 5093.54, "20260303": 5791.91, "20260227": 6244.13, "20260226": 6307.27, "20260225": 6083.86, "20260224": 5969.64, "20260223": 5846.09, "20260220": 5808.53, "20260219": 5677.25, "20260213": 5507.01, "20260212": 5522.27, "20260211": 5354.49, "20260210": 5301.69, "20260209": 5298.04, "20260206": 5089.14, "20260205": 5163.57, "20260204": 5371.1, "20260203": 5288.08, "20260202": 4949.67, "20260130": 5224.36, "20260129": 5221.25, "20260128": 5170.81, "20260127": 5084.85, "20260126": 4949.59, "20260123": 4990.07, "20260122": 4952.53, "20260121": 4909.93, "20260120": 4885.75, "20260119": 4904.66, "20260116": 4840.74, "20260115": 4797.55, "20260114": 4723.1, "20260113": 4692.64, "20260112": 4624.79, "20260109": 4586.32, "20260108": 4552.37, "20260107": 4551.06, "20260106": 4525.48, "20260105": 4457.52, "20260102": 4309.63, "20251230": 4214.17, "20251229": 4220.56, "20251226": 4129.68, "20251224": 4108.62, "20251223": 4117.32, "20251222": 4105.93, "20251219": 4020.55, "20251218": 3994.51, "20251217": 4056.41, "20251216": 3999.13, "20251215": 4090.59, "20251212": 4167.16, "20251211": 4110.62, "20251210": 4135.0, "20251209": 4143.55, "20251208": 4154.85, "20251205": 4100.05, "20251204": 4028.51, "20251203": 4036.3, "20251202": 3994.93, "20251201": 3920.37, "20251128": 3926.59, "20251127": 3986.91, "20251126": 3960.87, "20251125": 3857.78, "20251124": 3846.06, "20251121": 3853.26, "20251120": 4004.85, "20251119": 3929.51, "20251118": 3953.62, "20251117": 4089.25, "20251114": 4011.57, "20251113": 4170.63, "20251112": 4150.39, "20251111": 4106.39, "20251110": 4073.24, "20251107": 3953.76, "20251106": 4026.45, "20251105": 4004.42, "20251104": 4121.74, "20251103": 4221.87, "20251031": 4107.5, "20251030": 4086.89, "20251029": 4081.15, "20251028": 4010.41, "20251027": 4042.83, "20251024": 3941.59, "20251023": 3845.56, "20251022": 3883.68, "20251021": 3823.84, "20251020": 3814.69, "20251017": 3748.89, "20251016": 3748.37, "20251015": 3657.28, "20251014": 3561.81, "20251013": 3584.55, "20251010": 3610.6, "20251002": 3549.21, "20251001": 3455.83, "20250930": 3424.6, "20250929": 3431.21, "20250926": 3386.05, "20250925": 3471.11, "20250924": 3472.14, "20250923": 3486.19, "20250922": 3468.65, "20250919": 3445.24, "20250918": 3461.3, "20250917": 3413.4, "20250916": 3449.62, "20250915": 3407.31, "20250912": 3395.54, "20250911": 3344.2, "20250910": 3314.53, "20250909": 3260.05, "20250908": 3219.59, "20250905": 3205.12, "20250904": 3200.83, "20250903": 3184.42, "20250902": 3172.35, "20250901": 3142.93, "20250829": 3186.01, "20250828": 3196.32, "20250827": 3187.16, "20250826": 3179.36, "20250825": 3209.86, "20250822": 3168.73, "20250821": 3141.74, "20250820": 3130.09, "20250819": 3151.56, "20250818": 3177.28, "20250814": 3225.66, "20250813": 3224.37, "20250812": 3189.91, "20250811": 3206.77, "20250808": 3210.01, "20250807": 3227.68, "20250806": 3198.14, "20250805": 3198.0, "20250804": 3147.75, "20250801": 3119.41, "20250731": 3245.44, "20250730": 3254.47, "20250729": 3230.57, "20250728": 3209.52, "20250725": 3196.05, "20250724": 3190.45, "20250723": 3183.77, "20250722": 3169.94, "20250721": 3210.81, "20250718": 3188.07, "20250717": 3192.29, "20250716": 3186.38, "20250715": 3215.28, "20250714": 3202.03, "20250711": 3175.77, "20250710": 3183.23, "20250709": 3133.74, "20250708": 3114.95, "20250707": 3059.47, "20250704": 3054.28, "20250703": 3116.27, "20250702": 3075.06, "20250701": 3089.65, "20250630": 3071.7, "20250627": 3055.94, "20250626": 3079.56, "20250625": 3108.25, "20250624": 3103.64, "20250623": 3014.47, "20250620": 3021.84, "20250619": 2977.74, "20250618": 2972.19, "20250617": 2950.3, "20250616": 2946.66, "20250613": 2894.62, "20250612": 2920.03, "20250611": 2907.04, "20250610": 2871.85, "20250609": 2855.77, "20250605": 2812.05, "20250604": 2770.84, "20250602": 2698.97, "20250530": 2697.67, "20250529": 2720.64, "20250528": 2670.15, "20250527": 2637.22, "20250526": 2644.4, "20250523": 2592.09, "20250522": 2593.67, "20250521": 2625.58, "20250520": 2601.8, "20250519": 2603.42, "20250516": 2626.87, "20250515": 2621.36, "20250514": 2640.57, "20250513": 2608.42, "20250512": 2607.33, "20250509": 2577.27, "20250508": 2579.48, "20250507": 2573.8, "20250502": 2559.79, "20250430": 2556.61, "20250429": 2565.42, "20250428": 2548.86, "20250425": 2546.3, "20250424": 2522.33, "20250423": 2525.56, "20250422": 2486.64, "20250421": 2488.42, "20250418": 2483.42, "20250417": 2470.41, "20250416": 2447.43, "20250415": 2477.41, "20250414": 2455.89, "20250411": 2432.72, "20250410": 2445.06, "20250409": 2293.7, "20250408": 2334.23, "20250407": 2328.2, "20250404": 2465.42, "20250403": 2486.7, "20250402": 2505.86, "20250401": 2521.39, "20250331": 2481.12, "20250328": 2557.98, "20250327": 2607.15, "20250326": 2643.94, "20250325": 2615.81, "20250324": 2632.07, "20250321": 2643.13, "20250320": 2637.1, "20250319": 2628.62, "20250318": 2612.34, "20250317": 2610.69, "20250314": 2566.36, "20250313": 2573.64, "20250312": 2574.82, "20250311": 2537.6, "20250310": 2570.39, "20250307": 2563.48, "20250306": 2576.16, "20250305": 2558.13, "20250304": 2528.92, "20250228": 2532.78, "20250227": 2621.75, "20250226": 2641.09, "20250225": 2630.29, "20250224": 2645.27, "20250221": 2654.58, "20250220": 2654.06, "20250219": 2671.52, "20250218": 2626.81, "20250217": 2610.42, "20250214": 2591.05, "20250213": 2583.17, "20250212": 2548.39, "20250211": 2539.05, "20250210": 2521.27, "20250207": 2521.92, "20250206": 2536.75, "20250205": 2509.27, "20250204": 2481.69, "20250203": 2453.95, "20250131": 2517.37, "20250124": 2536.8, "20250123": 2515.49, "20250122": 2547.06, "20250121": 2518.03, "20250120": 2520.05, "20250117": 2523.55, "20250116": 2527.49, "20250115": 2496.81, "20250114": 2497.4, "20250113": 2489.56, "20250110": 2515.78, "20250109": 2521.9, "20250108": 2521.05, "20250107": 2492.1, "20250106": 2488.64, "20250103": 2441.92, "20250102": 2398.94, "20241230": 2399.49, "20241227": 2404.77, "20241226": 2429.67, "20241224": 2440.52, "20241223": 2442.01, "20241220": 2404.15, "20241219": 2435.93, "20241218": 2484.43, "20241217": 2456.81, "20241216": 2488.97, "20241213": 2494.46, "20241212": 2482.12, "20241211": 2442.51, "20241210": 2417.84, "20241209": 2360.58, "20241206": 2428.16, "20241205": 2441.85, "20241204": 2464.0, "20241203": 2500.1, "20241202": 2454.48, "20241129": 2455.91, "20241128": 2504.67, "20241127": 2503.06, "20241126": 2520.36, "20241125": 2534.34, "20241122": 2501.24, "20241121": 2480.63, "20241120": 2482.29, "20241119": 2471.95, "20241118": 2469.07, "20241115": 2416.86, "20241114": 2418.86, "20241113": 2417.08, "20241112": 2482.57, "20241111": 2531.66, "20241108": 2561.15, "20241107": 2564.63, "20241106": 2563.51, "20241105": 2576.88, "20241104": 2588.97, "20241101": 2542.36, "20241031": 2556.15, "20241030": 2593.79, "20241029": 2617.8, "20241028": 2612.43, "20241025": 2583.27, "20241024": 2581.03, "20241023": 2599.62, "20241022": 2570.7, "20241021": 2604.92, "20241018": 2593.82, "20241017": 2609.3, "20241016": 2610.36, "20241015": 2633.45, "20260609": 8096.93, "20260610": 7730.82, "20260611": 7763.95, "20260612": 8123.62, "20260615": 8545.98, "20260616": 8726.6, "20260617": 8864.24, "20260618": 9063.84, "20260619": 9052.42, "20260622": 9114.55, "20260623": 8203.84, "20260624": 8471.02, "20260625": 8930.3, "20260626": 8411.21, "20260629": 8394.65, "20260630": 8476.48, "20260701": 8303.41, "20260702": 7648.09, "20260703": 8088.34, "20260706": 8051.33, "20260707": 7656.31, "20260708": 7246.79, "20260709": 7291.91, "20260710": 7475.94, "20260713": 6806.93, "20260714": 6856.83, "20260715": 7284.41, "20260716": 6820.6, "20260720": 6516.27, "20260721": 6747.95, "20260722": 6797.7, "20260723": 7096.89, "20260724": 6690.62, "20260727": 6767.62}, "KOSDAQ": {"20260608": 911.39, "20260605": 1002.44, "20260604": 1049.73, "20260602": 1026.03, "20260601": 1050.03, "20260529": 1074.8, "20260528": 1104.36, "20260527": 1133.13, "20260526": 1172.52, "20260522": 1161.13, "20260521": 1105.97, "20260520": 1056.07, "20260519": 1084.36, "20260518": 1111.09, "20260515": 1129.82, "20260514": 1191.09, "20260513": 1176.93, "20260512": 1179.29, "20260511": 1207.34, "20260508": 1207.72, "20260507": 1199.18, "20260506": 1210.17, "20260504": 1213.74, "20260430": 1192.35, "20260429": 1220.26, "20260428": 1215.58, "20260427": 1226.18, "20260424": 1203.84, "20260423": 1174.31, "20260422": 1181.12, "20260421": 1179.03, "20260420": 1174.85, "20260417": 1170.04, "20260416": 1162.97, "20260415": 1152.43, "20260414": 1121.88, "20260413": 1099.84, "20260410": 1093.63, "20260409": 1076.0, "20260408": 1089.85, "20260407": 1036.73, "20260406": 1047.37, "20260403": 1063.75, "20260402": 1056.34, "20260401": 1116.18, "20260331": 1052.39, "20260330": 1107.05, "20260327": 1141.51, "20260326": 1136.64, "20260325": 1159.55, "20260324": 1121.44, "20260323": 1096.89, "20260320": 1161.52, "20260319": 1143.48, "20260318": 1164.38, "20260317": 1136.94, "20260316": 1138.29, "20260313": 1152.96, "20260312": 1148.4, "20260311": 1136.83, "20260310": 1137.68, "20260309": 1102.28, "20260306": 1154.67, "20260305": 1116.41, "20260304": 978.44, "20260303": 1137.7, "20260227": 1192.78, "20260226": 1188.15, "20260225": 1165.25, "20260224": 1165.0, "20260223": 1151.99, "20260220": 1154.0, "20260219": 1160.71, "20260213": 1106.08, "20260212": 1125.99, "20260211": 1114.87, "20260210": 1115.2, "20260209": 1127.55, "20260206": 1080.77, "20260205": 1108.41, "20260204": 1149.43, "20260203": 1144.33, "20260202": 1098.36, "20260130": 1149.44, "20260129": 1164.41, "20260128": 1133.52, "20260127": 1082.59, "20260126": 1064.41, "20260123": 993.93, "20260122": 970.35, "20260121": 951.29, "20260120": 976.37, "20260119": 968.36, "20260116": 954.59, "20260115": 951.16, "20260114": 942.18, "20260113": 948.98, "20260112": 949.81, "20260109": 947.92, "20260108": 944.06, "20260107": 947.39, "20260106": 955.97, "20260105": 957.5, "20260102": 945.57, "20251230": 925.47, "20251229": 932.59, "20251226": 919.67, "20251224": 915.2, "20251223": 919.56, "20251222": 929.14, "20251219": 915.27, "20251218": 901.33, "20251217": 911.07, "20251216": 916.11, "20251215": 938.83, "20251212": 937.34, "20251211": 934.64, "20251210": 935.0, "20251209": 931.35, "20251208": 927.79, "20251205": 924.74, "20251204": 929.83, "20251203": 932.01, "20251202": 928.42, "20251201": 922.38, "20251128": 912.67, "20251127": 880.06, "20251126": 877.32, "20251125": 856.03, "20251124": 856.44, "20251121": 863.95, "20251120": 891.94, "20251119": 871.32, "20251118": 878.7, "20251117": 902.67, "20251114": 897.9, "20251113": 918.37, "20251112": 906.51, "20251111": 884.27, "20251110": 888.35, "20251107": 876.81, "20251106": 898.17, "20251105": 901.89, "20251104": 926.57, "20251103": 914.55, "20251031": 900.42, "20251030": 890.86, "20251029": 901.59, "20251028": 903.3, "20251027": 902.7, "20251024": 883.08, "20251023": 872.03, "20251022": 879.15, "20251021": 872.5, "20251020": 875.77, "20251017": 859.54, "20251016": 865.41, "20251015": 864.72, "20251014": 847.96, "20251013": 860.49, "20251010": 859.49, "20251002": 854.25, "20251001": 845.34, "20250930": 841.99, "20250929": 846.71, "20250926": 835.19, "20250925": 852.48, "20250924": 860.94, "20250923": 872.21, "20250922": 874.36, "20250919": 863.11, "20250918": 857.11, "20250917": 845.53, "20250916": 851.84, "20250915": 852.69, "20250912": 847.08, "20250911": 834.76, "20250910": 833.0, "20250909": 824.82, "20250908": 818.6, "20250905": 811.4, "20250904": 805.42, "20250903": 796.81, "20250902": 794.0, "20250901": 785.0, "20250829": 796.91, "20250828": 798.43, "20250827": 801.72, "20250826": 801.66, "20250825": 798.02, "20250822": 782.51, "20250821": 777.24, "20250820": 777.61, "20250819": 787.96, "20250818": 798.05, "20250814": 815.26, "20250813": 814.1, "20250812": 807.19, "20250811": 811.85, "20250808": 809.27, "20250807": 805.81, "20250806": 803.49, "20250805": 798.6, "20250804": 784.06, "20250801": 772.79, "20250731": 805.24, "20250730": 803.67, "20250729": 804.45, "20250728": 804.4, "20250725": 806.95, "20250724": 809.89, "20250723": 813.56, "20250722": 812.97, "20250721": 821.69, "20250718": 820.67, "20250717": 818.27, "20250716": 812.23, "20250715": 812.88, "20250714": 799.37, "20250711": 800.47, "20250710": 797.7, "20250709": 790.36, "20250708": 784.24, "20250707": 778.46, "20250704": 775.8, "20250703": 793.33, "20250702": 782.17, "20250701": 783.67, "20250630": 781.5, "20250627": 781.56, "20250626": 787.95, "20250625": 798.21, "20250624": 800.93, "20250623": 784.79, "20250620": 791.53, "20250619": 782.51, "20250618": 779.73, "20250617": 775.65, "20250616": 777.26, "20250613": 768.86, "20250612": 789.45, "20250611": 786.29, "20250610": 771.2, "20250609": 764.21, "20250605": 756.23, "20250604": 750.21, "20250602": 740.29, "20250530": 734.35, "20250529": 736.29, "20250528": 728.79, "20250527": 727.11, "20250526": 725.27, "20250523": 715.98, "20250522": 717.67, "20250521": 723.62, "20250520": 715.55, "20250519": 713.75, "20250516": 725.07, "20250515": 733.23, "20250514": 739.05, "20250513": 731.88, "20250512": 725.4, "20250509": 722.52, "20250508": 729.59, "20250507": 722.81, "20250502": 721.86, "20250430": 717.24, "20250429": 726.46, "20250428": 719.41, "20250425": 729.69, "20250424": 726.08, "20250423": 726.08, "20250422": 716.12, "20250421": 715.45, "20250418": 717.77, "20250417": 711.75, "20250416": 699.11, "20250415": 711.92, "20250414": 708.98, "20250411": 695.59, "20250410": 681.79, "20250409": 643.39, "20250408": 658.45, "20250407": 651.3, "20250404": 687.39, "20250403": 683.49, "20250402": 684.85, "20250401": 691.45, "20250331": 672.85, "20250328": 693.76, "20250327": 707.49, "20250326": 716.48, "20250325": 711.26, "20250324": 720.22, "20250321": 719.41, "20250320": 725.15, "20250319": 738.35, "20250318": 745.54, "20250317": 743.51, "20250314": 734.26, "20250313": 722.8, "20250312": 729.49, "20250311": 721.5, "20250310": 725.82, "20250307": 727.7, "20250306": 734.92, "20250305": 746.95, "20250304": 737.9, "20250228": 743.96, "20250227": 770.85, "20250226": 771.41, "20250225": 769.43, "20250224": 773.33, "20250221": 774.65, "20250220": 768.27, "20250219": 778.27, "20250218": 773.65, "20250217": 768.48, "20250214": 756.32, "20250213": 749.28, "20250212": 745.18, "20250211": 749.59, "20250210": 749.67, "20250207": 742.9, "20250206": 740.32, "20250205": 730.98, "20250204": 719.92, "20250203": 703.8, "20250131": 728.29, "20250124": 728.74, "20250123": 724.01, "20250122": 732.31, "20250121": 726.07, "20250120": 727.66, "20250117": 724.69, "20250116": 724.24, "20250115": 711.61, "20250114": 718.04, "20250113": 708.21, "20250110": 717.89, "20250109": 723.52, "20250108": 719.63, "20250107": 718.29, "20250106": 717.96, "20250103": 705.76, "20250102": 686.63, "20241230": 678.19, "20241227": 665.97, "20241226": 675.64, "20241224": 680.11, "20241223": 679.24, "20241220": 668.31, "20241219": 684.36, "20241218": 697.57, "20241217": 694.47, "20241216": 698.53, "20241213": 693.73, "20241212": 683.35, "20241211": 675.92, "20241210": 661.59, "20241209": 627.01, "20241206": 661.33, "20241205": 670.94, "20241204": 677.15, "20241203": 690.8, "20241202": 675.84, "20241129": 678.19, "20241128": 694.39, "20241127": 692.0, "20241126": 693.15, "20241125": 696.83, "20241122": 677.01, "20241121": 680.67, "20241120": 682.91, "20241119": 686.12, "20241118": 689.55, "20241115": 685.42, "20241114": 681.56, "20241113": 689.65, "20241112": 710.52, "20241111": 728.84, "20241108": 743.38, "20241107": 733.52, "20241106": 743.31, "20241105": 751.81, "20241104": 754.08, "20241101": 729.05, "20241031": 743.06, "20241030": 738.19, "20241029": 744.18, "20241028": 740.48, "20241025": 727.41, "20241024": 734.59, "20241023": 745.19, "20241022": 738.34, "20241021": 759.95, "20241018": 753.22, "20241017": 765.06, "20241016": 765.79, "20241015": 773.81, "20260609": 967.81, "20260610": 951.63, "20260611": 996.93, "20260612": 1029.05, "20260615": 1034.03, "20260616": 1018.68, "20260617": 1031.96, "20260618": 1000.93, "20260619": 966.59, "20260622": 968.4, "20260623": 891.52, "20260624": 909.31, "20260625": 887.81, "20260626": 851.37, "20260629": 920.57, "20260630": 916.18, "20260701": 929.35, "20260702": 866.72, "20260703": 868.41, "20260706": 847.07, "20260707": 831.23, "20260708": 785.0, "20260709": 794.0, "20260710": 837.43, "20260713": 799.36, "20260714": 783.98, "20260715": 829.43, "20260716": 791.84, "20260720": 749.64, "20260721": 753.34, "20260722": 751.09, "20260723": 790.28, "20260724": 748.22, "20260727": 764.65}}
\ No newline at end of file
+{"KOSPI": {"20260608": 7484.41, "20260605": 8160.59, "20260604": 8639.41, "20260602": 8801.49, "20260601": 8788.38, "20260529": 8476.15, "20260528": 8185.29, "20260527": 8228.7, "20260526": 8047.51, "20260522": 7847.71, "20260521": 7815.59, "20260520": 7208.95, "20260519": 7271.66, "20260518": 7516.04, "20260515": 7493.18, "20260514": 7981.41, "20260513": 7844.01, "20260512": 7643.15, "20260511": 7822.24, "20260508": 7498.0, "20260507": 7490.05, "20260506": 7384.56, "20260504": 6936.99, "20260430": 6598.87, "20260429": 6690.9, "20260428": 6641.02, "20260427": 6615.03, "20260424": 6475.63, "20260423": 6475.81, "20260422": 6417.93, "20260421": 6388.47, "20260420": 6219.09, "20260417": 6191.92, "20260416": 6226.05, "20260415": 6091.39, "20260414": 5967.75, "20260413": 5808.62, "20260410": 5858.87, "20260409": 5778.01, "20260408": 5872.34, "20260407": 5494.78, "20260406": 5450.33, "20260403": 5377.3, "20260402": 5234.05, "20260401": 5478.7, "20260331": 5052.46, "20260330": 5277.3, "20260327": 5438.87, "20260326": 5460.46, "20260325": 5642.21, "20260324": 5553.92, "20260323": 5405.75, "20260320": 5781.2, "20260319": 5763.22, "20260318": 5925.03, "20260317": 5640.48, "20260316": 5549.85, "20260313": 5487.24, "20260312": 5583.25, "20260311": 5609.95, "20260310": 5532.59, "20260309": 5251.87, "20260306": 5584.87, "20260305": 5583.9, "20260304": 5093.54, "20260303": 5791.91, "20260227": 6244.13, "20260226": 6307.27, "20260225": 6083.86, "20260224": 5969.64, "20260223": 5846.09, "20260220": 5808.53, "20260219": 5677.25, "20260213": 5507.01, "20260212": 5522.27, "20260211": 5354.49, "20260210": 5301.69, "20260209": 5298.04, "20260206": 5089.14, "20260205": 5163.57, "20260204": 5371.1, "20260203": 5288.08, "20260202": 4949.67, "20260130": 5224.36, "20260129": 5221.25, "20260128": 5170.81, "20260127": 5084.85, "20260126": 4949.59, "20260123": 4990.07, "20260122": 4952.53, "20260121": 4909.93, "20260120": 4885.75, "20260119": 4904.66, "20260116": 4840.74, "20260115": 4797.55, "20260114": 4723.1, "20260113": 4692.64, "20260112": 4624.79, "20260109": 4586.32, "20260108": 4552.37, "20260107": 4551.06, "20260106": 4525.48, "20260105": 4457.52, "20260102": 4309.63, "20251230": 4214.17, "20251229": 4220.56, "20251226": 4129.68, "20251224": 4108.62, "20251223": 4117.32, "20251222": 4105.93, "20251219": 4020.55, "20251218": 3994.51, "20251217": 4056.41, "20251216": 3999.13, "20251215": 4090.59, "20251212": 4167.16, "20251211": 4110.62, "20251210": 4135.0, "20251209": 4143.55, "20251208": 4154.85, "20251205": 4100.05, "20251204": 4028.51, "20251203": 4036.3, "20251202": 3994.93, "20251201": 3920.37, "20251128": 3926.59, "20251127": 3986.91, "20251126": 3960.87, "20251125": 3857.78, "20251124": 3846.06, "20251121": 3853.26, "20251120": 4004.85, "20251119": 3929.51, "20251118": 3953.62, "20251117": 4089.25, "20251114": 4011.57, "20251113": 4170.63, "20251112": 4150.39, "20251111": 4106.39, "20251110": 4073.24, "20251107": 3953.76, "20251106": 4026.45, "20251105": 4004.42, "20251104": 4121.74, "20251103": 4221.87, "20251031": 4107.5, "20251030": 4086.89, "20251029": 4081.15, "20251028": 4010.41, "20251027": 4042.83, "20251024": 3941.59, "20251023": 3845.56, "20251022": 3883.68, "20251021": 3823.84, "20251020": 3814.69, "20251017": 3748.89, "20251016": 3748.37, "20251015": 3657.28, "20251014": 3561.81, "20251013": 3584.55, "20251010": 3610.6, "20251002": 3549.21, "20251001": 3455.83, "20250930": 3424.6, "20250929": 3431.21, "20250926": 3386.05, "20250925": 3471.11, "20250924": 3472.14, "20250923": 3486.19, "20250922": 3468.65, "20250919": 3445.24, "20250918": 3461.3, "20250917": 3413.4, "20250916": 3449.62, "20250915": 3407.31, "20250912": 3395.54, "20250911": 3344.2, "20250910": 3314.53, "20250909": 3260.05, "20250908": 3219.59, "20250905": 3205.12, "20250904": 3200.83, "20250903": 3184.42, "20250902": 3172.35, "20250901": 3142.93, "20250829": 3186.01, "20250828": 3196.32, "20250827": 3187.16, "20250826": 3179.36, "20250825": 3209.86, "20250822": 3168.73, "20250821": 3141.74, "20250820": 3130.09, "20250819": 3151.56, "20250818": 3177.28, "20250814": 3225.66, "20250813": 3224.37, "20250812": 3189.91, "20250811": 3206.77, "20250808": 3210.01, "20250807": 3227.68, "20250806": 3198.14, "20250805": 3198.0, "20250804": 3147.75, "20250801": 3119.41, "20250731": 3245.44, "20250730": 3254.47, "20250729": 3230.57, "20250728": 3209.52, "20250725": 3196.05, "20250724": 3190.45, "20250723": 3183.77, "20250722": 3169.94, "20250721": 3210.81, "20250718": 3188.07, "20250717": 3192.29, "20250716": 3186.38, "20250715": 3215.28, "20250714": 3202.03, "20250711": 3175.77, "20250710": 3183.23, "20250709": 3133.74, "20250708": 3114.95, "20250707": 3059.47, "20250704": 3054.28, "20250703": 3116.27, "20250702": 3075.06, "20250701": 3089.65, "20250630": 3071.7, "20250627": 3055.94, "20250626": 3079.56, "20250625": 3108.25, "20250624": 3103.64, "20250623": 3014.47, "20250620": 3021.84, "20250619": 2977.74, "20250618": 2972.19, "20250617": 2950.3, "20250616": 2946.66, "20250613": 2894.62, "20250612": 2920.03, "20250611": 2907.04, "20250610": 2871.85, "20250609": 2855.77, "20250605": 2812.05, "20250604": 2770.84, "20250602": 2698.97, "20250530": 2697.67, "20250529": 2720.64, "20250528": 2670.15, "20250527": 2637.22, "20250526": 2644.4, "20250523": 2592.09, "20250522": 2593.67, "20250521": 2625.58, "20250520": 2601.8, "20250519": 2603.42, "20250516": 2626.87, "20250515": 2621.36, "20250514": 2640.57, "20250513": 2608.42, "20250512": 2607.33, "20250509": 2577.27, "20250508": 2579.48, "20250507": 2573.8, "20250502": 2559.79, "20250430": 2556.61, "20250429": 2565.42, "20250428": 2548.86, "20250425": 2546.3, "20250424": 2522.33, "20250423": 2525.56, "20250422": 2486.64, "20250421": 2488.42, "20250418": 2483.42, "20250417": 2470.41, "20250416": 2447.43, "20250415": 2477.41, "20250414": 2455.89, "20250411": 2432.72, "20250410": 2445.06, "20250409": 2293.7, "20250408": 2334.23, "20250407": 2328.2, "20250404": 2465.42, "20250403": 2486.7, "20250402": 2505.86, "20250401": 2521.39, "20250331": 2481.12, "20250328": 2557.98, "20250327": 2607.15, "20250326": 2643.94, "20250325": 2615.81, "20250324": 2632.07, "20250321": 2643.13, "20250320": 2637.1, "20250319": 2628.62, "20250318": 2612.34, "20250317": 2610.69, "20250314": 2566.36, "20250313": 2573.64, "20250312": 2574.82, "20250311": 2537.6, "20250310": 2570.39, "20250307": 2563.48, "20250306": 2576.16, "20250305": 2558.13, "20250304": 2528.92, "20250228": 2532.78, "20250227": 2621.75, "20250226": 2641.09, "20250225": 2630.29, "20250224": 2645.27, "20250221": 2654.58, "20250220": 2654.06, "20250219": 2671.52, "20250218": 2626.81, "20250217": 2610.42, "20250214": 2591.05, "20250213": 2583.17, "20250212": 2548.39, "20250211": 2539.05, "20250210": 2521.27, "20250207": 2521.92, "20250206": 2536.75, "20250205": 2509.27, "20250204": 2481.69, "20250203": 2453.95, "20250131": 2517.37, "20250124": 2536.8, "20250123": 2515.49, "20250122": 2547.06, "20250121": 2518.03, "20250120": 2520.05, "20250117": 2523.55, "20250116": 2527.49, "20250115": 2496.81, "20250114": 2497.4, "20250113": 2489.56, "20250110": 2515.78, "20250109": 2521.9, "20250108": 2521.05, "20250107": 2492.1, "20250106": 2488.64, "20250103": 2441.92, "20250102": 2398.94, "20241230": 2399.49, "20241227": 2404.77, "20241226": 2429.67, "20241224": 2440.52, "20241223": 2442.01, "20241220": 2404.15, "20241219": 2435.93, "20241218": 2484.43, "20241217": 2456.81, "20241216": 2488.97, "20241213": 2494.46, "20241212": 2482.12, "20241211": 2442.51, "20241210": 2417.84, "20241209": 2360.58, "20241206": 2428.16, "20241205": 2441.85, "20241204": 2464.0, "20241203": 2500.1, "20241202": 2454.48, "20241129": 2455.91, "20241128": 2504.67, "20241127": 2503.06, "20241126": 2520.36, "20241125": 2534.34, "20241122": 2501.24, "20241121": 2480.63, "20241120": 2482.29, "20241119": 2471.95, "20241118": 2469.07, "20241115": 2416.86, "20241114": 2418.86, "20241113": 2417.08, "20241112": 2482.57, "20241111": 2531.66, "20241108": 2561.15, "20241107": 2564.63, "20241106": 2563.51, "20241105": 2576.88, "20241104": 2588.97, "20241101": 2542.36, "20241031": 2556.15, "20241030": 2593.79, "20241029": 2617.8, "20241028": 2612.43, "20241025": 2583.27, "20241024": 2581.03, "20241023": 2599.62, "20241022": 2570.7, "20241021": 2604.92, "20241018": 2593.82, "20241017": 2609.3, "20241016": 2610.36, "20241015": 2633.45, "20260609": 8096.93, "20260610": 7730.82, "20260611": 7763.95, "20260612": 8123.62, "20260615": 8545.98, "20260616": 8726.6, "20260617": 8864.24, "20260618": 9063.84, "20260619": 9052.42, "20260622": 9114.55, "20260623": 8203.84, "20260624": 8471.02, "20260625": 8930.3, "20260626": 8411.21, "20260629": 8394.65, "20260630": 8476.48, "20260701": 8303.41, "20260702": 7648.09, "20260703": 8088.34, "20260706": 8051.33, "20260707": 7656.31, "20260708": 7246.79, "20260709": 7291.91, "20260710": 7475.94, "20260713": 6806.93, "20260714": 6856.83, "20260715": 7284.41, "20260716": 6820.6, "20260720": 6516.27, "20260721": 6747.95, "20260722": 6797.7, "20260723": 7096.89, "20260724": 6690.62, "20260727": 6755.75, "20260728": 6028.54}, "KOSDAQ": {"20260608": 911.39, "20260605": 1002.44, "20260604": 1049.73, "20260602": 1026.03, "20260601": 1050.03, "20260529": 1074.8, "20260528": 1104.36, "20260527": 1133.13, "20260526": 1172.52, "20260522": 1161.13, "20260521": 1105.97, "20260520": 1056.07, "20260519": 1084.36, "20260518": 1111.09, "20260515": 1129.82, "20260514": 1191.09, "20260513": 1176.93, "20260512": 1179.29, "20260511": 1207.34, "20260508": 1207.72, "20260507": 1199.18, "20260506": 1210.17, "20260504": 1213.74, "20260430": 1192.35, "20260429": 1220.26, "20260428": 1215.58, "20260427": 1226.18, "20260424": 1203.84, "20260423": 1174.31, "20260422": 1181.12, "20260421": 1179.03, "20260420": 1174.85, "20260417": 1170.04, "20260416": 1162.97, "20260415": 1152.43, "20260414": 1121.88, "20260413": 1099.84, "20260410": 1093.63, "20260409": 1076.0, "20260408": 1089.85, "20260407": 1036.73, "20260406": 1047.37, "20260403": 1063.75, "20260402": 1056.34, "20260401": 1116.18, "20260331": 1052.39, "20260330": 1107.05, "20260327": 1141.51, "20260326": 1136.64, "20260325": 1159.55, "20260324": 1121.44, "20260323": 1096.89, "20260320": 1161.52, "20260319": 1143.48, "20260318": 1164.38, "20260317": 1136.94, "20260316": 1138.29, "20260313": 1152.96, "20260312": 1148.4, "20260311": 1136.83, "20260310": 1137.68, "20260309": 1102.28, "20260306": 1154.67, "20260305": 1116.41, "20260304": 978.44, "20260303": 1137.7, "20260227": 1192.78, "20260226": 1188.15, "20260225": 1165.25, "20260224": 1165.0, "20260223": 1151.99, "20260220": 1154.0, "20260219": 1160.71, "20260213": 1106.08, "20260212": 1125.99, "20260211": 1114.87, "20260210": 1115.2, "20260209": 1127.55, "20260206": 1080.77, "20260205": 1108.41, "20260204": 1149.43, "20260203": 1144.33, "20260202": 1098.36, "20260130": 1149.44, "20260129": 1164.41, "20260128": 1133.52, "20260127": 1082.59, "20260126": 1064.41, "20260123": 993.93, "20260122": 970.35, "20260121": 951.29, "20260120": 976.37, "20260119": 968.36, "20260116": 954.59, "20260115": 951.16, "20260114": 942.18, "20260113": 948.98, "20260112": 949.81, "20260109": 947.92, "20260108": 944.06, "20260107": 947.39, "20260106": 955.97, "20260105": 957.5, "20260102": 945.57, "20251230": 925.47, "20251229": 932.59, "20251226": 919.67, "20251224": 915.2, "20251223": 919.56, "20251222": 929.14, "20251219": 915.27, "20251218": 901.33, "20251217": 911.07, "20251216": 916.11, "20251215": 938.83, "20251212": 937.34, "20251211": 934.64, "20251210": 935.0, "20251209": 931.35, "20251208": 927.79, "20251205": 924.74, "20251204": 929.83, "20251203": 932.01, "20251202": 928.42, "20251201": 922.38, "20251128": 912.67, "20251127": 880.06, "20251126": 877.32, "20251125": 856.03, "20251124": 856.44, "20251121": 863.95, "20251120": 891.94, "20251119": 871.32, "20251118": 878.7, "20251117": 902.67, "20251114": 897.9, "20251113": 918.37, "20251112": 906.51, "20251111": 884.27, "20251110": 888.35, "20251107": 876.81, "20251106": 898.17, "20251105": 901.89, "20251104": 926.57, "20251103": 914.55, "20251031": 900.42, "20251030": 890.86, "20251029": 901.59, "20251028": 903.3, "20251027": 902.7, "20251024": 883.08, "20251023": 872.03, "20251022": 879.15, "20251021": 872.5, "20251020": 875.77, "20251017": 859.54, "20251016": 865.41, "20251015": 864.72, "20251014": 847.96, "20251013": 860.49, "20251010": 859.49, "20251002": 854.25, "20251001": 845.34, "20250930": 841.99, "20250929": 846.71, "20250926": 835.19, "20250925": 852.48, "20250924": 860.94, "20250923": 872.21, "20250922": 874.36, "20250919": 863.11, "20250918": 857.11, "20250917": 845.53, "20250916": 851.84, "20250915": 852.69, "20250912": 847.08, "20250911": 834.76, "20250910": 833.0, "20250909": 824.82, "20250908": 818.6, "20250905": 811.4, "20250904": 805.42, "20250903": 796.81, "20250902": 794.0, "20250901": 785.0, "20250829": 796.91, "20250828": 798.43, "20250827": 801.72, "20250826": 801.66, "20250825": 798.02, "20250822": 782.51, "20250821": 777.24, "20250820": 777.61, "20250819": 787.96, "20250818": 798.05, "20250814": 815.26, "20250813": 814.1, "20250812": 807.19, "20250811": 811.85, "20250808": 809.27, "20250807": 805.81, "20250806": 803.49, "20250805": 798.6, "20250804": 784.06, "20250801": 772.79, "20250731": 805.24, "20250730": 803.67, "20250729": 804.45, "20250728": 804.4, "20250725": 806.95, "20250724": 809.89, "20250723": 813.56, "20250722": 812.97, "20250721": 821.69, "20250718": 820.67, "20250717": 818.27, "20250716": 812.23, "20250715": 812.88, "20250714": 799.37, "20250711": 800.47, "20250710": 797.7, "20250709": 790.36, "20250708": 784.24, "20250707": 778.46, "20250704": 775.8, "20250703": 793.33, "20250702": 782.17, "20250701": 783.67, "20250630": 781.5, "20250627": 781.56, "20250626": 787.95, "20250625": 798.21, "20250624": 800.93, "20250623": 784.79, "20250620": 791.53, "20250619": 782.51, "20250618": 779.73, "20250617": 775.65, "20250616": 777.26, "20250613": 768.86, "20250612": 789.45, "20250611": 786.29, "20250610": 771.2, "20250609": 764.21, "20250605": 756.23, "20250604": 750.21, "20250602": 740.29, "20250530": 734.35, "20250529": 736.29, "20250528": 728.79, "20250527": 727.11, "20250526": 725.27, "20250523": 715.98, "20250522": 717.67, "20250521": 723.62, "20250520": 715.55, "20250519": 713.75, "20250516": 725.07, "20250515": 733.23, "20250514": 739.05, "20250513": 731.88, "20250512": 725.4, "20250509": 722.52, "20250508": 729.59, "20250507": 722.81, "20250502": 721.86, "20250430": 717.24, "20250429": 726.46, "20250428": 719.41, "20250425": 729.69, "20250424": 726.08, "20250423": 726.08, "20250422": 716.12, "20250421": 715.45, "20250418": 717.77, "20250417": 711.75, "20250416": 699.11, "20250415": 711.92, "20250414": 708.98, "20250411": 695.59, "20250410": 681.79, "20250409": 643.39, "20250408": 658.45, "20250407": 651.3, "20250404": 687.39, "20250403": 683.49, "20250402": 684.85, "20250401": 691.45, "20250331": 672.85, "20250328": 693.76, "20250327": 707.49, "20250326": 716.48, "20250325": 711.26, "20250324": 720.22, "20250321": 719.41, "20250320": 725.15, "20250319": 738.35, "20250318": 745.54, "20250317": 743.51, "20250314": 734.26, "20250313": 722.8, "20250312": 729.49, "20250311": 721.5, "20250310": 725.82, "20250307": 727.7, "20250306": 734.92, "20250305": 746.95, "20250304": 737.9, "20250228": 743.96, "20250227": 770.85, "20250226": 771.41, "20250225": 769.43, "20250224": 773.33, "20250221": 774.65, "20250220": 768.27, "20250219": 778.27, "20250218": 773.65, "20250217": 768.48, "20250214": 756.32, "20250213": 749.28, "20250212": 745.18, "20250211": 749.59, "20250210": 749.67, "20250207": 742.9, "20250206": 740.32, "20250205": 730.98, "20250204": 719.92, "20250203": 703.8, "20250131": 728.29, "20250124": 728.74, "20250123": 724.01, "20250122": 732.31, "20250121": 726.07, "20250120": 727.66, "20250117": 724.69, "20250116": 724.24, "20250115": 711.61, "20250114": 718.04, "20250113": 708.21, "20250110": 717.89, "20250109": 723.52, "20250108": 719.63, "20250107": 718.29, "20250106": 717.96, "20250103": 705.76, "20250102": 686.63, "20241230": 678.19, "20241227": 665.97, "20241226": 675.64, "20241224": 680.11, "20241223": 679.24, "20241220": 668.31, "20241219": 684.36, "20241218": 697.57, "20241217": 694.47, "20241216": 698.53, "20241213": 693.73, "20241212": 683.35, "20241211": 675.92, "20241210": 661.59, "20241209": 627.01, "20241206": 661.33, "20241205": 670.94, "20241204": 677.15, "20241203": 690.8, "20241202": 675.84, "20241129": 678.19, "20241128": 694.39, "20241127": 692.0, "20241126": 693.15, "20241125": 696.83, "20241122": 677.01, "20241121": 680.67, "20241120": 682.91, "20241119": 686.12, "20241118": 689.55, "20241115": 685.42, "20241114": 681.56, "20241113": 689.65, "20241112": 710.52, "20241111": 728.84, "20241108": 743.38, "20241107": 733.52, "20241106": 743.31, "20241105": 751.81, "20241104": 754.08, "20241101": 729.05, "20241031": 743.06, "20241030": 738.19, "20241029": 744.18, "20241028": 740.48, "20241025": 727.41, "20241024": 734.59, "20241023": 745.19, "20241022": 738.34, "20241021": 759.95, "20241018": 753.22, "20241017": 765.06, "20241016": 765.79, "20241015": 773.81, "20260609": 967.81, "20260610": 951.63, "20260611": 996.93, "20260612": 1029.05, "20260615": 1034.03, "20260616": 1018.68, "20260617": 1031.96, "20260618": 1000.93, "20260619": 966.59, "20260622": 968.4, "20260623": 891.52, "20260624": 909.31, "20260625": 887.81, "20260626": 851.37, "20260629": 920.57, "20260630": 916.18, "20260701": 929.35, "20260702": 866.72, "20260703": 868.41, "20260706": 847.07, "20260707": 831.23, "20260708": 785.0, "20260709": 794.0, "20260710": 837.43, "20260713": 799.36, "20260714": 783.98, "20260715": 829.43, "20260716": 791.84, "20260720": 749.64, "20260721": 753.34, "20260722": 751.09, "20260723": 790.28, "20260724": 748.22, "20260727": 764.86, "20260728": 705.74}}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v1/portfolio.json b/agents/stock/workspace/state/sim/variants/v1/portfolio.json
index c2e9d2e..a32ed68 100644
--- a/agents/stock/workspace/state/sim/variants/v1/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v1/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 8276224.3184999935,
+ "cash": 17679082.919999994,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5572914.42378125,
"last_add_price": 130800
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5614905.905031251,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-14T09:40:04.963052+09:00",
"stop": 5498,
"target": 7383,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5505297.51634375,
"last_add_price": 6030
@@ -76,12 +76,12 @@
"entry_at": "2026-07-16T09:04:02.184863+09:00",
"stop": 305213,
"target": 472619,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5640114.3750312505,
"last_add_price": 353000
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5411911.7463125,
"last_add_price": 91400
@@ -123,32 +123,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5547990.7530625,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 1421,
- "entry_price": 7683.652357494722,
- "entry_at": "2026-07-27T09:02:05.306004+09:00",
- "stop": 6577,
- "target": 11004,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 5463689.5024375,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -165,17 +144,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 4036164.4997545374,
"last_add_price": 13150
}
},
- "realized_pnl": -16645075.565500015,
- "closed_trades": 16,
+ "realized_pnl": -18162324.734500013,
+ "closed_trades": 17,
"wins": 0,
"peak_equity": 100102462.48,
- "max_drawdown": 0.1600052362817759,
+ "max_drawdown": 0.1886646850847781,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -186,8 +165,9 @@
"093370": "2026-07-20",
"214450": "2026-07-15",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943184+09:00",
- "updated_at": "2026-07-27T15:28:06.037362+09:00"
+ "updated_at": "2026-07-28T15:28:00.972299+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v1/trades.jsonl b/agents/stock/workspace/state/sim/variants/v1/trades.jsonl
index 3adf90f..3cc2867 100644
--- a/agents/stock/workspace/state/sim/variants/v1/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v1/trades.jsonl
@@ -52,3 +52,4 @@
{"ts": "2026-07-27T09:08:02.026931+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 690, "cost": 5458719, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6370, "target": 10769, "signals": [{"label": "손절선", "ok": true, "detail": "6,370 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,769"}, {"label": "추세(10일선)", "ok": true, "detail": "5,434"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:10:00.979478+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 690, "proceeds": 8284514, "entry_price": 14585, "pnl": -1780876, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.401758+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,097"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.035449+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 306, "cost": 4024504, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 21580, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
+{"ts": "2026-07-28T11:22:00.688753+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 1421, "proceeds": 9402859, "entry_price": 7684, "pnl": -1517249, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:05.306004+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,004"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v101/portfolio.json b/agents/stock/workspace/state/sim/variants/v101/portfolio.json
index 251fc66..23793c9 100644
--- a/agents/stock/workspace/state/sim/variants/v101/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v101/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 38319386.84600001,
+ "cash": 57810594.730500005,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4156565.5467727734,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.289321+09:00",
"stop": 305399,
"target": 410027,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3936003.3225085386,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 137176.05633802817,
- "entry_at": "2026-07-13T09:48:02.326778+09:00",
- "stop": 123862,
- "target": 157147,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4931395.975756928,
- "last_add_price": 138900
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3844545.2388675264,
"last_add_price": 90900
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5889355.599625001,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 823,
- "entry_price": 7683.851761846901,
- "entry_at": "2026-07-27T09:02:06.217881+09:00",
- "stop": 6577,
- "target": 9344,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3166363.1735905916,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,48 +102,29 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2169981.4975838973,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 45,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.372126+09:00",
- "stop": 117645,
- "target": 143283,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5799802.924364164,
- "last_add_price": 127900
}
},
- "realized_pnl": -8373808.33250001,
- "closed_trades": 14,
+ "realized_pnl": -10704683.26950001,
+ "closed_trades": 17,
"wins": 0,
"peak_equity": 100172467.23000002,
- "max_drawdown": 0.08899861040190137,
+ "max_drawdown": 0.11233396611529192,
"last_exit": {
"030000": "2026-07-15",
- "086790": "2026-06-23",
+ "086790": "2026-07-28",
"403870": "2026-07-07",
"240810": "2026-07-24",
"214450": "2026-07-06",
"093370": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944232+09:00",
- "updated_at": "2026-07-27T15:28:06.080626+09:00"
+ "updated_at": "2026-07-28T15:28:01.017007+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v101/trades.jsonl b/agents/stock/workspace/state/sim/variants/v101/trades.jsonl
index b97b086..86be0ec 100644
--- a/agents/stock/workspace/state/sim/variants/v101/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v101/trades.jsonl
@@ -45,3 +45,6 @@
{"ts": "2026-07-27T09:10:01.033059+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 369, "proceeds": 4430414, "entry_price": 14586, "pnl": -952734, "pnl_pct": -17.53, "hold_from": "2026-07-23T10:30:02.474409+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,082 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,342"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.497852+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 164, "cost": 2156923, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 17365, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:32:01.372128+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 45, "cost": 5756363, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 143283, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,900 vs 117,400"}, {"label": "정배열(5>10)", "ok": true, "detail": "119,040 / 117,400"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.740360+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 823, "proceeds": 5445850, "entry_price": 7684, "pnl": -878909, "pnl_pct": -13.72, "hold_from": "2026-07-27T09:02:06.217881+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:56:02.869289+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 45, "proceeds": 5272698, "entry_price": 127900, "pnl": -483665, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.372126+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 143,283"}, {"label": "추세(10일선)", "ok": true, "detail": "116,360"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
+{"ts": "2026-07-28T13:20:03.820316+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123800, "qty": 71, "proceeds": 8772660, "entry_price": 137176, "pnl": -968301, "pnl_pct": -9.75, "hold_from": "2026-07-13T09:48:02.326778+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,862 (현재 123,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 157,147"}, {"label": "추세(10일선)", "ok": true, "detail": "119,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v103/portfolio.json b/agents/stock/workspace/state/sim/variants/v103/portfolio.json
index 80670f9..7c2416d 100644
--- a/agents/stock/workspace/state/sim/variants/v103/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v103/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 44644952.44000006,
+ "cash": 42770327.25550006,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5368206.728356878,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4089582.9464364387,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.291895+09:00",
"stop": 305399,
"target": 410027,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3962363.617644489,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 311,
- "entry_price": 14266.141479099679,
- "entry_at": "2026-07-22T14:18:05.417997+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2223956.4783542515,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3892203.318086031,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1946096.456735668,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5927262.437968753,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 770,
+ "entry_price": 6936.25974025974,
+ "entry_at": "2026-07-28T09:00:15.725812+09:00",
+ "stop": 5741,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2676539.5535729183,
+ "last_add_price": 7100
}
},
- "realized_pnl": -9309771.804500012,
- "closed_trades": 20,
+ "realized_pnl": -10280111.366500013,
+ "closed_trades": 21,
"wins": 2,
"peak_equity": 101529111.72700004,
- "max_drawdown": 0.09949185130429641,
+ "max_drawdown": 0.12852160576945038,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -166,8 +166,9 @@
"034730": "2026-07-07",
"055550": "2026-07-20",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944251+09:00",
- "updated_at": "2026-07-27T15:28:06.082275+09:00"
+ "updated_at": "2026-07-28T15:28:01.018708+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v103/trades.jsonl b/agents/stock/workspace/state/sim/variants/v103/trades.jsonl
index 52b6bc8..14f7126 100644
--- a/agents/stock/workspace/state/sim/variants/v103/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v103/trades.jsonl
@@ -61,3 +61,6 @@
{"ts": "2026-07-27T09:12:01.501479+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 420, "cost": 3297495, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 9510, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.228682+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 397, "cost": 3295594, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 9510, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,510"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.225254+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 817, "proceeds": 5609999, "entry_price": 8069, "pnl": -983090, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.501476+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,729"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:15.725820+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 394, "cost": 2671721, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 8509, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.736195+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 376, "cost": 2670000, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.763925+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 311, "proceeds": 3467096, "entry_price": 14266, "pnl": -970340, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.417997+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v105/portfolio.json b/agents/stock/workspace/state/sim/variants/v105/portfolio.json
index c77edea..d86beac 100644
--- a/agents/stock/workspace/state/sim/variants/v105/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v105/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 29388364.28000005,
+ "cash": 29178207.098000046,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5212031.062678178,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.164331+09:00",
"stop": 318434,
"target": 413243,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4980582.661409654,
"last_add_price": 356000
@@ -60,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5575262.741000003,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 388,
- "entry_price": 14266.288659793814,
- "entry_at": "2026-07-22T14:18:05.419863+09:00",
- "stop": 11984,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2771844.6945600016,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 15,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:00.990875+09:00",
- "stop": 129761,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2437209.6311648185,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4849662.714601921,
"last_add_price": 90900
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5535494.525500003,
"last_add_price": 19100
@@ -160,27 +118,48 @@
"entry_at": "2026-07-27T14:20:01.056080+09:00",
"stop": 1775,
"target": 2840,
- "peak": 2130,
+ "peak": 2235,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 2,135 도달",
- "cur_price": 2105,
+ "cur_price": 1941,
"tranches": 1,
"tranche_value": 2595536.5029300014,
"last_add_price": 2130
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 968,
+ "entry_price": 6936.363636363636,
+ "entry_at": "2026-07-28T09:00:15.829228+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3360019.0177395856,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14077796.91600002,
- "closed_trades": 33,
+ "realized_pnl": -15480552.96100002,
+ "closed_trades": 35,
"wins": 3,
"peak_equity": 101695667.93550003,
- "max_drawdown": 0.1544246079927452,
+ "max_drawdown": 0.18637618713042167,
"last_exit": {
"030000": "2026-07-24",
"035420": "2026-06-23",
"403870": "2026-07-02",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"093370": "2026-07-20",
"240810": "2026-07-24",
"009150": "2026-07-06",
@@ -190,8 +169,9 @@
"319660": "2026-07-23",
"105560": "2026-07-20",
"086790": "2026-07-21",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944270+09:00",
- "updated_at": "2026-07-27T15:28:06.083929+09:00"
+ "updated_at": "2026-07-28T15:28:01.020512+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v105/trades.jsonl b/agents/stock/workspace/state/sim/variants/v105/trades.jsonl
index f9117e8..a80c8b6 100644
--- a/agents/stock/workspace/state/sim/variants/v105/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v105/trades.jsonl
@@ -95,3 +95,7 @@
{"ts": "2026-07-27T09:08:02.082537+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 503, "cost": 3979327, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6645, "target": 9119, "signals": [{"label": "손절선", "ok": true, "detail": "6,645 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,119"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T13:40:01.090664+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1036, "proceeds": 7010383, "entry_price": 7684, "pnl": -951051, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.223284+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T14:20:01.056082+09:00", "side": "BUY", "code": "218150", "name": "미래생명자원", "price": 2130, "qty": 1218, "cost": 2594729, "path": "pullback", "reason": "눌림목 지정가 2,135 도달", "stop": 1775, "target": 2840, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "2,130 vs 2,030"}, {"label": "정배열(5>20)", "ok": true, "detail": "2,415 / 2,030"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "2,415 / 2,265"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+41.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -118 · 기 +4 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "6.22% (환산) vs 평균 15.95% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 3,180"}, {"label": "거래량 급증", "ok": false, "detail": "1,270,804 (환산) vs 평균 3,257,264"}, {"label": "회전율 급증", "ok": false, "detail": "6.22% (환산) vs 평균 15.95%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 2,135 (현재 2,130)"}]}
+{"ts": "2026-07-28T09:00:15.827850+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 15, "proceeds": 1889309, "entry_price": 158100, "pnl": -482547, "pnl_pct": -20.18, "hold_from": "2026-07-22T15:04:00.990875+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "129,761 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,554"}]}
+{"ts": "2026-07-28T09:00:15.829236+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 495, "cost": 3356603, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.745721+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 388, "proceeds": 4615941, "entry_price": 14266, "pnl": -920209, "pnl_pct": -16.45, "hold_from": "2026-07-22T14:18:05.419863+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,984 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,673"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:10:01.738088+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 473, "cost": 3358804, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v107/portfolio.json b/agents/stock/workspace/state/sim/variants/v107/portfolio.json
index 7bd16ec..297da35 100644
--- a/agents/stock/workspace/state/sim/variants/v107/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v107/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 32583551.351000007,
+ "cash": 32464453.122,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5613307.207924683,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5344399.843888248,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.166187+09:00",
"stop": 318647,
"target": 413456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5156172.079657566,
"last_add_price": 356000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 406,
- "entry_price": 14266.453201970444,
- "entry_at": "2026-07-22T14:18:05.421714+09:00",
- "stop": 11984,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2902732.017409256,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5078672.507755172,
"last_add_price": 90900
},
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 16,
- "entry_price": 155500,
- "entry_at": "2026-07-24T09:00:05.734608+09:00",
- "stop": 127139,
- "target": 212221,
- "peak": 155500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2541334.609420243,
- "last_add_price": 155500
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -144,30 +102,52 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5806232.125812501,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 997,
+ "entry_price": 6936.308926780341,
+ "entry_at": "2026-07-28T09:00:15.935337+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3464111.1814802084,
+ "last_add_price": 7100
}
},
- "realized_pnl": -11824431.097000018,
- "closed_trades": 25,
+ "realized_pnl": -13308414.02800002,
+ "closed_trades": 27,
"wins": 2,
"peak_equity": 101690998.13850003,
- "max_drawdown": 0.1260963804292261,
+ "max_drawdown": 0.15881686001846382,
"last_exit": {
"086790": "2026-06-26",
"030000": "2026-07-16",
"403870": "2026-07-02",
- "095610": "2026-07-23",
+ "095610": "2026-07-28",
"093370": "2026-07-20",
"240810": "2026-07-24",
"034730": "2026-07-03",
"214450": "2026-07-14",
"055550": "2026-07-20",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944290+09:00",
- "updated_at": "2026-07-27T15:28:06.085578+09:00"
+ "updated_at": "2026-07-28T15:28:01.022171+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v107/trades.jsonl b/agents/stock/workspace/state/sim/variants/v107/trades.jsonl
index 6d715c0..1e52993 100644
--- a/agents/stock/workspace/state/sim/variants/v107/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v107/trades.jsonl
@@ -73,3 +73,7 @@
{"ts": "2026-07-27T09:06:01.452072+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7720, "qty": 547, "cost": 4223473, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6890, "target": 9380, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,720 vs 5,416"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,502 / 5,416"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,502 / 4,893"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+88.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "4.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "258,673 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "4.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "78"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,720)"}]}
{"ts": "2026-07-27T12:50:05.820784+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 523, "cost": 4226474, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6890, "target": 9380, "signals": [{"label": "손절선", "ok": true, "detail": "6,890 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,380"}, {"label": "추세(10일선)", "ok": true, "detail": "5,452"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,997"}]}
{"ts": "2026-07-27T13:34:01.435246+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 7050, "qty": 1070, "proceeds": 7528790, "entry_price": 7896, "pnl": -921157, "pnl_pct": -10.71, "hold_from": "2026-07-27T09:06:01.452056+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "7,066 (현재 7,050)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,556"}, {"label": "추세(10일선)", "ok": true, "detail": "5,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:15.935347+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 510, "cost": 3458319, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.747643+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 406, "proceeds": 4830083, "entry_price": 14266, "pnl": -962966, "pnl_pct": -16.45, "hold_from": "2026-07-22T14:18:05.421714+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,984 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(10일선)", "ok": false, "detail": "12,769"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:04:02.736929+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 16, "proceeds": 1967356, "entry_price": 155500, "pnl": -521017, "pnl_pct": -20.77, "hold_from": "2026-07-24T09:00:05.734608+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "127,139 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 212,221"}, {"label": "추세(10일선)", "ok": false, "detail": "149,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 166,050"}]}
+{"ts": "2026-07-28T09:10:01.739939+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 487, "cost": 3458219, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v147/portfolio.json b/agents/stock/workspace/state/sim/variants/v147/portfolio.json
index 344b603..438edd0 100644
--- a/agents/stock/workspace/state/sim/variants/v147/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v147/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 5184295.9899999695,
+ "cash": 8209187.289499967,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 49,
- "entry_price": 168010.20408163266,
- "entry_at": "2026-06-24T09:46:04.785264+09:00",
- "stop": 131710,
- "target": 276910,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,264 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 4122817.0756532787,
- "last_add_price": 179100
- },
"086790": {
"code": "086790",
"name": "하나금융지주",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,286 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 6390950.2104375,
"last_add_price": 122200
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5286025.184468749,
"last_add_price": 136900
@@ -76,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.168413+09:00",
"stop": 307915,
"target": 476463,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5184250.1290937485,
"last_add_price": 356000
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5241897.148781248,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 541,
- "entry_price": 14266.007393715341,
- "entry_at": "2026-07-22T14:18:05.423676+09:00",
- "stop": 11223,
- "target": 23395,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3869661.3480347595,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5056890.1458749985,
"last_add_price": 97000
@@ -165,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5024795.592812498,
"last_add_price": 19100
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 1323,
+ "entry_price": 6936.250944822374,
+ "entry_at": "2026-07-28T09:00:16.050865+09:00",
+ "stop": 5741,
+ "target": 10522,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 4592654.149239581,
+ "last_add_price": 7100
}
},
- "realized_pnl": -20240809.453500018,
- "closed_trades": 24,
+ "realized_pnl": -23990684.216500018,
+ "closed_trades": 26,
"wins": 1,
"peak_equity": 103066363.367,
- "max_drawdown": 0.2333913470037301,
+ "max_drawdown": 0.2826077793565198,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-06-23",
@@ -189,8 +168,10 @@
"319660": "2026-07-23",
"003490": "2026-07-09",
"105560": "2026-07-20",
- "055550": "2026-07-21"
+ "055550": "2026-07-21",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582771+09:00",
- "updated_at": "2026-07-27T15:28:06.087238+09:00"
+ "updated_at": "2026-07-28T15:28:01.023811+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v147/trades.jsonl b/agents/stock/workspace/state/sim/variants/v147/trades.jsonl
index 01cbdd5..07fd714 100644
--- a/agents/stock/workspace/state/sim/variants/v147/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v147/trades.jsonl
@@ -73,3 +73,7 @@
{"ts": "2026-07-24T09:28:04.948071+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 266, "cost": 3860239, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 22889, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,889"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.195831+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 52, "cost": 5044757, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 128952, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 128,952"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:06.227946+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 263, "cost": 5024053, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 23120, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T09:00:16.048472+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 49, "proceeds": 6171742, "entry_price": 168010, "pnl": -2061993, "pnl_pct": -24.89, "hold_from": "2026-06-24T09:46:04.785264+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "131,710 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 276,910"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:16.050874+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 677, "cost": 4590749, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 10237, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.741799+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 646, "cost": 4587288, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 10237, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,237"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.769455+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 541, "proceeds": 6031186, "entry_price": 14266, "pnl": -1687881, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.423676+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,395"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v149/portfolio.json b/agents/stock/workspace/state/sim/variants/v149/portfolio.json
index 9e396cf..9e7d2c2 100644
--- a/agents/stock/workspace/state/sim/variants/v149/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v149/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 19732829.52949996,
+ "cash": 28728753.204499956,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5518075.13775,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 1,
"tranche_value": 5436101.333343748,
"last_add_price": 133100
@@ -55,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.170285+09:00",
"stop": 308113,
"target": 413456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5435113.820843748,
"last_add_price": 356000
@@ -81,53 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5477452.925531248,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 570,
- "entry_price": 14265.78947368421,
- "entry_at": "2026-07-22T14:18:05.425549+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 4073147.5450868765,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:00.996717+09:00",
- "stop": 120314,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 3577781.348739306,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5369515.318718748,
"last_add_price": 97000
@@ -165,23 +123,23 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5357608.233093748,
"last_add_price": 19100
}
},
- "realized_pnl": -14954575.05050002,
- "closed_trades": 28,
+ "realized_pnl": -17570092.83050002,
+ "closed_trades": 30,
"wins": 4,
"peak_equity": 103066363.367,
- "max_drawdown": 0.18434757196045112,
+ "max_drawdown": 0.2179538447719454,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-07-20",
"005930": "2026-06-23",
"403870": "2026-07-07",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"009150": "2026-07-06",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -190,8 +148,9 @@
"319660": "2026-07-23",
"003490": "2026-07-09",
"105560": "2026-07-20",
- "055550": "2026-07-20"
+ "055550": "2026-07-20",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582787+09:00",
- "updated_at": "2026-07-27T15:28:06.088924+09:00"
+ "updated_at": "2026-07-28T15:28:01.025467+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v149/trades.jsonl b/agents/stock/workspace/state/sim/variants/v149/trades.jsonl
index e93137a..e7bb196 100644
--- a/agents/stock/workspace/state/sim/variants/v149/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v149/trades.jsonl
@@ -81,3 +81,5 @@
{"ts": "2026-07-24T09:28:04.949807+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 280, "cost": 4063409, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 18460, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,460"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.197655+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 55, "cost": 5335800, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 111476, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 111,476"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:06.230471+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 280, "cost": 5348802, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21110, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T10:08:02.771329+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 570, "proceeds": 6354485, "entry_price": 14266, "pnl": -1778235, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.425549+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:34:01.972452+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 120300, "qty": 22, "proceeds": 2641439, "entry_price": 158100, "pnl": -837283, "pnl_pct": -23.91, "hold_from": "2026-07-22T15:04:00.996717+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,314 (현재 120,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +285 · 기 -563"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,711"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v151/portfolio.json b/agents/stock/workspace/state/sim/variants/v151/portfolio.json
index 12189b1..aa6c1ef 100644
--- a/agents/stock/workspace/state/sim/variants/v151/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v151/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 14609859.189999968,
+ "cash": 17551883.526499964,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 49,
- "entry_price": 168010.20408163266,
- "entry_at": "2026-06-24T09:46:04.789013+09:00",
- "stop": 131710,
- "target": 240610,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,264 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 4122817.0756532787,
- "last_add_price": 179100
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5389478.369468749,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 1,
"tranche_value": 5262640.649406249,
"last_add_price": 133100
@@ -76,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.172122+09:00",
"stop": 307915,
"target": 434326,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5274205.950343749,
"last_add_price": 356000
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5328934.220031248,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 551,
- "entry_price": 14266.079854809437,
- "entry_at": "2026-07-22T14:18:05.427295+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3938166.1143596834,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5158509.961968748,
"last_add_price": 97000
@@ -165,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5136044.188124998,
"last_add_price": 19100
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 1351,
+ "entry_price": 6936.328645447817,
+ "entry_at": "2026-07-28T09:00:16.264480+09:00",
+ "stop": 5741,
+ "target": 9327,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 4690202.7646562485,
+ "last_add_price": 7100
}
},
- "realized_pnl": -17461843.093500026,
- "closed_trades": 25,
+ "realized_pnl": -21242957.07650003,
+ "closed_trades": 27,
"wins": 2,
"peak_equity": 103066363.367,
- "max_drawdown": 0.218025876172467,
+ "max_drawdown": 0.26436733528161105,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-07-20",
@@ -189,8 +168,10 @@
"319660": "2026-07-23",
"003490": "2026-07-09",
"105560": "2026-07-20",
- "055550": "2026-07-21"
+ "055550": "2026-07-21",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582803+09:00",
- "updated_at": "2026-07-27T15:28:06.090607+09:00"
+ "updated_at": "2026-07-28T15:28:01.027089+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v151/trades.jsonl b/agents/stock/workspace/state/sim/variants/v151/trades.jsonl
index 2521702..b406e34 100644
--- a/agents/stock/workspace/state/sim/variants/v151/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v151/trades.jsonl
@@ -74,3 +74,7 @@
{"ts": "2026-07-24T09:28:04.951474+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 271, "cost": 3932800, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 19936, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,936"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.199521+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 53, "cost": 5141771, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 117301, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 117,301"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:06.232738+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 268, "cost": 5119568, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21780, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T09:00:16.262420+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 49, "proceeds": 6171742, "entry_price": 168010, "pnl": -2061993, "pnl_pct": -24.89, "hold_from": "2026-06-24T09:46:04.789013+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "131,710 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 240,610"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:16.264486+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 691, "cost": 4685683, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 9085, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.745416+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 660, "cost": 4686703, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 9085, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,085"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.773145+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 551, "proceeds": 6142668, "entry_price": 14266, "pnl": -1719121, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.427295+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v155/portfolio.json b/agents/stock/workspace/state/sim/variants/v155/portfolio.json
index 28c2807..521bdfc 100644
--- a/agents/stock/workspace/state/sim/variants/v155/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v155/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 26490622.573500037,
+ "cash": 31415156.02650003,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,32 +18,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5210031.291334455,
"last_add_price": 136900
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 133100,
- "entry_at": "2026-07-21T10:08:04.176920+09:00",
- "stop": 123458,
- "target": 152385,
- "peak": 134700,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5510427.724906253,
- "last_add_price": 133100
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.173991+09:00",
"stop": 318434,
"target": 413243,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4947379.149752503,
"last_add_price": 356000
@@ -81,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5540629.633968752,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 385,
- "entry_price": 14265.636363636364,
- "entry_at": "2026-07-22T14:18:05.429022+09:00",
- "stop": 11983,
- "target": 18830,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2753187.388447304,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 15,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:01.000489+09:00",
- "stop": 129761,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2420063.0422778954,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4684856.297764936,
"last_add_price": 97000
@@ -165,23 +102,44 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5342833.247656252,
"last_add_price": 19170
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 950,
+ "entry_price": 6936.2947368421055,
+ "entry_at": "2026-07-28T09:00:16.371383+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3299693.822310939,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14855250.627000023,
- "closed_trades": 37,
+ "realized_pnl": -16663116.882500025,
+ "closed_trades": 40,
"wins": 4,
"peak_equity": 101291892.54300004,
- "max_drawdown": 0.1654544065546555,
+ "max_drawdown": 0.19859179423427756,
"last_exit": {
- "086790": "2026-07-20",
+ "086790": "2026-07-28",
"030000": "2026-07-24",
"005930": "2026-06-23",
"403870": "2026-07-02",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"003490": "2026-07-07",
"093370": "2026-07-20",
"240810": "2026-07-23",
@@ -191,8 +149,9 @@
"055550": "2026-07-20",
"319660": "2026-07-23",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582834+09:00",
- "updated_at": "2026-07-27T15:28:06.092272+09:00"
+ "updated_at": "2026-07-28T15:28:01.028771+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v155/trades.jsonl b/agents/stock/workspace/state/sim/variants/v155/trades.jsonl
index 545a450..a16ab36 100644
--- a/agents/stock/workspace/state/sim/variants/v155/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v155/trades.jsonl
@@ -104,3 +104,8 @@
{"ts": "2026-07-24T09:48:01.201233+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 48, "cost": 4656698, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 85262, "target": 111476, "signals": [{"label": "손절선", "ok": true, "detail": "85,262 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 111,476"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:04:05.318974+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 460, "proceeds": 5601057, "entry_price": 14622, "pnl": -1126102, "pnl_pct": -16.56, "hold_from": "2026-07-23T10:50:06.623985+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,744 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,378"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:06:01.482560+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 278, "cost": 5330059, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 18093, "target": 21324, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,060)"}]}
+{"ts": "2026-07-28T09:00:16.370466+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 15, "proceeds": 1889309, "entry_price": 158100, "pnl": -482547, "pnl_pct": -20.18, "hold_from": "2026-07-22T15:04:01.000489+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "129,761 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,554"}]}
+{"ts": "2026-07-28T09:00:16.371386+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 486, "cost": 3295574, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.754909+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 385, "proceeds": 4580251, "entry_price": 14266, "pnl": -912843, "pnl_pct": -16.44, "hold_from": "2026-07-22T14:18:05.429022+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,983 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,830"}, {"label": "추세(20일선)", "ok": false, "detail": "12,673"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:10:01.747136+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 464, "cost": 3294894, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T13:24:01.023779+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123300, "qty": 41, "proceeds": 5045442, "entry_price": 133100, "pnl": -412476, "pnl_pct": -7.36, "hold_from": "2026-07-21T10:08:04.176920+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,458 (현재 123,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 152,385"}, {"label": "추세(20일선)", "ok": true, "detail": "118,415"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 136,361"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v157/portfolio.json b/agents/stock/workspace/state/sim/variants/v157/portfolio.json
index 077e675..1d1190e 100644
--- a/agents/stock/workspace/state/sim/variants/v157/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v157/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 47474822.236999944,
+ "cash": 52987504.55449994,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 42,
- "entry_price": 133100,
- "entry_at": "2026-07-21T10:08:04.179066+09:00",
- "stop": 123458,
- "target": 147564,
- "peak": 134700,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5720873.507374998,
- "last_add_price": 133100
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -34,12 +13,12 @@
"entry_at": "2026-07-21T12:06:01.175730+09:00",
"stop": 318647,
"target": 397654,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5132330.379099764,
"last_add_price": 356000
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5067979.388839712,
"last_add_price": 91400
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2128585.542036227,
"last_add_price": 139000
@@ -102,61 +81,40 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5768049.248812497,
"last_add_price": 19100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 195,
- "entry_price": 13150,
- "entry_at": "2026-07-27T09:12:01.521836+09:00",
- "stop": 10830,
- "target": 16630,
- "peak": 13730,
+ "qty": 1007,
+ "entry_price": 6936.3455809334655,
+ "entry_at": "2026-07-28T09:00:16.475655+09:00",
+ "stop": 6040,
+ "target": 8281,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 2573638.6917690183,
- "last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:01.995423+09:00",
- "stop": 120030,
- "target": 139205,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5691507.934874997,
- "last_add_price": 127700
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3495221.1363822897,
+ "last_add_price": 7100
}
},
- "realized_pnl": -11038805.740500018,
- "closed_trades": 31,
+ "realized_pnl": -12315491.67550002,
+ "closed_trades": 34,
"wins": 5,
"peak_equity": 100161893.89500001,
- "max_drawdown": 0.10680420708912021,
+ "max_drawdown": 0.13640707597664653,
"last_exit": {
- "086790": "2026-07-20",
+ "086790": "2026-07-28",
"030000": "2026-07-24",
"005930": "2026-06-23",
"403870": "2026-07-02",
@@ -171,8 +129,10 @@
"105560": "2026-07-20",
"010950": "2026-07-27",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582849+09:00",
- "updated_at": "2026-07-27T15:28:06.093969+09:00"
+ "updated_at": "2026-07-28T15:28:01.030444+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v157/trades.jsonl b/agents/stock/workspace/state/sim/variants/v157/trades.jsonl
index 8ff104a..0c87c63 100644
--- a/agents/stock/workspace/state/sim/variants/v157/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v157/trades.jsonl
@@ -82,3 +82,8 @@
{"ts": "2026-07-27T09:12:01.521838+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 195, "cost": 2564635, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10830, "target": 16630, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,150 vs 12,732"}, {"label": "정배열(5>20)", "ok": true, "detail": "14,378 / 12,732"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:18:01.995424+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 44, "cost": 5619643, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 120030, "target": 139205, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,400 vs 113,925"}, {"label": "정배열(5>20)", "ok": true, "detail": "118,940 / 113,925"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T13:40:01.101351+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1081, "proceeds": 7314888, "entry_price": 7684, "pnl": -992428, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.237559+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,929"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:16.475661+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 515, "cost": 3492224, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 8077, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.748861+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 492, "cost": 3493724, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8077, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,077"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:40:00.880577+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 119100, "qty": 44, "proceeds": 5230181, "entry_price": 127700, "pnl": -389462, "pnl_pct": -6.73, "hold_from": "2026-07-27T09:18:01.995423+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,030 (현재 119,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 139,205"}, {"label": "추세(20일선)", "ok": true, "detail": "113,530"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,300"}]}
+{"ts": "2026-07-28T11:04:03.768405+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10790, "qty": 195, "proceeds": 2099947, "entry_price": 13150, "pnl": -464688, "pnl_pct": -17.95, "hold_from": "2026-07-27T09:12:01.521836+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "10,830 (현재 10,810)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 16,630"}, {"label": "추세(20일선)", "ok": false, "detail": "12,616"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +156 · 기 -156"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,003"}]}
+{"ts": "2026-07-28T13:24:01.025963+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123300, "qty": 42, "proceeds": 5168502, "entry_price": 133100, "pnl": -422537, "pnl_pct": -7.36, "hold_from": "2026-07-21T10:08:04.179066+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,458 (현재 123,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 147,564"}, {"label": "추세(20일선)", "ok": true, "detail": "118,415"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 136,361"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v159/portfolio.json b/agents/stock/workspace/state/sim/variants/v159/portfolio.json
index 52e9a84..828ecae 100644
--- a/agents/stock/workspace/state/sim/variants/v159/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v159/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31228738.403499983,
+ "cash": 26607306.03949998,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 118,779 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 6239163.4909375,
"last_add_price": 122200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5319361.910927292,
"last_add_price": 136900
@@ -55,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.177446+09:00",
"stop": 318647,
"target": 445059,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4992940.599795671,
"last_add_price": 356000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4910846.127133424,
"last_add_price": 91400
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2049607.7169974358,
"last_add_price": 139000
@@ -123,38 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5527839.1075312495,
"last_add_price": 19100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 188,
- "entry_price": 13150,
- "entry_at": "2026-07-27T09:12:01.524338+09:00",
- "stop": 10830,
- "target": 20110,
- "peak": 13730,
+ "qty": 958,
+ "entry_price": 6936.325678496868,
+ "entry_at": "2026-07-28T09:00:16.577498+09:00",
+ "stop": 6040,
+ "target": 9626,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 2476437.932956734,
- "last_add_price": 13150
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3329260.867915104,
+ "last_add_price": 7100
}
},
- "realized_pnl": -16439312.981500017,
- "closed_trades": 29,
+ "realized_pnl": -16887319.425500017,
+ "closed_trades": 30,
"wins": 1,
"peak_equity": 100161893.89500001,
- "max_drawdown": 0.1469985731992535,
+ "max_drawdown": 0.18050365415866546,
"last_exit": {
"086790": "2026-06-19",
"030000": "2026-07-24",
@@ -170,8 +170,9 @@
"105560": "2026-07-20",
"095610": "2026-07-24",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582864+09:00",
- "updated_at": "2026-07-27T15:28:06.095672+09:00"
+ "updated_at": "2026-07-28T15:28:01.032077+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v159/trades.jsonl b/agents/stock/workspace/state/sim/variants/v159/trades.jsonl
index 56db3db..281bd6d 100644
--- a/agents/stock/workspace/state/sim/variants/v159/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v159/trades.jsonl
@@ -80,3 +80,6 @@
{"ts": "2026-07-27T09:08:02.094585+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 503, "cost": 3979327, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6645, "target": 9944, "signals": [{"label": "손절선", "ok": true, "detail": "6,645 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,944"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:12:01.524339+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 188, "cost": 2472571, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10830, "target": 20110, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,150 vs 12,732"}, {"label": "정배열(5>20)", "ok": true, "detail": "14,378 / 12,732"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T13:40:01.103071+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1036, "proceeds": 7010383, "entry_price": 7684, "pnl": -951051, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.239936+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,174"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:16.577503+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 490, "cost": 3322698, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 9373, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.750562+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 468, "cost": 3323298, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 9373, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,373"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T11:04:03.770897+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10790, "qty": 188, "proceeds": 2024564, "entry_price": 13150, "pnl": -448006, "pnl_pct": -17.95, "hold_from": "2026-07-27T09:12:01.524338+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "10,830 (현재 10,810)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,110"}, {"label": "추세(20일선)", "ok": false, "detail": "12,616"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +156 · 기 -156"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,003"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v161/portfolio.json b/agents/stock/workspace/state/sim/variants/v161/portfolio.json
index 4e598a7..579382d 100644
--- a/agents/stock/workspace/state/sim/variants/v161/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v161/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 36889393.09350004,
+ "cash": 47188320.94600004,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4136719.8054039073,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4581298.170382758,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-13T09:06:07.906813+09:00",
"stop": 302625,
"target": 468030,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3813943.0504600187,
"last_add_price": 350000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3727885.349520808,
"last_add_price": 91400
@@ -102,32 +102,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5685594.862062503,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 795,
- "entry_price": 7683.635220125786,
- "entry_at": "2026-07-27T09:02:06.242173+09:00",
- "stop": 6577,
- "target": 11004,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3056113.0859303875,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,38 +123,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2094456.8996012467,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 43,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:01.999208+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5597437.174665325,
- "last_add_price": 127700
}
},
- "realized_pnl": -11929040.82300001,
- "closed_trades": 17,
+ "realized_pnl": -13231442.909000011,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.11930276906499952,
+ "max_drawdown": 0.1430581905399996,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -187,8 +145,10 @@
"003490": "2026-07-09",
"055550": "2026-07-20",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582879+09:00",
- "updated_at": "2026-07-27T15:28:06.097636+09:00"
+ "updated_at": "2026-07-28T15:28:01.033706+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v161/trades.jsonl b/agents/stock/workspace/state/sim/variants/v161/trades.jsonl
index c8fc8db..d59c2ef 100644
--- a/agents/stock/workspace/state/sim/variants/v161/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v161/trades.jsonl
@@ -55,3 +55,5 @@
{"ts": "2026-07-27T09:10:01.050818+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 356, "proceeds": 4274329, "entry_price": 14584, "pnl": -918530, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.494343+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,096"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.527099+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 159, "cost": 2091164, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 21580, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:18:01.999209+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 43, "cost": 5491924, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,400 vs 117,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "118,940 / 117,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.757711+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 795, "proceeds": 5260572, "entry_price": 7684, "pnl": -848834, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.242173+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,004"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.826309+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 43, "proceeds": 5038356, "entry_price": 127700, "pnl": -453568, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:01.999208+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(10일선)", "ok": true, "detail": "116,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v165/portfolio.json b/agents/stock/workspace/state/sim/variants/v165/portfolio.json
index 89699c3..396a601 100644
--- a/agents/stock/workspace/state/sim/variants/v165/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v165/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 36889393.09350004,
+ "cash": 47188320.94600004,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4136719.8054039073,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4581298.170382758,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-13T09:06:07.909051+09:00",
"stop": 302625,
"target": 426679,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3813943.0504600187,
"last_add_price": 350000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3727885.349520808,
"last_add_price": 91400
@@ -102,32 +102,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5685594.862062503,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 795,
- "entry_price": 7683.635220125786,
- "entry_at": "2026-07-27T09:02:06.244230+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3056113.0859303875,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,38 +123,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2094456.8996012467,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 43,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.000973+09:00",
- "stop": 117473,
- "target": 148153,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5597437.174665325,
- "last_add_price": 127700
}
},
- "realized_pnl": -11929040.82300001,
- "closed_trades": 17,
+ "realized_pnl": -13231442.909000011,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.11930276906499952,
+ "max_drawdown": 0.1430581905399996,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -187,8 +145,10 @@
"003490": "2026-07-09",
"055550": "2026-07-20",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582910+09:00",
- "updated_at": "2026-07-27T15:28:06.099297+09:00"
+ "updated_at": "2026-07-28T15:28:01.035358+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v165/trades.jsonl b/agents/stock/workspace/state/sim/variants/v165/trades.jsonl
index e397fa5..6682513 100644
--- a/agents/stock/workspace/state/sim/variants/v165/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v165/trades.jsonl
@@ -55,3 +55,5 @@
{"ts": "2026-07-27T09:10:01.052569+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 356, "proceeds": 4274329, "entry_price": 14584, "pnl": -918530, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.496090+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,592"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.529454+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 159, "cost": 2091164, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 18770, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:18:02.000974+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 43, "cost": 5491924, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 148153, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,400 vs 117,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "118,940 / 117,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.759696+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 795, "proceeds": 5260572, "entry_price": 7684, "pnl": -848834, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.244230+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.828310+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 43, "proceeds": 5038356, "entry_price": 127700, "pnl": -453568, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.000973+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,153"}, {"label": "추세(10일선)", "ok": true, "detail": "116,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v167/portfolio.json b/agents/stock/workspace/state/sim/variants/v167/portfolio.json
index 9f0680b..b678dfe 100644
--- a/agents/stock/workspace/state/sim/variants/v167/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v167/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37088712.1245,
+ "cash": 47544513.475999996,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4167016.287066403,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4614837.858935807,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-13T09:06:07.911275+09:00",
"stop": 302625,
"target": 406003,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3841906.161963773,
"last_add_price": 350000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3755996.4301575036,
"last_add_price": 91400
@@ -102,32 +102,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5728020.23596875,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 801,
- "entry_price": 7683.682896379526,
- "entry_at": "2026-07-27T09:02:06.246347+09:00",
- "stop": 6577,
- "target": 9344,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3079042.164516068,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,38 +123,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2110094.639964724,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.002746+09:00",
- "stop": 117473,
- "target": 143040,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5639243.296867435,
- "last_add_price": 127700
}
},
- "realized_pnl": -11263511.87100001,
- "closed_trades": 17,
+ "realized_pnl": -12582906.534000011,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.11271417875499994,
+ "max_drawdown": 0.13672986524000003,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -187,8 +145,10 @@
"003490": "2026-07-09",
"055550": "2026-07-20",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.582926+09:00",
- "updated_at": "2026-07-27T15:28:06.100975+09:00"
+ "updated_at": "2026-07-28T15:28:01.036978+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v167/trades.jsonl b/agents/stock/workspace/state/sim/variants/v167/trades.jsonl
index 5d82bba..8430fd2 100644
--- a/agents/stock/workspace/state/sim/variants/v167/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v167/trades.jsonl
@@ -54,3 +54,5 @@
{"ts": "2026-07-27T09:10:01.054297+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 359, "proceeds": 4310348, "entry_price": 14586, "pnl": -926777, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.497819+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,082 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,342"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.531681+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 160, "cost": 2104316, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 17365, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:18:02.002747+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 44, "cost": 5619643, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 143040, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,400 vs 117,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "118,940 / 117,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.761394+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 801, "proceeds": 5300274, "entry_price": 7684, "pnl": -855279, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.246347+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.830227+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 44, "proceeds": 5155527, "entry_price": 127700, "pnl": -464116, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.002746+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 143,040"}, {"label": "추세(10일선)", "ok": true, "detail": "116,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v189/portfolio.json b/agents/stock/workspace/state/sim/variants/v189/portfolio.json
index 92918d1..910b3e7 100644
--- a/agents/stock/workspace/state/sim/variants/v189/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v189/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 32587590.960500002,
+ "cash": 27859644.655,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 118,779 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 6250717.7646875,
"last_add_price": 122200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5273495.601167365,
"last_add_price": 136900
@@ -55,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.185929+09:00",
"stop": 318647,
"target": 445059,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5085796.90859035,
"last_add_price": 356000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4982054.533958632,
"last_add_price": 90900
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2089467.8197444167,
"last_add_price": 139000
@@ -123,38 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5636180.5746875,
"last_add_price": 19100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 191,
- "entry_price": 13150,
- "entry_at": "2026-07-27T09:12:01.533927+09:00",
- "stop": 10830,
- "target": 20110,
- "peak": 13730,
+ "qty": 978,
+ "entry_price": 6936.40081799591,
+ "entry_at": "2026-07-28T09:00:17.897086+09:00",
+ "stop": 6040,
+ "target": 9626,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 2524972.5677900864,
- "last_add_price": 13150
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3395515.4578251736,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14789766.827000013,
- "closed_trades": 26,
+ "realized_pnl": -15244922.310000014,
+ "closed_trades": 27,
"wins": 1,
"peak_equity": 100344662.275,
- "max_drawdown": 0.1315939584141672,
+ "max_drawdown": 0.1655507850978016,
"last_exit": {
"086790": "2026-06-19",
"030000": "2026-07-24",
@@ -168,8 +168,9 @@
"105560": "2026-07-20",
"095610": "2026-07-24",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583136+09:00",
- "updated_at": "2026-07-27T15:28:06.102664+09:00"
+ "updated_at": "2026-07-28T15:28:01.038624+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v189/trades.jsonl b/agents/stock/workspace/state/sim/variants/v189/trades.jsonl
index 2b6aa3e..0bfeafb 100644
--- a/agents/stock/workspace/state/sim/variants/v189/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v189/trades.jsonl
@@ -74,3 +74,6 @@
{"ts": "2026-07-27T09:08:02.101845+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 513, "cost": 4058439, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6645, "target": 9944, "signals": [{"label": "손절선", "ok": true, "detail": "6,645 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,944"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:12:01.533928+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 191, "cost": 2512027, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10830, "target": 20110, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,150 vs 12,732"}, {"label": "정배열(5>20)", "ok": true, "detail": "14,378 / 12,732"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T13:40:01.110173+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1056, "proceeds": 7145719, "entry_price": 7684, "pnl": -969538, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.248633+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,174"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:17.897091+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 500, "cost": 3390509, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 9373, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.757637+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 478, "cost": 3394309, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 9373, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,373"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T11:04:03.862281+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10790, "qty": 191, "proceeds": 2056871, "entry_price": 13150, "pnl": -455155, "pnl_pct": -17.95, "hold_from": "2026-07-27T09:12:01.533927+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "10,830 (현재 10,810)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,110"}, {"label": "추세(20일선)", "ok": false, "detail": "12,616"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +156 · 기 -156"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,003"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v195/portfolio.json b/agents/stock/workspace/state/sim/variants/v195/portfolio.json
index 2df61b0..933bb3f 100644
--- a/agents/stock/workspace/state/sim/variants/v195/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v195/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 41704242.85750002,
+ "cash": 39896969.21600001,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5323473.79266045,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4027945.7278098115,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.319241+09:00",
"stop": 305399,
"target": 472804,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3889733.683715179,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 299,
- "entry_price": 14265.986622073578,
- "entry_at": "2026-07-22T14:18:05.440873+09:00",
- "stop": 11223,
- "target": 23395,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2142144.27951391,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3742230.636714602,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1870164.384838387,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5696942.092812501,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 741,
+ "entry_price": 6936.329284750337,
+ "entry_at": "2026-07-28T09:00:18.003009+09:00",
+ "stop": 5741,
+ "target": 10522,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2570625.313254558,
+ "last_add_price": 7100
}
},
- "realized_pnl": -12916521.27800001,
- "closed_trades": 21,
+ "realized_pnl": -13849373.77600001,
+ "closed_trades": 22,
"wins": 0,
"peak_equity": 101140808.32700005,
- "max_drawdown": 0.13162427401666488,
+ "max_drawdown": 0.1601801427038344,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -169,8 +169,9 @@
"105560": "2026-07-20",
"095610": "2026-07-23",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583184+09:00",
- "updated_at": "2026-07-27T15:28:06.104334+09:00"
+ "updated_at": "2026-07-28T15:28:01.040263+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v195/trades.jsonl b/agents/stock/workspace/state/sim/variants/v195/trades.jsonl
index d8b6dff..a53cafd 100644
--- a/agents/stock/workspace/state/sim/variants/v195/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v195/trades.jsonl
@@ -64,3 +64,6 @@
{"ts": "2026-07-27T09:12:01.535985+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 404, "cost": 3171876, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 11170, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.252088+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 382, "cost": 3171076, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 11170, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,170"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.248084+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 786, "proceeds": 5397135, "entry_price": 8069, "pnl": -945816, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.535984+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,389"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:18.003017+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 379, "cost": 2570005, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 10237, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.759359+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 362, "cost": 2570586, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 10237, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,237"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.786746+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 299, "proceeds": 3333317, "entry_price": 14266, "pnl": -932852, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.440873+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,395"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v197/portfolio.json b/agents/stock/workspace/state/sim/variants/v197/portfolio.json
index 93960f6..bc48049 100644
--- a/agents/stock/workspace/state/sim/variants/v197/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v197/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 36178040.90050001,
+ "cash": 47905587.5035,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 24,
- "entry_price": 167779.16666666666,
- "entry_at": "2026-06-24T09:46:05.168473+09:00",
- "stop": 131479,
- "target": 240379,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,264 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 2088366.7995946202,
- "last_add_price": 179100
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4067747.817915917,
"last_add_price": 136900
@@ -55,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.189281+09:00",
"stop": 307839,
"target": 434250,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3891157.6622701483,
"last_add_price": 356000
@@ -81,32 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5814522.042968751,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 303,
- "entry_price": 14266.039603960397,
- "entry_at": "2026-07-22T14:18:05.442603+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2163614.2656266936,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3778918.748885343,
"last_add_price": 90900
@@ -144,38 +102,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5719122.209000001,
"last_add_price": 19100
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 805,
- "entry_price": 7683.714285714285,
- "entry_at": "2026-07-27T09:02:06.252691+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,910 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3093405.0516192275,
- "last_add_price": 7910
}
},
- "realized_pnl": -9330086.544500016,
- "closed_trades": 23,
+ "realized_pnl": -12139420.146500017,
+ "closed_trades": 26,
"wins": 2,
"peak_equity": 101368884.75700004,
- "max_drawdown": 0.11384059205310686,
+ "max_drawdown": 0.1409779469090311,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-07-20",
@@ -187,8 +124,11 @@
"034730": "2026-07-07",
"319660": "2026-07-23",
"003490": "2026-07-09",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583198+09:00",
- "updated_at": "2026-07-27T15:28:06.106009+09:00"
+ "updated_at": "2026-07-28T15:28:01.041917+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v197/trades.jsonl b/agents/stock/workspace/state/sim/variants/v197/trades.jsonl
index fb5d7ac..009112b 100644
--- a/agents/stock/workspace/state/sim/variants/v197/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v197/trades.jsonl
@@ -71,3 +71,6 @@
{"ts": "2026-07-27T09:02:06.252280+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 299, "cost": 5711757, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21780, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
{"ts": "2026-07-27T09:02:06.252692+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7470, "qty": 414, "cost": 3093044, "path": "pullback", "reason": "눌림목 지정가 7,910 도달", "stop": 6370, "target": 9669, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,470 vs 4,876"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,452 / 4,876"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,452 / 4,889"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+82.0%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.79% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "49,327 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.79% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "74"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,910 (현재 7,470)"}]}
{"ts": "2026-07-27T09:08:02.105328+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 391, "cost": 3093274, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6370, "target": 9669, "signals": [{"label": "손절선", "ok": true, "detail": "6,370 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,669"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
+{"ts": "2026-07-28T09:00:18.106536+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 24, "proceeds": 3022894, "entry_price": 167779, "pnl": -1004410, "pnl_pct": -24.78, "hold_from": "2026-06-24T09:46:05.168473+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "131,479 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 240,379"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T10:08:02.788479+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 303, "proceeds": 3377910, "entry_price": 14266, "pnl": -945348, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.442603+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:22:00.766355+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 805, "proceeds": 5326743, "entry_price": 7684, "pnl": -859575, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.252691+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v199/portfolio.json b/agents/stock/workspace/state/sim/variants/v199/portfolio.json
index 8dcece2..6d006fc 100644
--- a/agents/stock/workspace/state/sim/variants/v199/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v199/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 43587279.02700003,
+ "cash": 56774663.38450003,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:07.269469+09:00",
- "stop": 123940,
- "target": 234847,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1823343.1265236405,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4039283.450888891,
"last_add_price": 136900
@@ -55,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.191055+09:00",
"stop": 307839,
"target": 434250,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3848025.874946516,
"last_add_price": 356000
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3774325.11581779,
"last_add_price": 90900
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5721714.462968752,
"last_add_price": 19100
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 805,
- "entry_price": 7683.714285714285,
- "entry_at": "2026-07-27T09:02:06.254810+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3095974.5979571603,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,38 +102,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2116245.761706495,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.412364+09:00",
- "stop": 117645,
- "target": 148411,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5661328.755757827,
- "last_add_price": 127900
}
},
- "realized_pnl": -10527049.154500017,
- "closed_trades": 23,
+ "realized_pnl": -12694957.745500017,
+ "closed_trades": 26,
"wins": 2,
"peak_equity": 100182695.41500005,
- "max_drawdown": 0.11135572208141717,
+ "max_drawdown": 0.13404948883506757,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-07-20",
@@ -187,8 +124,11 @@
"319660": "2026-07-27",
"003490": "2026-07-09",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583212+09:00",
- "updated_at": "2026-07-27T15:28:06.107679+09:00"
+ "updated_at": "2026-07-28T15:28:01.043569+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v199/trades.jsonl b/agents/stock/workspace/state/sim/variants/v199/trades.jsonl
index a1d5afb..5bee67f 100644
--- a/agents/stock/workspace/state/sim/variants/v199/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v199/trades.jsonl
@@ -69,3 +69,6 @@
{"ts": "2026-07-27T09:30:01.185145+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 149900, "qty": 37, "cost": 5547132, "path": "pullback", "reason": "눌림목 지정가 157,993 도달", "stop": 149899, "target": 149902, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "149,800 vs 149,280"}, {"label": "정배열(5>20)", "ok": true, "detail": "167,600 / 149,280"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "167,600 / 113,055"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+61.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +274 · 기 -315 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+22%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.69% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "780,273 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "2.69% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "52"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 157,993 (현재 149,800)"}]}
{"ts": "2026-07-27T09:32:01.412064+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 37, "proceeds": 5483786, "entry_price": 149900, "pnl": -63346, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.185144+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,902"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T09:32:01.412365+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 44, "cost": 5628444, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 148411, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,900 vs 113,950"}, {"label": "정배열(5>20)", "ok": true, "detail": "119,040 / 113,950"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T09:04:02.759310+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:07.269469+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 234,847"}, {"label": "추세(20일선)", "ok": false, "detail": "134,595"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:22:00.768046+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 805, "proceeds": 5326743, "entry_price": 7684, "pnl": -859575, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.254810+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:56:02.896515+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 44, "proceeds": 5155527, "entry_price": 127900, "pnl": -472917, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.412364+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,411"}, {"label": "추세(20일선)", "ok": true, "detail": "113,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v201/portfolio.json b/agents/stock/workspace/state/sim/variants/v201/portfolio.json
index beacdc1..a3d1858 100644
--- a/agents/stock/workspace/state/sim/variants/v201/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v201/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 41704242.85750002,
+ "cash": 39896969.21600001,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5323473.79266045,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4027945.7278098115,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.324564+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3889733.683715179,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 299,
- "entry_price": 14265.986622073578,
- "entry_at": "2026-07-22T14:18:05.445916+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2142144.27951391,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3742230.636714602,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1870164.384838387,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5696942.092812501,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 741,
+ "entry_price": 6936.329284750337,
+ "entry_at": "2026-07-28T09:00:18.311548+09:00",
+ "stop": 5741,
+ "target": 9327,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2570625.313254558,
+ "last_add_price": 7100
}
},
- "realized_pnl": -12916521.27800001,
- "closed_trades": 21,
+ "realized_pnl": -13849373.77600001,
+ "closed_trades": 22,
"wins": 0,
"peak_equity": 101140808.32700005,
- "max_drawdown": 0.13162427401666488,
+ "max_drawdown": 0.1601801427038344,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -169,8 +169,9 @@
"105560": "2026-07-20",
"095610": "2026-07-23",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583227+09:00",
- "updated_at": "2026-07-27T15:28:06.109340+09:00"
+ "updated_at": "2026-07-28T15:28:01.045188+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v201/trades.jsonl b/agents/stock/workspace/state/sim/variants/v201/trades.jsonl
index 1e292c3..17f1426 100644
--- a/agents/stock/workspace/state/sim/variants/v201/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v201/trades.jsonl
@@ -64,3 +64,6 @@
{"ts": "2026-07-27T09:12:01.542201+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 404, "cost": 3171876, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 10064, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.257218+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 382, "cost": 3171076, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 10064, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,064"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.253231+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 786, "proceeds": 5397135, "entry_price": 8069, "pnl": -945816, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.542199+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,282"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:18.311555+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 379, "cost": 2570005, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 9085, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.764446+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 362, "cost": 2570586, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 9085, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,085"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.791861+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 299, "proceeds": 3333317, "entry_price": 14266, "pnl": -932852, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.445916+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v203/portfolio.json b/agents/stock/workspace/state/sim/variants/v203/portfolio.json
index 81d012f..0642065 100644
--- a/agents/stock/workspace/state/sim/variants/v203/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v203/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 53855652.28999997,
+ "cash": 54267867.90049997,
"initial": 100000000,
"positions": {
"214450": {
@@ -13,12 +13,12 @@
"entry_at": "2026-07-21T12:06:01.194399+09:00",
"stop": 318449,
"target": 397456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5225929.659467572,
"last_add_price": 356000
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5138975.321289769,
"last_add_price": 90900
@@ -60,7 +60,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2167992.3633458223,
"last_add_price": 139000
@@ -81,59 +81,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5892747.465906248,
"last_add_price": 19100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 199,
- "entry_price": 13150,
- "entry_at": "2026-07-27T09:12:01.544267+09:00",
- "stop": 10830,
- "target": 16630,
- "peak": 13730,
+ "qty": 1027,
+ "entry_price": 6936.416747809153,
+ "entry_at": "2026-07-28T09:00:18.415977+09:00",
+ "stop": 6040,
+ "target": 8281,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 2626389.20289973,
- "last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 45,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.416272+09:00",
- "stop": 120209,
- "target": 139437,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5820402.599937499,
- "last_add_price": 127900
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3566532.3780451375,
+ "last_add_price": 7100
}
},
- "realized_pnl": -9441193.062500019,
- "closed_trades": 29,
+ "realized_pnl": -10277814.749500021,
+ "closed_trades": 31,
"wins": 5,
"peak_equity": 100344662.275,
- "max_drawdown": 0.09675076894367877,
+ "max_drawdown": 0.11804747861960987,
"last_exit": {
"086790": "2026-07-20",
"030000": "2026-07-24",
@@ -148,8 +127,10 @@
"105560": "2026-07-20",
"010950": "2026-07-27",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583241+09:00",
- "updated_at": "2026-07-27T15:28:06.111013+09:00"
+ "updated_at": "2026-07-28T15:28:01.046847+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v203/trades.jsonl b/agents/stock/workspace/state/sim/variants/v203/trades.jsonl
index 506d2da..774a8bf 100644
--- a/agents/stock/workspace/state/sim/variants/v203/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v203/trades.jsonl
@@ -77,3 +77,7 @@
{"ts": "2026-07-27T09:32:01.415993+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 38, "proceeds": 5631996, "entry_price": 149900, "pnl": -65058, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.188633+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,902"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T09:32:01.416274+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 45, "cost": 5756363, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 120209, "target": 139437, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,900 vs 113,950"}, {"label": "정배열(5>20)", "ok": true, "detail": "119,040 / 113,950"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T13:40:01.118855+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1104, "proceeds": 7470524, "entry_price": 7684, "pnl": -1013468, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.258778+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,929"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:18.415985+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 525, "cost": 3560034, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 8077, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.766164+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 502, "cost": 3564735, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8077, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,077"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:38:04.856150+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 120100, "qty": 45, "proceeds": 5393961, "entry_price": 127900, "pnl": -362402, "pnl_pct": -6.1, "hold_from": "2026-07-27T09:32:01.416272+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,209 (현재 120,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 139,437"}, {"label": "추세(20일선)", "ok": true, "detail": "113,560"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,460"}]}
+{"ts": "2026-07-28T11:04:03.876316+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10790, "qty": 199, "proceeds": 2143023, "entry_price": 13150, "pnl": -474220, "pnl_pct": -17.95, "hold_from": "2026-07-27T09:12:01.544267+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "10,830 (현재 10,810)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 16,630"}, {"label": "추세(20일선)", "ok": false, "detail": "12,616"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +156 · 기 -156"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,003"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v205/portfolio.json b/agents/stock/workspace/state/sim/variants/v205/portfolio.json
index 35f49c2..c128801 100644
--- a/agents/stock/workspace/state/sim/variants/v205/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v205/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 38314677.762000024,
+ "cash": 48597347.38000002,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4100167.692846849,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.196090+09:00",
"stop": 308113,
"target": 413456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3939968.9939820534,
"last_add_price": 356000
@@ -60,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5880825.494625002,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 307,
- "entry_price": 14266.091205211726,
- "entry_at": "2026-07-22T14:18:05.449229+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2194371.3136614803,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 12,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:01.021105+09:00",
- "stop": 120314,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 1929720.6345830075,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3836617.5002028025,
"last_add_price": 90900
@@ -144,43 +102,22 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5821568.917468751,
"last_add_price": 19100
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 819,
- "entry_price": 7683.821733821734,
- "entry_at": "2026-07-27T09:02:06.260601+09:00",
- "stop": 6577,
- "target": 9344,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,910 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3148687.5679302965,
- "last_add_price": 7910
}
},
- "realized_pnl": -8193459.662000016,
- "closed_trades": 26,
+ "realized_pnl": -10482615.535000017,
+ "closed_trades": 29,
"wins": 4,
"peak_equity": 101368884.75700004,
- "max_drawdown": 0.09824688333973496,
+ "max_drawdown": 0.12474259145015222,
"last_exit": {
"030000": "2026-07-24",
"086790": "2026-07-20",
"403870": "2026-07-07",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"009150": "2026-07-06",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -188,8 +125,10 @@
"034730": "2026-07-07",
"319660": "2026-07-23",
"003490": "2026-07-09",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "252990": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583273+09:00",
- "updated_at": "2026-07-27T15:28:06.112674+09:00"
+ "updated_at": "2026-07-28T15:28:01.048501+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v205/trades.jsonl b/agents/stock/workspace/state/sim/variants/v205/trades.jsonl
index 3fcb851..5b92ce1 100644
--- a/agents/stock/workspace/state/sim/variants/v205/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v205/trades.jsonl
@@ -77,3 +77,6 @@
{"ts": "2026-07-27T09:02:06.260444+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 304, "cost": 5807271, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21110, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
{"ts": "2026-07-27T09:02:06.260602+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7470, "qty": 421, "cost": 3145342, "path": "pullback", "reason": "눌림목 지정가 7,910 도달", "stop": 6370, "target": 9119, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,470 vs 4,876"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,452 / 4,876"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,452 / 4,889"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+82.0%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.79% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "49,327 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.79% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "74"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,910 (현재 7,470)"}]}
{"ts": "2026-07-27T09:08:02.112215+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 398, "cost": 3148652, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6370, "target": 9119, "signals": [{"label": "손절선", "ok": true, "detail": "6,370 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,119"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
+{"ts": "2026-07-28T10:08:02.795319+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 307, "proceeds": 3422503, "entry_price": 14266, "pnl": -957844, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.449229+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:22:00.772935+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 819, "proceeds": 5419382, "entry_price": 7684, "pnl": -874612, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.260601+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:34:01.995508+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 120300, "qty": 12, "proceeds": 1440785, "entry_price": 158100, "pnl": -456700, "pnl_pct": -23.91, "hold_from": "2026-07-22T15:04:01.021105+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,314 (현재 120,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +285 · 기 -563"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,711"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v207/portfolio.json b/agents/stock/workspace/state/sim/variants/v207/portfolio.json
index 0b3111d..3aa3cc9 100644
--- a/agents/stock/workspace/state/sim/variants/v207/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v207/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37192970.06300004,
+ "cash": 56167697.05300004,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4104199.1508728755,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.329595+09:00",
"stop": 305125,
"target": 430679,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3869967.7922643563,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 69,
- "entry_price": 137175.36231884058,
- "entry_at": "2026-07-13T09:48:02.363790+09:00",
- "stop": 123862,
- "target": 163803,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4856628.092474961,
- "last_add_price": 138900
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3737129.4618013836,
"last_add_price": 90900
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5724944.494593753,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 800,
- "entry_price": 7683.95,
- "entry_at": "2026-07-27T09:02:06.262348+09:00",
- "stop": 6577,
- "target": 9898,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3077751.489019979,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,41 +102,20 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2109152.1279527587,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.419969+09:00",
- "stop": 117645,
- "target": 148411,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5637035.927139788,
- "last_add_price": 127900
}
},
- "realized_pnl": -10952592.938000008,
- "closed_trades": 16,
+ "realized_pnl": -13220911.927000012,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 100024962.38500004,
- "max_drawdown": 0.11332463468838917,
+ "max_drawdown": 0.13609677821824845,
"last_exit": {
"030000": "2026-07-15",
- "086790": "2026-06-23",
+ "086790": "2026-07-28",
"403870": "2026-07-07",
"240810": "2026-07-24",
"214450": "2026-07-06",
@@ -186,8 +123,10 @@
"003490": "2026-07-09",
"055550": "2026-07-20",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583289+09:00",
- "updated_at": "2026-07-27T15:28:06.114314+09:00"
+ "updated_at": "2026-07-28T15:28:01.050119+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v207/trades.jsonl b/agents/stock/workspace/state/sim/variants/v207/trades.jsonl
index 492fbec..50906e4 100644
--- a/agents/stock/workspace/state/sim/variants/v207/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v207/trades.jsonl
@@ -52,3 +52,6 @@
{"ts": "2026-07-27T09:10:01.067918+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 359, "proceeds": 4310348, "entry_price": 14586, "pnl": -926777, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.511570+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,082 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,594"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.548028+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 160, "cost": 2104316, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 18770, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:32:01.419970+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 44, "cost": 5628444, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 148411, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,900 vs 117,400"}, {"label": "정배열(5>10)", "ok": true, "detail": "119,040 / 117,400"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.774625+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 800, "proceeds": 5293657, "entry_price": 7684, "pnl": -854425, "pnl_pct": -13.72, "hold_from": "2026-07-27T09:02:06.262348+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,898"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:56:02.903081+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 44, "proceeds": 5155527, "entry_price": 127900, "pnl": -472917, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.419969+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,411"}, {"label": "추세(10일선)", "ok": true, "detail": "116,360"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
+{"ts": "2026-07-28T13:20:03.855462+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123800, "qty": 69, "proceeds": 8525543, "entry_price": 137175, "pnl": -940977, "pnl_pct": -9.75, "hold_from": "2026-07-13T09:48:02.363790+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,862 (현재 123,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 163,803"}, {"label": "추세(10일선)", "ok": true, "detail": "119,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v209/portfolio.json b/agents/stock/workspace/state/sim/variants/v209/portfolio.json
index 65db72b..804db04 100644
--- a/agents/stock/workspace/state/sim/variants/v209/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v209/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 36950239.54550004,
+ "cash": 56205169.073000036,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4134023.492494496,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.331285+09:00",
"stop": 305399,
"target": 410027,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3898349.7986140535,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 137176.05633802817,
- "entry_at": "2026-07-13T09:48:02.365501+09:00",
- "stop": 123862,
- "target": 157147,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4892197.723204158,
- "last_add_price": 138900
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3762093.1541708363,
"last_add_price": 90900
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5764398.856562503,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 805,
- "entry_price": 7683.714285714285,
- "entry_at": "2026-07-27T09:02:06.264397+09:00",
- "stop": 6577,
- "target": 9344,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3098410.252999774,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,41 +102,20 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2123684.549898044,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.421842+09:00",
- "stop": 117645,
- "target": 143283,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5676229.668149904,
- "last_add_price": 127900
}
},
- "realized_pnl": -10341615.41850001,
- "closed_trades": 16,
+ "realized_pnl": -12642408.76450001,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 100024962.38500004,
- "max_drawdown": 0.10721296548178644,
+ "max_drawdown": 0.13028867965817217,
"last_exit": {
"030000": "2026-07-15",
- "086790": "2026-06-23",
+ "086790": "2026-07-28",
"403870": "2026-07-07",
"240810": "2026-07-24",
"214450": "2026-07-06",
@@ -186,8 +123,10 @@
"003490": "2026-07-09",
"055550": "2026-07-20",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583304+09:00",
- "updated_at": "2026-07-27T15:28:06.115980+09:00"
+ "updated_at": "2026-07-28T15:28:01.051752+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v209/trades.jsonl b/agents/stock/workspace/state/sim/variants/v209/trades.jsonl
index 666a080..51a3bc4 100644
--- a/agents/stock/workspace/state/sim/variants/v209/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v209/trades.jsonl
@@ -51,3 +51,6 @@
{"ts": "2026-07-27T09:10:01.069652+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 361, "proceeds": 4334361, "entry_price": 14586, "pnl": -931968, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.513301+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,082 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,342"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.549893+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 161, "cost": 2117468, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 17365, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:32:01.421843+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 44, "cost": 5628444, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 143283, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,900 vs 117,400"}, {"label": "정배열(5>10)", "ok": true, "detail": "119,040 / 117,400"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.776303+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 805, "proceeds": 5326743, "entry_price": 7684, "pnl": -859575, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.264397+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:56:02.904762+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 44, "proceeds": 5155527, "entry_price": 127900, "pnl": -472917, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.421842+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 143,283"}, {"label": "추세(10일선)", "ok": true, "detail": "116,360"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
+{"ts": "2026-07-28T13:20:03.857155+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123800, "qty": 71, "proceeds": 8772660, "entry_price": 137176, "pnl": -968301, "pnl_pct": -9.75, "hold_from": "2026-07-13T09:48:02.365501+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,862 (현재 123,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 157,147"}, {"label": "추세(10일선)", "ok": true, "detail": "119,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v211/portfolio.json b/agents/stock/workspace/state/sim/variants/v211/portfolio.json
index 99965fc..9b0fb64 100644
--- a/agents/stock/workspace/state/sim/variants/v211/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v211/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 43189206.450500034,
+ "cash": 41351647.54600003,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5357366.7482318785,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4055251.939081083,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.332947+09:00",
"stop": 305399,
"target": 410027,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3913399.394880189,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 305,
- "entry_price": 14266.065573770491,
- "entry_at": "2026-07-22T14:18:05.454214+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2181352.5763444137,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3814573.88062613,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1907438.4417107757,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5809954.857343752,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 755,
+ "entry_price": 6936.397350993378,
+ "entry_at": "2026-07-28T09:00:18.830154+09:00",
+ "stop": 5741,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2622666.0387777355,
+ "last_add_price": 7100
}
},
- "realized_pnl": -11143994.557000013,
- "closed_trades": 24,
+ "realized_pnl": -12095590.587000012,
+ "closed_trades": 25,
"wins": 2,
"peak_equity": 101140808.32700005,
- "max_drawdown": 0.11413831931396845,
+ "max_drawdown": 0.1429631720388377,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -169,8 +169,9 @@
"003490": "2026-07-23",
"105560": "2026-07-20",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583318+09:00",
- "updated_at": "2026-07-27T15:28:06.117661+09:00"
+ "updated_at": "2026-07-28T15:28:01.053364+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v211/trades.jsonl b/agents/stock/workspace/state/sim/variants/v211/trades.jsonl
index c6b8421..cd7ea6d 100644
--- a/agents/stock/workspace/state/sim/variants/v211/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v211/trades.jsonl
@@ -71,3 +71,6 @@
{"ts": "2026-07-27T09:12:01.551663+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 412, "cost": 3234685, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 9510, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.265679+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 389, "cost": 3229184, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 9510, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,510"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.261654+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 801, "proceeds": 5500134, "entry_price": 8069, "pnl": -963736, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.551661+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,729"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:18.830160+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 386, "cost": 2617473, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 8509, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.772811+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 369, "cost": 2620293, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.800571+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 305, "proceeds": 3400207, "entry_price": 14266, "pnl": -951596, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.454214+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v213/portfolio.json b/agents/stock/workspace/state/sim/variants/v213/portfolio.json
index bed590c..96ab400 100644
--- a/agents/stock/workspace/state/sim/variants/v213/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v213/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 29948307.120500002,
+ "cash": 29709545.535499997,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5164908.463247621,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.202637+09:00",
"stop": 318647,
"target": 413456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5038910.050638685,
"last_add_price": 356000
@@ -60,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5640212.3774375,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 392,
- "entry_price": 14266.326530612245,
- "entry_at": "2026-07-22T14:18:05.455954+09:00",
- "stop": 11984,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2804743.751868104,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 15,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:01.028111+09:00",
- "stop": 129761,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2466171.5710514397,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4907020.835552651,
"last_add_price": 90900
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5601008.3746875,
"last_add_price": 19100
@@ -160,27 +118,48 @@
"entry_at": "2026-07-27T14:20:01.093221+09:00",
"stop": 1775,
"target": 2840,
- "peak": 2130,
+ "peak": 2235,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 2,135 도달",
- "cur_price": 2105,
+ "cur_price": 1941,
"tranches": 1,
"tranche_value": 2627079.6319200005,
"last_add_price": 2130
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 979,
+ "entry_price": 6936.241062308478,
+ "entry_at": "2026-07-28T09:00:18.935354+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3400860.5857869796,
+ "last_add_price": 7100
}
},
- "realized_pnl": -13045053.166000016,
- "closed_trades": 34,
+ "realized_pnl": -14457310.749000017,
+ "closed_trades": 36,
"wins": 4,
"peak_equity": 101501376.42350003,
- "max_drawdown": 0.14250540054401817,
+ "max_drawdown": 0.17474704790203693,
"last_exit": {
"086790": "2026-07-20",
"030000": "2026-07-24",
"403870": "2026-07-02",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"003490": "2026-07-07",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -189,8 +168,9 @@
"214450": "2026-07-03",
"319660": "2026-07-23",
"105560": "2026-07-20",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583333+09:00",
- "updated_at": "2026-07-27T15:28:06.119335+09:00"
+ "updated_at": "2026-07-28T15:28:01.055017+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v213/trades.jsonl b/agents/stock/workspace/state/sim/variants/v213/trades.jsonl
index 530d12f..2f45a02 100644
--- a/agents/stock/workspace/state/sim/variants/v213/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v213/trades.jsonl
@@ -98,3 +98,7 @@
{"ts": "2026-07-27T09:08:02.119020+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 509, "cost": 4026794, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6645, "target": 9119, "signals": [{"label": "손절선", "ok": true, "detail": "6,645 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,119"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T13:40:01.127772+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1048, "proceeds": 7091584, "entry_price": 7684, "pnl": -962143, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.267887+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T14:20:01.093222+09:00", "side": "BUY", "code": "218150", "name": "미래생명자원", "price": 2130, "qty": 1233, "cost": 2626684, "path": "pullback", "reason": "눌림목 지정가 2,135 도달", "stop": 1775, "target": 2840, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "2,130 vs 2,030"}, {"label": "정배열(5>20)", "ok": true, "detail": "2,415 / 2,030"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "2,415 / 2,265"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+41.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -118 · 기 +4 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "6.22% (환산) vs 평균 15.95% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 3,180"}, {"label": "거래량 급증", "ok": false, "detail": "1,270,804 (환산) vs 평균 3,257,264"}, {"label": "회전율 급증", "ok": false, "detail": "6.22% (환산) vs 평균 15.95%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 2,135 (현재 2,130)"}]}
+{"ts": "2026-07-28T09:00:18.933514+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 15, "proceeds": 1889309, "entry_price": 158100, "pnl": -482547, "pnl_pct": -20.18, "hold_from": "2026-07-22T15:04:01.028111+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "129,761 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,554"}]}
+{"ts": "2026-07-28T09:00:18.935361+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 501, "cost": 3397290, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.781522+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 392, "proceeds": 4663528, "entry_price": 14266, "pnl": -929711, "pnl_pct": -16.45, "hold_from": "2026-07-22T14:18:05.455954+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,984 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,673"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:10:01.774527+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 478, "cost": 3394309, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v215/portfolio.json b/agents/stock/workspace/state/sim/variants/v215/portfolio.json
index 8f43558..d87464b 100644
--- a/agents/stock/workspace/state/sim/variants/v215/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v215/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31261175.696500015,
+ "cash": 31066735.131500013,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5572324.860088777,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5242158.578984787,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.204321+09:00",
"stop": 318647,
"target": 413456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5033450.427529937,
"last_add_price": 356000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 396,
- "entry_price": 14266.363636363636,
- "entry_at": "2026-07-22T14:18:05.457812+09:00",
- "stop": 11984,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2832410.166868771,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4951509.819030465,
"last_add_price": 90900
},
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 15,
- "entry_price": 155500,
- "entry_at": "2026-07-24T09:00:09.727869+09:00",
- "stop": 127139,
- "target": 212221,
- "peak": 155500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2478025.151626882,
- "last_add_price": 155500
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -144,24 +102,45 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5662520.118343751,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 973,
+ "entry_price": 6936.217882836588,
+ "entry_at": "2026-07-28T09:00:19.039792+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3378406.3450362855,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14044741.421500016,
- "closed_trades": 30,
+ "realized_pnl": -15472406.942500016,
+ "closed_trades": 32,
"wins": 2,
"peak_equity": 101258161.16350003,
- "max_drawdown": 0.14407614457311302,
+ "max_drawdown": 0.17624066867247043,
"last_exit": {
"086790": "2026-06-26",
"030000": "2026-07-16",
"403870": "2026-07-02",
"010120": "2026-06-25",
"298040": "2026-06-26",
- "095610": "2026-07-23",
+ "095610": "2026-07-28",
"003490": "2026-07-23",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -169,8 +148,9 @@
"214450": "2026-07-14",
"105560": "2026-07-20",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583347+09:00",
- "updated_at": "2026-07-27T15:28:06.121017+09:00"
+ "updated_at": "2026-07-28T15:28:01.056632+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v215/trades.jsonl b/agents/stock/workspace/state/sim/variants/v215/trades.jsonl
index 548e0cc..a8f38e4 100644
--- a/agents/stock/workspace/state/sim/variants/v215/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v215/trades.jsonl
@@ -85,3 +85,7 @@
{"ts": "2026-07-27T09:06:01.533952+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7720, "qty": 534, "cost": 4123098, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6890, "target": 9380, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,720 vs 5,416"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,502 / 5,416"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,502 / 4,893"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+88.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "4.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "258,673 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "4.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "78"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,720)"}]}
{"ts": "2026-07-27T12:50:05.857389+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 510, "cost": 4121418, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6890, "target": 9380, "signals": [{"label": "손절선", "ok": true, "detail": "6,890 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,380"}, {"label": "추세(10일선)", "ok": true, "detail": "5,452"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,997"}]}
{"ts": "2026-07-27T13:34:01.472063+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 7050, "qty": 1044, "proceeds": 7345848, "entry_price": 7896, "pnl": -898669, "pnl_pct": -10.71, "hold_from": "2026-07-27T09:06:01.533951+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "7,066 (현재 7,050)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,556"}, {"label": "추세(10일선)", "ok": true, "detail": "5,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:19.039799+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 498, "cost": 3376946, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.783208+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 396, "proceeds": 4711115, "entry_price": 14266, "pnl": -939212, "pnl_pct": -16.45, "hold_from": "2026-07-22T14:18:05.457812+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,984 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(10일선)", "ok": false, "detail": "12,769"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:04:02.772593+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 15, "proceeds": 1844396, "entry_price": 155500, "pnl": -488453, "pnl_pct": -20.77, "hold_from": "2026-07-24T09:00:09.727869+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "127,139 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 212,221"}, {"label": "추세(10일선)", "ok": false, "detail": "149,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 166,050"}]}
+{"ts": "2026-07-28T09:10:01.776214+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 475, "cost": 3373006, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v217/portfolio.json b/agents/stock/workspace/state/sim/variants/v217/portfolio.json
index d22f83f..58957ee 100644
--- a/agents/stock/workspace/state/sim/variants/v217/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v217/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 34204675.76000001,
+ "cash": 51098905.55800001,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.040447+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1797744.31883954,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4019229.444473994,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4444963.71074213,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.209787+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3627364.7637924887,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 649000,
- "entry_at": "2026-07-22T10:04:01.779224+09:00",
- "stop": 604000,
- "target": 784000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5382901.926437501,
- "last_add_price": 649000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559940.05276684,
"last_add_price": 92800
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.372323+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2906222.2199698295,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.380398+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5334981.613218492,
- "last_add_price": 127700
}
},
- "realized_pnl": -15299931.067000037,
- "closed_trades": 76,
+ "realized_pnl": -18179986.967000037,
+ "closed_trades": 81,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.1631874423999998,
+ "max_drawdown": 0.19091694441999987,
"last_exit": {
"086790": "2026-06-23",
"005930": "2026-06-23",
@@ -188,9 +104,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -199,8 +115,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "089970": "2026-07-27"
+ "089970": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621011+09:00",
- "updated_at": "2026-07-27T15:28:06.128126+09:00"
+ "updated_at": "2026-07-28T15:28:01.063168+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v217/trades.jsonl b/agents/stock/workspace/state/sim/variants/v217/trades.jsonl
index 6ba3228..0c6c701 100644
--- a/agents/stock/workspace/state/sim/variants/v217/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v217/trades.jsonl
@@ -175,3 +175,9 @@
{"ts": "2026-07-27T09:18:02.372340+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 385, "cost": 2903335, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T09:18:02.380407+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T12:50:05.863419+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:20.130164+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 649000, "pnl": -553842, "pnl_pct": -10.48, "hold_from": "2026-07-22T10:04:01.779224+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 784,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 686,971"}]}
+{"ts": "2026-07-28T09:00:21.065262+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.133932+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:21.065245+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.776911+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.040447+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.178002+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.372323+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.856624+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.380398+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v218/portfolio.json b/agents/stock/workspace/state/sim/variants/v218/portfolio.json
index 80b2886..9532400 100644
--- a/agents/stock/workspace/state/sim/variants/v218/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v218/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 33771044.98800001,
+ "cash": 50578135.040500015,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.055078+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1797744.31883954,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4019229.444473994,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4444963.71074213,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.213387+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3627364.7637924887,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.494054+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5384498.801437501,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3439647.5899249003,
"last_add_price": 97000
- },
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.748656+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5241215.86528125,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.388448+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2871565.238984282,
- "last_add_price": 8080
}
},
- "realized_pnl": -16153244.782000039,
- "closed_trades": 76,
+ "realized_pnl": -18942593.75450004,
+ "closed_trades": 81,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17288705011999994,
+ "max_drawdown": 0.20137464959499984,
"last_exit": {
"086790": "2026-06-23",
"005930": "2026-06-23",
@@ -188,9 +104,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -199,8 +115,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "089970": "2026-07-28",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583395+09:00",
- "updated_at": "2026-07-27T15:28:06.129879+09:00"
+ "updated_at": "2026-07-28T15:28:01.064851+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v218/trades.jsonl b/agents/stock/workspace/state/sim/variants/v218/trades.jsonl
index d73b70c..05d6a3d 100644
--- a/agents/stock/workspace/state/sim/variants/v218/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v218/trades.jsonl
@@ -176,3 +176,9 @@
{"ts": "2026-07-27T09:10:01.750139+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 339, "proceeds": 4070218, "entry_price": 14601, "pnl": -880115, "pnl_pct": -17.61, "hold_from": "2026-07-23T10:44:03.280658+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,097 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,112"}, {"label": "추세(60일선)", "ok": false, "detail": "12,651"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:18:02.388452+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 380, "cost": 2865630, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T12:50:05.866343+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:21.176641+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.494054+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:21.177287+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:22.131831+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.748656+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.152339+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:21.177282+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.780707+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.055078+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.309071+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.388448+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v223/portfolio.json b/agents/stock/workspace/state/sim/variants/v223/portfolio.json
index 537dfa5..27942a6 100644
--- a/agents/stock/workspace/state/sim/variants/v223/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v223/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37372010.43499999,
+ "cash": 49649838.86299999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.215189+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.768256+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,59 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
+ "095610": {
+ "code": "095610",
+ "name": "테스",
"sources": [
"auto"
],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.394527+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
+ "qty": 15,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:22.236421+09:00",
+ "stop": 100700,
+ "target": 207500,
+ "peak": 127400,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.395174+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
"tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
+ "tranche_value": 2001993.4324754681,
+ "last_add_price": 127400
}
},
- "realized_pnl": -15721134.592000036,
- "closed_trades": 78,
+ "realized_pnl": -17717767.012000035,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.16240209565000013,
+ "max_drawdown": 0.1874376113700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -168,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -180,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"089970": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621059+09:00",
- "updated_at": "2026-07-27T15:28:06.131603+09:00"
+ "updated_at": "2026-07-28T15:28:01.066504+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v223/trades.jsonl b/agents/stock/workspace/state/sim/variants/v223/trades.jsonl
index 97b6f74..be8bca3 100644
--- a/agents/stock/workspace/state/sim/variants/v223/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v223/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:18:02.395177+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T10:08:01.115915+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.061021+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T12:50:05.868169+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.236431+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 15, "cost": 1911287, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 207500, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:22.238414+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.768256+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.238867+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.157994+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.238861+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T11:04:04.318095+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.394527+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.860205+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.395174+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v224/portfolio.json b/agents/stock/workspace/state/sim/variants/v224/portfolio.json
index 7bc597b..0811a7a 100644
--- a/agents/stock/workspace/state/sim/variants/v224/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v224/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31724997.772999983,
+ "cash": 40660918.31349999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.216956+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.776807+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,80 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
},
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.767388+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.399867+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
"sources": [
"auto"
],
- "qty": 833,
- "entry_price": 6200,
+ "qty": 1649,
+ "entry_price": 6264.329896907217,
"entry_at": "2026-07-27T10:08:01.536340+09:00",
- "stop": 5696,
- "target": 7712,
- "peak": 6240,
+ "stop": 5749,
+ "target": 7811,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
- "tranches": 1,
+ "cur_price": 6240,
+ "tranches": 2,
"tranche_value": 5169643.818279762,
- "last_add_price": 6200
+ "last_add_price": 6330
}
},
- "realized_pnl": -16574448.307000037,
- "closed_trades": 78,
+ "realized_pnl": -18528380.999500036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17250622227000012,
+ "max_drawdown": 0.19781411686500014,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -201,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"024060": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "089970": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583512+09:00",
- "updated_at": "2026-07-27T15:28:06.133351+09:00"
+ "updated_at": "2026-07-28T15:28:01.068173+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v224/trades.jsonl b/agents/stock/workspace/state/sim/variants/v224/trades.jsonl
index f1cbc30..7f271dd 100644
--- a/agents/stock/workspace/state/sim/variants/v224/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v224/trades.jsonl
@@ -180,3 +180,9 @@
{"ts": "2026-07-27T10:08:01.118037+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.065580+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T10:08:01.536355+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6200, "qty": 833, "cost": 5165375, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 5696, "target": 7712, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "6,200 vs 5,619"}, {"label": "정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+25.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +39 · 기 -1 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.33% (환산) vs 평균 0.22% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": true, "detail": "72,213 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": true, "detail": "0.33% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "70"}]}
{"ts": "2026-07-27T12:50:05.869943+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.342465+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.776807+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.343282+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:22.343822+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.767388+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.163641+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.343276+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:08:03.996066+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6330, "qty": 816, "cost": 5166055, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5696, "target": 7712, "signals": [{"label": "손절선", "ok": true, "detail": "5,696 (현재 6,330)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,712"}, {"label": "추세(60일선)", "ok": true, "detail": "5,621"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +28 · 기 -3"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,329"}]}
+{"ts": "2026-07-28T11:04:04.324859+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.399867+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v229/portfolio.json b/agents/stock/workspace/state/sim/variants/v229/portfolio.json
index b75ea68..8120c7f 100644
--- a/agents/stock/workspace/state/sim/variants/v229/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v229/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 34190426.64499999,
+ "cash": 51084656.44299999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.069914+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.218730+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.783089+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.405004+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.405459+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
}
},
- "realized_pnl": -15362187.382000035,
- "closed_trades": 77,
+ "realized_pnl": -18194236.082000036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.1633299335500002,
+ "max_drawdown": 0.1910594355700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "089970": "2026-07-27"
+ "089970": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621103+09:00",
- "updated_at": "2026-07-27T15:28:06.135072+09:00"
+ "updated_at": "2026-07-28T15:28:01.069817+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v229/trades.jsonl b/agents/stock/workspace/state/sim/variants/v229/trades.jsonl
index e5bf9d4..149bf87 100644
--- a/agents/stock/workspace/state/sim/variants/v229/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v229/trades.jsonl
@@ -177,3 +177,9 @@
{"ts": "2026-07-27T09:18:02.405007+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 385, "cost": 2903335, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T09:18:02.405462+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T12:50:05.871735+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.447620+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.783089+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.449359+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.168901+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.449353+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.785741+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.069914+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.330117+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.405004+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.863524+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.405459+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v230/portfolio.json b/agents/stock/workspace/state/sim/variants/v230/portfolio.json
index e8e1402..5421945 100644
--- a/agents/stock/workspace/state/sim/variants/v230/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v230/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 33708788.672999986,
+ "cash": 50515878.72549999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.073760+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.220511+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.788365+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
- },
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.778984+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.409242+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
}
},
- "realized_pnl": -16215501.097000036,
- "closed_trades": 77,
+ "realized_pnl": -19004850.069500037,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17350961327000022,
+ "max_drawdown": 0.20199721274500013,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "089970": "2026-07-28",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583628+09:00",
- "updated_at": "2026-07-27T15:28:06.136804+09:00"
+ "updated_at": "2026-07-28T15:28:01.071489+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v230/trades.jsonl b/agents/stock/workspace/state/sim/variants/v230/trades.jsonl
index 0be3488..0f2bd55 100644
--- a/agents/stock/workspace/state/sim/variants/v230/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v230/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:10:01.779347+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 339, "proceeds": 4070218, "entry_price": 14601, "pnl": -880115, "pnl_pct": -17.61, "hold_from": "2026-07-23T10:44:03.316911+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,097 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,112"}, {"label": "추세(60일선)", "ok": false, "detail": "12,651"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:18:02.409245+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 380, "cost": 2865630, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T12:50:05.873530+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.556522+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.788365+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.557328+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:22.557734+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.778984+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.173069+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.557322+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.787464+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.073760+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.335818+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.409242+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v235/portfolio.json b/agents/stock/workspace/state/sim/variants/v235/portfolio.json
index 40e5f67..805baed 100644
--- a/agents/stock/workspace/state/sim/variants/v235/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v235/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37372010.43499999,
+ "cash": 49649838.86299999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.222302+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.793177+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,59 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
+ "095610": {
+ "code": "095610",
+ "name": "테스",
"sources": [
"auto"
],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.413097+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
+ "qty": 15,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:22.654170+09:00",
+ "stop": 100700,
+ "target": 207500,
+ "peak": 127400,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.413474+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
"tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
+ "tranche_value": 2001993.4324754681,
+ "last_add_price": 127400
}
},
- "realized_pnl": -15721134.592000036,
- "closed_trades": 78,
+ "realized_pnl": -17717767.012000035,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.16240209565000013,
+ "max_drawdown": 0.1874376113700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -168,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -180,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"089970": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621148+09:00",
- "updated_at": "2026-07-27T15:28:06.138511+09:00"
+ "updated_at": "2026-07-28T15:28:01.073137+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v235/trades.jsonl b/agents/stock/workspace/state/sim/variants/v235/trades.jsonl
index a76846e..90da436 100644
--- a/agents/stock/workspace/state/sim/variants/v235/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v235/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:18:02.413476+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T10:08:01.560617+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.077234+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T12:50:05.875340+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.654177+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 15, "cost": 1911287, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 207500, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:22.655942+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.793177+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.656446+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.176805+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.656440+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T11:04:04.340373+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.413097+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.866841+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.413474+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v236/portfolio.json b/agents/stock/workspace/state/sim/variants/v236/portfolio.json
index 8308b7c..ecb6a4c 100644
--- a/agents/stock/workspace/state/sim/variants/v236/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v236/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31724997.772999983,
+ "cash": 40660918.31349999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.224085+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.797452+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,80 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
},
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.788095+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.416912+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
"sources": [
"auto"
],
- "qty": 833,
- "entry_price": 6200,
+ "qty": 1649,
+ "entry_price": 6264.329896907217,
"entry_at": "2026-07-27T10:08:01.566451+09:00",
- "stop": 5696,
- "target": 7712,
- "peak": 6240,
+ "stop": 5749,
+ "target": 7811,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
- "tranches": 1,
+ "cur_price": 6240,
+ "tranches": 2,
"tranche_value": 5169643.818279762,
- "last_add_price": 6200
+ "last_add_price": 6330
}
},
- "realized_pnl": -16574448.307000037,
- "closed_trades": 78,
+ "realized_pnl": -18528380.999500036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17250622227000012,
+ "max_drawdown": 0.19781411686500014,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -201,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"024060": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "089970": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.583751+09:00",
- "updated_at": "2026-07-27T15:28:06.140235+09:00"
+ "updated_at": "2026-07-28T15:28:01.074797+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v236/trades.jsonl b/agents/stock/workspace/state/sim/variants/v236/trades.jsonl
index 0bf73b7..918488b 100644
--- a/agents/stock/workspace/state/sim/variants/v236/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v236/trades.jsonl
@@ -180,3 +180,9 @@
{"ts": "2026-07-27T10:08:01.565952+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.080751+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T10:08:01.566454+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6200, "qty": 833, "cost": 5165375, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 5696, "target": 7712, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "6,200 vs 5,619"}, {"label": "정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+25.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +39 · 기 -1 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.33% (환산) vs 평균 0.22% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": true, "detail": "72,213 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": true, "detail": "0.33% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "70"}]}
{"ts": "2026-07-27T12:50:05.877124+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.760475+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.797452+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.762234+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:22.762854+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.788095+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.180474+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.762227+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:08:04.003988+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6330, "qty": 816, "cost": 5166055, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5696, "target": 7712, "signals": [{"label": "손절선", "ok": true, "detail": "5,696 (현재 6,330)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,712"}, {"label": "추세(60일선)", "ok": true, "detail": "5,621"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +28 · 기 -3"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,329"}]}
+{"ts": "2026-07-28T11:04:04.344687+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.416912+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v265/portfolio.json b/agents/stock/workspace/state/sim/variants/v265/portfolio.json
index 747e350..68d2085 100644
--- a/agents/stock/workspace/state/sim/variants/v265/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v265/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37372010.43499999,
+ "cash": 49649838.86299999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.225869+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.801605+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,59 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
+ "095610": {
+ "code": "095610",
+ "name": "테스",
"sources": [
"auto"
],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.420411+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
+ "qty": 15,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:22.865306+09:00",
+ "stop": 100700,
+ "target": 207500,
+ "peak": 127400,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.420750+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
"tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
+ "tranche_value": 2001993.4324754681,
+ "last_add_price": 127400
}
},
- "realized_pnl": -15721134.592000036,
- "closed_trades": 78,
+ "realized_pnl": -17717767.012000035,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.16240209565000013,
+ "max_drawdown": 0.1874376113700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -168,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -180,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"089970": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621367+09:00",
- "updated_at": "2026-07-27T15:28:06.141980+09:00"
+ "updated_at": "2026-07-28T15:28:01.076428+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v265/trades.jsonl b/agents/stock/workspace/state/sim/variants/v265/trades.jsonl
index 7f9d5d2..cc6f6fd 100644
--- a/agents/stock/workspace/state/sim/variants/v265/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v265/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:18:02.420753+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T10:08:01.570642+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.083943+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T12:50:05.878930+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.865315+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 15, "cost": 1911287, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 207500, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:22.867304+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.801605+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.867797+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.183846+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.867792+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T11:04:04.348495+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.420411+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.870210+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.420750+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v266/portfolio.json b/agents/stock/workspace/state/sim/variants/v266/portfolio.json
index e01c95c..0f4e8de 100644
--- a/agents/stock/workspace/state/sim/variants/v266/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v266/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31724997.772999983,
+ "cash": 40660918.31349999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.227631+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.805429+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,80 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
},
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.795493+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.423980+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
"sources": [
"auto"
],
- "qty": 833,
- "entry_price": 6200,
+ "qty": 1649,
+ "entry_price": 6264.329896907217,
"entry_at": "2026-07-27T10:08:01.575360+09:00",
- "stop": 5696,
- "target": 7712,
- "peak": 6240,
+ "stop": 5749,
+ "target": 7811,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
- "tranches": 1,
+ "cur_price": 6240,
+ "tranches": 2,
"tranche_value": 5169643.818279762,
- "last_add_price": 6200
+ "last_add_price": 6330
}
},
- "realized_pnl": -16574448.307000037,
- "closed_trades": 78,
+ "realized_pnl": -18528380.999500036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17250622227000012,
+ "max_drawdown": 0.19781411686500014,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -201,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"024060": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "089970": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.584337+09:00",
- "updated_at": "2026-07-27T15:28:06.143710+09:00"
+ "updated_at": "2026-07-28T15:28:01.078112+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v266/trades.jsonl b/agents/stock/workspace/state/sim/variants/v266/trades.jsonl
index 4f78dd8..59dc597 100644
--- a/agents/stock/workspace/state/sim/variants/v266/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v266/trades.jsonl
@@ -180,3 +180,9 @@
{"ts": "2026-07-27T10:08:01.574924+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.087014+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T10:08:01.575363+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6200, "qty": 833, "cost": 5165375, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 5696, "target": 7712, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "6,200 vs 5,619"}, {"label": "정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+25.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +39 · 기 -1 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.33% (환산) vs 평균 0.22% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": true, "detail": "72,213 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": true, "detail": "0.33% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "70"}]}
{"ts": "2026-07-27T12:50:05.880712+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:22.972701+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.805429+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:22.973486+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:22.974001+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.795493+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.187123+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:22.973479+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:08:04.007703+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6330, "qty": 816, "cost": 5166055, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5696, "target": 7712, "signals": [{"label": "손절선", "ok": true, "detail": "5,696 (현재 6,330)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,712"}, {"label": "추세(60일선)", "ok": true, "detail": "5,621"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +28 · 기 -3"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,329"}]}
+{"ts": "2026-07-28T11:04:04.351959+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.423980+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v271/portfolio.json b/agents/stock/workspace/state/sim/variants/v271/portfolio.json
index 3bab3c5..578eae8 100644
--- a/agents/stock/workspace/state/sim/variants/v271/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v271/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37372010.43499999,
+ "cash": 49649838.86299999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.229400+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.808926+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,59 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
+ "095610": {
+ "code": "095610",
+ "name": "테스",
"sources": [
"auto"
],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.427159+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
+ "qty": 15,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:23.083067+09:00",
+ "stop": 100700,
+ "target": 207500,
+ "peak": 127400,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.427506+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
"tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
+ "tranche_value": 2001993.4324754681,
+ "last_add_price": 127400
}
},
- "realized_pnl": -15721134.592000036,
- "closed_trades": 78,
+ "realized_pnl": -17717767.012000035,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.16240209565000013,
+ "max_drawdown": 0.1874376113700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -168,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -180,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"089970": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621411+09:00",
- "updated_at": "2026-07-27T15:28:06.145452+09:00"
+ "updated_at": "2026-07-28T15:28:01.079764+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v271/trades.jsonl b/agents/stock/workspace/state/sim/variants/v271/trades.jsonl
index ab4506d..9807d96 100644
--- a/agents/stock/workspace/state/sim/variants/v271/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v271/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:18:02.427508+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T10:08:01.578962+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.089886+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T12:50:05.882518+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.083076+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 15, "cost": 1911287, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 207500, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:23.084857+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.808926+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.085298+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.190368+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.085292+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T11:04:04.355300+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.427159+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.873589+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.427506+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v272/portfolio.json b/agents/stock/workspace/state/sim/variants/v272/portfolio.json
index 2edf3b5..358c4ad 100644
--- a/agents/stock/workspace/state/sim/variants/v272/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v272/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31724997.772999983,
+ "cash": 40660918.31349999,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -55,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.231187+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.812223+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,80 +81,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
},
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.802338+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.430247+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
"sources": [
"auto"
],
- "qty": 833,
- "entry_price": 6200,
+ "qty": 1649,
+ "entry_price": 6264.329896907217,
"entry_at": "2026-07-27T10:08:01.583221+09:00",
- "stop": 5696,
- "target": 7712,
- "peak": 6240,
+ "stop": 5749,
+ "target": 7811,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
- "tranches": 1,
+ "cur_price": 6240,
+ "tranches": 2,
"tranche_value": 5169643.818279762,
- "last_add_price": 6200
+ "last_add_price": 6330
}
},
- "realized_pnl": -16574448.307000037,
- "closed_trades": 78,
+ "realized_pnl": -18528380.999500036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17250622227000012,
+ "max_drawdown": 0.19781411686500014,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +126,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -201,8 +138,10 @@
"105560": "2026-07-20",
"222800": "2026-07-21",
"024060": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "089970": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.584451+09:00",
- "updated_at": "2026-07-27T15:28:06.147189+09:00"
+ "updated_at": "2026-07-28T15:28:01.081472+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v272/trades.jsonl b/agents/stock/workspace/state/sim/variants/v272/trades.jsonl
index 62f6932..e4def1f 100644
--- a/agents/stock/workspace/state/sim/variants/v272/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v272/trades.jsonl
@@ -180,3 +180,9 @@
{"ts": "2026-07-27T10:08:01.582824+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 22, "proceeds": 3181584, "entry_price": 160909, "pnl": -358947, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.092720+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "123,940 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T10:08:01.583223+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6200, "qty": 833, "cost": 5165375, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 5696, "target": 7712, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "6,200 vs 5,619"}, {"label": "정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 하향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,706 / 5,619"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+25.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +39 · 기 -1 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.33% (환산) vs 평균 0.22% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": true, "detail": "72,213 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": true, "detail": "0.33% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "70"}]}
{"ts": "2026-07-27T12:50:05.884309+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.186501+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.812223+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.187331+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:23.187832+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.802338+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.193260+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.187316+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:08:04.011207+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6330, "qty": 816, "cost": 5166055, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5696, "target": 7712, "signals": [{"label": "손절선", "ok": true, "detail": "5,696 (현재 6,330)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,712"}, {"label": "추세(60일선)", "ok": true, "detail": "5,621"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +28 · 기 -3"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,329"}]}
+{"ts": "2026-07-28T11:04:04.358573+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.430247+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v277/portfolio.json b/agents/stock/workspace/state/sim/variants/v277/portfolio.json
index cfb4a5d..e34367b 100644
--- a/agents/stock/workspace/state/sim/variants/v277/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v277/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 34190426.64499999,
+ "cash": 51084656.44299999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.095509+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.232986+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.815539+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.433086+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.433374+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
}
},
- "realized_pnl": -15362187.382000035,
- "closed_trades": 77,
+ "realized_pnl": -18194236.082000036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.1633299335500002,
+ "max_drawdown": 0.1910594355700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "089970": "2026-07-27"
+ "089970": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621453+09:00",
- "updated_at": "2026-07-27T15:28:06.148905+09:00"
+ "updated_at": "2026-07-28T15:28:01.083126+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v277/trades.jsonl b/agents/stock/workspace/state/sim/variants/v277/trades.jsonl
index c6854d1..ccd3956 100644
--- a/agents/stock/workspace/state/sim/variants/v277/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v277/trades.jsonl
@@ -177,3 +177,9 @@
{"ts": "2026-07-27T09:18:02.433087+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 385, "cost": 2903335, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T09:18:02.433376+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T12:50:05.886102+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.282558+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.815539+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.283474+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.196057+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.283470+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.799213+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.095509+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.361578+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.433086+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.876948+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.433374+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v278/portfolio.json b/agents/stock/workspace/state/sim/variants/v278/portfolio.json
index acc6956..7b6dbaf 100644
--- a/agents/stock/workspace/state/sim/variants/v278/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v278/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 33708788.672999986,
+ "cash": 50515878.72549999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.098143+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.234767+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.818573+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
- },
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.808179+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.435998+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
}
},
- "realized_pnl": -16215501.097000036,
- "closed_trades": 77,
+ "realized_pnl": -19004850.069500037,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17350961327000022,
+ "max_drawdown": 0.20199721274500013,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "089970": "2026-07-28",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.584565+09:00",
- "updated_at": "2026-07-27T15:28:06.150646+09:00"
+ "updated_at": "2026-07-28T15:28:01.084781+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v278/trades.jsonl b/agents/stock/workspace/state/sim/variants/v278/trades.jsonl
index 161230f..0a96b63 100644
--- a/agents/stock/workspace/state/sim/variants/v278/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v278/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:10:01.808393+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 339, "proceeds": 4070218, "entry_price": 14601, "pnl": -880115, "pnl_pct": -17.61, "hold_from": "2026-07-23T10:44:03.353916+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,097 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,112"}, {"label": "추세(60일선)", "ok": false, "detail": "12,651"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:18:02.436000+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 380, "cost": 2865630, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T12:50:05.887893+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.380618+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.818573+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.381369+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:23.381798+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.808179+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.198714+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.381365+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.800932+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.098143+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.364335+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.435998+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v283/portfolio.json b/agents/stock/workspace/state/sim/variants/v283/portfolio.json
index a8eb636..aa8ab0b 100644
--- a/agents/stock/workspace/state/sim/variants/v283/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v283/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 34190426.64499999,
+ "cash": 51084656.44299999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.100684+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.236516+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.821495+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3559349.4158756477,
"last_add_price": 92800
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 744,
- "entry_price": 7800.564516129032,
- "entry_at": "2026-07-27T09:18:02.438736+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2905736.952006413,
- "last_add_price": 8080
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 41,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.438996+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5334092.001413708,
- "last_add_price": 127700
}
},
- "realized_pnl": -15362187.382000035,
- "closed_trades": 77,
+ "realized_pnl": -18194236.082000036,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.1633299335500002,
+ "max_drawdown": 0.1910594355700001,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "089970": "2026-07-27"
+ "089970": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-15T14:40:00.621497+09:00",
- "updated_at": "2026-07-27T15:28:06.152365+09:00"
+ "updated_at": "2026-07-28T15:28:01.086412+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v283/trades.jsonl b/agents/stock/workspace/state/sim/variants/v283/trades.jsonl
index 275f41e..31f8282 100644
--- a/agents/stock/workspace/state/sim/variants/v283/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v283/trades.jsonl
@@ -177,3 +177,9 @@
{"ts": "2026-07-27T09:18:02.438738+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 385, "cost": 2903335, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T09:18:02.438998+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 41, "cost": 5236485, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T12:50:05.889680+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 359, "cost": 2901155, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.478624+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.821495+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.480178+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.201409+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.480174+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.802654+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.100684+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.366987+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 744, "proceeds": 4893399, "entry_price": 7801, "pnl": -911091, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.438736+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.880299+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 41, "proceeds": 4804014, "entry_price": 127700, "pnl": -432471, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.438996+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v284/portfolio.json b/agents/stock/workspace/state/sim/variants/v284/portfolio.json
index 5ef7e54..c191d4f 100644
--- a/agents/stock/workspace/state/sim/variants/v284/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v284/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 33708788.672999986,
+ "cash": 50515878.72549999,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.103161+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1796390.6144710162,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4016046.033999526,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4441360.270202171,
"last_add_price": 134300
@@ -76,37 +55,16 @@
"entry_at": "2026-07-21T12:06:01.238289+09:00",
"stop": 308113,
"target": 476661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3624744.3180141365,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:04.824251+09:00",
- "stop": 604000,
- "target": 760000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 5380607.781749999,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3437136.177337996,
"last_add_price": 97000
- },
- "089970": {
- "code": "089970",
- "name": "브이엠",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.813835+09:00",
- "stop": 72899,
- "target": 72903,
- "peak": 76900,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 77,931 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 5237324.845593749,
- "last_add_price": 72900
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 735,
- "entry_price": 7800.816326530612,
- "entry_at": "2026-07-27T09:18:02.441423+09:00",
- "stop": 6694,
- "target": 11121,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2869445.0374707314,
- "last_add_price": 8080
}
},
- "realized_pnl": -16215501.097000036,
- "closed_trades": 77,
+ "realized_pnl": -19004850.069500037,
+ "closed_trades": 82,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.17350961327000022,
+ "max_drawdown": 0.20199721274500013,
"last_exit": {
"017670": "2026-06-19",
"086790": "2026-06-23",
@@ -189,9 +105,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -200,8 +116,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "089970": "2026-07-28",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-15T14:55:00.584680+09:00",
- "updated_at": "2026-07-27T15:28:06.154095+09:00"
+ "updated_at": "2026-07-28T15:28:01.088076+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v284/trades.jsonl b/agents/stock/workspace/state/sim/variants/v284/trades.jsonl
index d203ef3..a190590 100644
--- a/agents/stock/workspace/state/sim/variants/v284/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v284/trades.jsonl
@@ -178,3 +178,9 @@
{"ts": "2026-07-27T09:10:01.814036+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 339, "proceeds": 4070218, "entry_price": 14601, "pnl": -880115, "pnl_pct": -17.61, "hold_from": "2026-07-23T10:44:03.360797+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,097 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,112"}, {"label": "추세(60일선)", "ok": false, "detail": "12,651"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:18:02.441424+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7540, "qty": 380, "cost": 2865630, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6433, "target": 10860, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,510 vs 4,890"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,460 / 4,890"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+83.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "15.00% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": true, "detail": "931,680 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "15.00% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "75"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,510)"}]}
{"ts": "2026-07-27T12:50:05.891461+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 355, "cost": 2868830, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 10860, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,860"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
+{"ts": "2026-07-28T09:00:23.582183+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 8, "proceeds": 4638936, "entry_price": 643000, "pnl": -505835, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:04.824251+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 760,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:23.583849+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 38, "cost": 5096564, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": null, "detail": "게이트 끔(완화) · 실제 우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:23.584279+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 71, "proceeds": 4776068, "entry_price": 72900, "pnl": -400608, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.813835+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:02:05.203990+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 38, "proceeds": 4949330, "entry_price": 134100, "pnl": -147234, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.583844+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.804378+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.103161+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.369627+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 735, "proceeds": 4834205, "entry_price": 7801, "pnl": -900255, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.441423+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,121"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v296/portfolio.json b/agents/stock/workspace/state/sim/variants/v296/portfolio.json
index b154f99..2f3f2c4 100644
--- a/agents/stock/workspace/state/sim/variants/v296/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v296/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 28944792.298,
+ "cash": 40915146.733,
"initial": 100000000,
"positions": {
"055550": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 105500,
+ "cur_price": 101100,
"tranches": 2,
"tranche_value": 4371332.168068898,
"last_add_price": 105800
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 3448434.606240806,
"last_add_price": 130800
@@ -60,32 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,218 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 2,
"tranche_value": 1478967.7315768395,
"last_add_price": 158000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 65,
- "entry_price": 137923.07692307694,
- "entry_at": "2026-07-13T09:58:02.808427+09:00",
- "stop": 124495,
- "target": 178207,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4504679.249331353,
- "last_add_price": 139700
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -97,12 +76,12 @@
"entry_at": "2026-07-21T09:02:06.017875+09:00",
"stop": 293113,
"target": 451661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3417673.0117698065,
"last_add_price": 338000
@@ -123,32 +102,11 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 4194789.767858763,
"last_add_price": 105800
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 7,
- "entry_price": 647000,
- "entry_at": "2026-07-23T11:26:06.078328+09:00",
- "stop": 604000,
- "target": 776000,
- "peak": 661000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 706,121 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 4975770.733125,
- "last_add_price": 647000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -165,17 +123,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 1,
"tranche_value": 3055813.2324855765,
"last_add_price": 92800
}
},
- "realized_pnl": -21325849.417000026,
- "closed_trades": 60,
+ "realized_pnl": -22851519.08200003,
+ "closed_trades": 63,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.2116220770199999,
+ "max_drawdown": 0.2360835326699999,
"last_exit": {
"083450": "2026-07-06",
"278470": "2026-07-14",
@@ -201,7 +159,7 @@
"000660": "2026-07-20",
"005930": "2026-07-08",
"005935": "2026-07-16",
- "319660": "2026-07-09",
+ "319660": "2026-07-28",
"032830": "2026-07-20",
"402340": "2026-07-23",
"222800": "2026-07-16",
@@ -210,9 +168,10 @@
"353200": "2026-07-20",
"105560": "2026-07-20",
"089970": "2026-07-21",
- "034730": "2026-07-21",
- "252990": "2026-07-27"
+ "034730": "2026-07-28",
+ "252990": "2026-07-27",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-16T09:00:03.113416+09:00",
- "updated_at": "2026-07-27T15:28:06.155814+09:00"
+ "updated_at": "2026-07-28T15:28:01.089706+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v296/trades.jsonl b/agents/stock/workspace/state/sim/variants/v296/trades.jsonl
index 8ee1d09..da41184 100644
--- a/agents/stock/workspace/state/sim/variants/v296/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v296/trades.jsonl
@@ -145,3 +145,7 @@
{"ts": "2026-07-27T10:08:01.961728+09:00", "side": "BUY", "code": "161890", "name": "한국콜마", "price": 105800, "qty": 39, "cost": 4126819, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 92100, "target": 130900, "signals": [{"label": "손절선", "ok": true, "detail": "92,100 (현재 105,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 130,900"}, {"label": "추세(60일선)", "ok": true, "detail": "92,030"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +190 · 기 -144"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 105,533"}]}
{"ts": "2026-07-27T12:12:01.128834+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 12480, "qty": 142, "proceeds": 1768704, "entry_price": 15290, "pnl": -402801, "pnl_pct": -18.38, "hold_from": "2026-07-21T09:02:06.761608+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,498 (현재 12,490)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,665"}, {"label": "추세(60일선)", "ok": false, "detail": "13,258"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +54 · 기 -18"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 16,082"}]}
{"ts": "2026-07-27T12:12:01.551401+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 92800, "qty": 32, "cost": 2970045, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 80806, "target": 128781, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "92,700 vs 75,133"}, {"label": "정배열(5>60)", "ok": true, "detail": "83,900 / 75,133"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "83,900 / 75,133"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+58.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -27 · 기 +238 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+11%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.71% (환산) vs 평균 0.42% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 87,600"}, {"label": "거래량 급증", "ok": true, "detail": "653,997 (환산) vs 평균 392,182"}, {"label": "회전율 급증", "ok": true, "detail": "0.71% (환산) vs 평균 0.42%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T09:00:23.687050+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 7, "proceeds": 4059069, "entry_price": 647000, "pnl": -470610, "pnl_pct": -10.2, "hold_from": "2026-07-23T11:26:06.078328+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 776,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 684,971"}]}
+{"ts": "2026-07-28T09:00:23.688802+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 36, "cost": 4828324, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.206432+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 36, "proceeds": 4688839, "entry_price": 134100, "pnl": -139485, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:23.688793+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T13:08:07.026096+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124100, "qty": 65, "proceeds": 8050770, "entry_price": 137923, "pnl": -915574, "pnl_pct": -10.02, "hold_from": "2026-07-13T09:58:02.808427+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "124,495 (현재 124,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 178,207"}, {"label": "추세(60일선)", "ok": true, "detail": "118,467"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v298/portfolio.json b/agents/stock/workspace/state/sim/variants/v298/portfolio.json
index bcf8f81..c99d20d 100644
--- a/agents/stock/workspace/state/sim/variants/v298/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v298/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 3879845.8039999665,
+ "cash": 9572403.627999967,
"initial": 100000000,
"positions": {
"055550": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 105500,
+ "cur_price": 101100,
"tranches": 2,
"tranche_value": 5402457.352781249,
"last_add_price": 104900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5406063.780281249,
"last_add_price": 126200
@@ -60,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4939827.041843749,
"last_add_price": 130800
@@ -76,12 +76,12 @@
"entry_at": "2026-07-15T10:30:03.855057+09:00",
"stop": 5490,
"target": 7369,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5291435.503531248,
"last_add_price": 6020
@@ -97,12 +97,12 @@
"entry_at": "2026-07-21T09:02:06.772828+09:00",
"stop": 293113,
"target": 451661,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4843602.718718749,
"last_add_price": 338000
@@ -123,32 +123,11 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4883011.806843748,
"last_add_price": 84700
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 512,
- "entry_price": 14229.62890625,
- "entry_at": "2026-07-23T10:24:01.900022+09:00",
- "stop": 11186,
- "target": 23359,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "immediate",
- "entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3651136.6614530287,
- "last_add_price": 14510
- },
"095610": {
"code": "095610",
"name": "테스",
@@ -165,17 +144,17 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 3269474.5531265526,
"last_add_price": 155500
}
},
- "realized_pnl": -24934047.881500017,
- "closed_trades": 27,
+ "realized_pnl": -26528152.893000018,
+ "closed_trades": 28,
"wins": 1,
"peak_equity": 100289247.17,
- "max_drawdown": 0.23559543148677553,
+ "max_drawdown": 0.25907187734650977,
"last_exit": {
"278470": "2026-06-18",
"017670": "2026-06-19",
@@ -195,8 +174,9 @@
"475150": "2026-07-08",
"214450": "2026-07-15",
"089970": "2026-07-21",
- "095610": "2026-07-23"
+ "095610": "2026-07-23",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-16T09:00:03.113433+09:00",
- "updated_at": "2026-07-27T15:28:06.157469+09:00"
+ "updated_at": "2026-07-28T15:28:01.091321+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v298/trades.jsonl b/agents/stock/workspace/state/sim/variants/v298/trades.jsonl
index 20ceba9..9ac636c 100644
--- a/agents/stock/workspace/state/sim/variants/v298/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v298/trades.jsonl
@@ -78,3 +78,4 @@
{"ts": "2026-07-24T09:00:20.069189+09:00", "side": "SELL", "code": "240810", "name": "원익IPS", "price": 111800, "qty": 21, "proceeds": 2343222, "entry_price": 140000, "pnl": -597219, "pnl_pct": -20.14, "hold_from": "2026-07-15T14:40:02.718938+09:00", "reason": "추세·수급 이탈", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "100,836 (현재 113,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 257,491"}, {"label": "추세(10일선)", "ok": false, "detail": "123,880"}, {"label": "수급(외/기)", "ok": false, "detail": "외 -480 · 기 -206"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 150,323"}]}
{"ts": "2026-07-24T09:00:20.070965+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 155500, "qty": 21, "cost": 3265990, "path": "immediate", "reason": "조건 충족 — 즉시매수(눌림 안 기다림)", "stop": 117686, "target": 268942, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "155,000 vs 153,080"}, {"label": "정배열(5>10)", "ok": true, "detail": "171,640 / 153,080"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "171,640 / 99,700"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+44.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +200 · 기 -454 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+27%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "3.77% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "730,327 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "3.77% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "59"}, {"label": "눌림목 도달", "ok": false, "detail": "지정가 153,080 (현재 155,000)"}]}
{"ts": "2026-07-24T09:28:05.015566+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 251, "cost": 3642556, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 10973, "target": 22922, "signals": [{"label": "손절선", "ok": true, "detail": "10,973 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,922"}, {"label": "추세(10일선)", "ok": true, "detail": "13,113"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,721"}]}
+{"ts": "2026-07-28T10:10:00.993124+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11140, "qty": 512, "proceeds": 5692558, "entry_price": 14230, "pnl": -1594105, "pnl_pct": -21.71, "hold_from": "2026-07-23T10:24:01.900022+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,186 (현재 11,180)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,359"}, {"label": "추세(10일선)", "ok": false, "detail": "12,691"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v299/portfolio.json b/agents/stock/workspace/state/sim/variants/v299/portfolio.json
index b5144c0..51952b8 100644
--- a/agents/stock/workspace/state/sim/variants/v299/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v299/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 4763369.805499969,
+ "cash": 13412811.965499967,
"initial": 100000000,
"positions": {
"055550": {
@@ -18,32 +18,11 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 105500,
+ "cur_price": 101100,
"tranches": 2,
"tranche_value": 5666061.52171875,
"last_add_price": 99700
},
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 36,
- "entry_price": 160222.22222222222,
- "entry_at": "2026-07-07T10:50:08.248202+09:00",
- "stop": 123253,
- "target": 271129,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 157,257 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 3003806.097814414,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4789675.2297187485,
"last_add_price": 130800
@@ -76,12 +55,12 @@
"entry_at": "2026-07-14T09:40:05.108687+09:00",
"stop": 5498,
"target": 7383,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 4852421.820656248,
"last_add_price": 6030
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 4978530.748468748,
"last_add_price": 106600
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 69,
- "entry_price": 139823.1884057971,
- "entry_at": "2026-07-15T14:34:04.973321+09:00",
- "stop": 126081,
- "target": 181050,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "immediate",
- "entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4950711.192343748,
- "last_add_price": 141700
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -139,12 +97,12 @@
"entry_at": "2026-07-21T09:02:06.779465+09:00",
"stop": 292918,
"target": 451467,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4623660.577343748,
"last_add_price": 338000
@@ -165,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,973 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 3262391.4453780535,
"last_add_price": 13510
+ },
+ "078930": {
+ "code": "078930",
+ "name": "GS",
+ "sources": [
+ "auto"
+ ],
+ "qty": 49,
+ "entry_price": 89800,
+ "entry_at": "2026-07-28T09:58:01.791914+09:00",
+ "stop": 78664,
+ "target": 123209,
+ "peak": 90000,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "breakout",
+ "entry_reason": "거래량·회전율 동반 전고점 돌파",
+ "cur_price": 87200,
+ "tranches": 1,
+ "tranche_value": 4476141.774093748,
+ "last_add_price": 89800
}
},
- "realized_pnl": -27465536.05500003,
- "closed_trades": 32,
+ "realized_pnl": -29833346.235000033,
+ "closed_trades": 34,
"wins": 1,
"peak_equity": 102093754.3635,
- "max_drawdown": 0.2828938269148975,
+ "max_drawdown": 0.309993521105291,
"last_exit": {
"036010": "2026-06-17",
"017670": "2026-06-19",
@@ -199,8 +178,10 @@
"003490": "2026-07-13",
"214450": "2026-07-15",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-16T09:00:03.113489+09:00",
- "updated_at": "2026-07-27T15:28:06.159159+09:00"
+ "updated_at": "2026-07-28T15:28:01.092928+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v299/trades.jsonl b/agents/stock/workspace/state/sim/variants/v299/trades.jsonl
index 78e8ee1..58ee70d 100644
--- a/agents/stock/workspace/state/sim/variants/v299/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v299/trades.jsonl
@@ -93,3 +93,6 @@
{"ts": "2026-07-24T09:00:20.220153+09:00", "side": "BUY", "code": "024060", "name": "흥구석유", "price": 15070, "qty": 311, "cost": 4687473, "path": "immediate", "reason": "조건 충족 — 즉시매수(눌림 안 기다림)", "stop": 12763, "target": 21990, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,870 vs 10,928"}, {"label": "정배열(5>20)", "ok": true, "detail": "13,092 / 10,928"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "13,092 / 12,682"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+50.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +208 · 기 -2 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.00% (환산) vs 평균 31.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 13,990"}, {"label": "거래량 급증", "ok": false, "detail": "0 (환산) vs 평균 4,720,532"}, {"label": "회전율 급증", "ok": false, "detail": "0.00% (환산) vs 평균 31.47%"}, {"label": "RSI", "ok": true, "detail": "65"}, {"label": "눌림목 도달", "ok": false, "detail": "지정가 12,557 (현재 13,870)"}]}
{"ts": "2026-07-27T09:04:06.845102+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 311, "proceeds": 3786801, "entry_price": 15070, "pnl": -900672, "pnl_pct": -19.04, "hold_from": "2026-07-24T09:00:20.220139+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,763 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 21,990"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,697"}]}
{"ts": "2026-07-27T09:04:07.177360+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13510, "qty": 241, "cost": 3256398, "path": "pullback", "reason": "눌림목 지정가 13,973 도달", "stop": 10457, "target": 22669, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,510 vs 12,750"}, {"label": "정배열(5>20)", "ok": true, "detail": "14,450 / 12,750"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,450 / 13,274"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+3.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.20% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "120,893 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.20% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "51"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,973 (현재 13,510)"}]}
+{"ts": "2026-07-28T09:08:04.424194+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 122100, "qty": 36, "proceeds": 4387029, "entry_price": 160222, "pnl": -1381837, "pnl_pct": -23.79, "hold_from": "2026-07-07T10:50:08.248202+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,253 (현재 122,200)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,129"}, {"label": "추세(20일선)", "ok": false, "detail": "134,525"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:58:01.791916+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 89800, "qty": 49, "cost": 4400860, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 78664, "target": 123209, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "89,800 vs 75,150"}, {"label": "정배열(5>20)", "ok": true, "detail": "83,320 / 75,150"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "83,320 / 75,085"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+58.8%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -2 · 기 +234 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+15%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.65% (환산) vs 평균 0.42% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 87,600"}, {"label": "거래량 급증", "ok": true, "detail": "597,467 (환산) vs 평균 392,182"}, {"label": "회전율 급증", "ok": true, "detail": "0.65% (환산) vs 평균 0.42%"}, {"label": "RSI", "ok": true, "detail": "69"}]}
+{"ts": "2026-07-28T11:04:04.604965+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 125800, "qty": 69, "proceeds": 8663274, "entry_price": 139823, "pnl": -985974, "pnl_pct": -10.03, "hold_from": "2026-07-15T14:34:04.973321+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "126,081 (현재 126,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 181,050"}, {"label": "추세(20일선)", "ok": true, "detail": "118,545"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v300/portfolio.json b/agents/stock/workspace/state/sim/variants/v300/portfolio.json
index 98b266f..75ef36e 100644
--- a/agents/stock/workspace/state/sim/variants/v300/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v300/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 21597363.61300002,
+ "cash": 29489526.718000017,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 69,
- "entry_price": 132575.36231884058,
- "entry_at": "2026-07-10T09:26:06.520140+09:00",
- "stop": 122922,
- "target": 161535,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4611511.948906251,
- "last_add_price": 134300
- },
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 13,
- "entry_price": 647000.0,
- "entry_at": "2026-07-22T09:00:22.724425+09:00",
- "stop": 604000,
- "target": 776000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 2,
- "tranche_value": 4463507.707843752,
- "last_add_price": 668000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -60,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4400054.8290937515,
"last_add_price": 91400
@@ -76,37 +34,16 @@
"entry_at": "2026-07-23T13:16:01.458017+09:00",
"stop": 336315,
"target": 470012,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4371310.515343752,
"last_add_price": 376000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 304,
- "entry_price": 13340,
- "entry_at": "2026-07-24T11:12:01.752999+09:00",
- "stop": 11047,
- "target": 20219,
- "peak": 13730,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,320 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 4065274.10098984,
- "last_add_price": 13340
- },
"095610": {
"code": "095610",
"name": "테스",
@@ -123,7 +60,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 3134120.2145636897,
"last_add_price": 137500
@@ -144,17 +81,59 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 4306811.880937502,
"last_add_price": 19240
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 1194,
+ "entry_price": 6936.247906197655,
+ "entry_at": "2026-07-28T09:00:24.017557+09:00",
+ "stop": 6040,
+ "target": 9626,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 4143575.7383125015,
+ "last_add_price": 7100
+ },
+ "475150": {
+ "code": "475150",
+ "name": "SK이터닉스",
+ "sources": [
+ "watch"
+ ],
+ "qty": 56,
+ "entry_price": 54200,
+ "entry_at": "2026-07-28T09:12:01.891397+09:00",
+ "stop": 42500,
+ "target": 89300,
+ "peak": 54200,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 66,338 도달",
+ "cur_price": 48950,
+ "tranches": 1,
+ "tranche_value": 3050627.324983078,
+ "last_add_price": 54200
}
},
- "realized_pnl": -32243333.530000024,
- "closed_trades": 46,
+ "realized_pnl": -34649694.972000025,
+ "closed_trades": 50,
"wins": 1,
"peak_equity": 100401992.91950001,
- "max_drawdown": 0.32892264731217297,
+ "max_drawdown": 0.3710339697775543,
"last_exit": {
"204320": "2026-06-19",
"003490": "2026-07-09",
@@ -171,13 +150,15 @@
"402340": "2026-07-07",
"011070": "2026-07-08",
"055550": "2026-07-20",
- "034730": "2026-07-15",
+ "034730": "2026-07-28",
"032830": "2026-07-09",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"105560": "2026-07-20",
"095610": "2026-07-24",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-16T10:45:02.136776+09:00",
- "updated_at": "2026-07-27T15:28:06.165500+09:00"
+ "updated_at": "2026-07-28T15:28:01.099025+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v300/trades.jsonl b/agents/stock/workspace/state/sim/variants/v300/trades.jsonl
index 18426f6..844693b 100644
--- a/agents/stock/workspace/state/sim/variants/v300/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v300/trades.jsonl
@@ -120,3 +120,11 @@
{"ts": "2026-07-27T09:18:02.798843+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19240, "qty": 223, "cost": 4291164, "path": "pullback", "reason": "눌림목 지정가 19,673 도달", "stop": 18163, "target": 22470, "signals": [{"label": "추세(40일선 위)", "ok": true, "detail": "19,240 vs 19,211"}, {"label": "정배열(5>40)", "ok": true, "detail": "19,634 / 19,211"}, {"label": "추세 기울기(40일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,634 / 19,363"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+31%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.23% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "263,527 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.23% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "51"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 19,673 (현재 19,240)"}]}
{"ts": "2026-07-27T09:34:01.310634+09:00", "side": "BUY", "code": "214450", "name": "파마리서치", "price": 376000, "qty": 11, "cost": 4136620, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 331540, "target": 461380, "signals": [{"label": "손절선", "ok": true, "detail": "331,540 (현재 376,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 461,380"}, {"label": "추세(40일선)", "ok": true, "detail": "307,150"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +11 · 기 +73"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 375,141"}]}
{"ts": "2026-07-27T13:38:04.307938+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 1119, "proceeds": 7683707, "entry_price": 7736, "pnl": -974401, "pnl_pct": -11.07, "hold_from": "2026-07-27T09:00:18.343146+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,906 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,226"}, {"label": "추세(40일선)", "ok": true, "detail": "4,763"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:24.014889+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 13, "proceeds": 7538272, "entry_price": 647000, "pnl": -873990, "pnl_pct": -10.2, "hold_from": "2026-07-22T09:00:22.724425+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 776,000"}, {"label": "추세(40일선)", "ok": false, "detail": "612,088"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:24.015633+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 30, "cost": 4023603, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(40일선 위)", "ok": true, "detail": "133,100 vs 126,860"}, {"label": "정배열(5>40)", "ok": true, "detail": "164,260 / 126,860"}, {"label": "추세 기울기(40일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:00:24.017560+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 611, "cost": 4143201, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 9373, "signals": [{"label": "추세(40일선 위)", "ok": true, "detail": "7,050 vs 4,767"}, {"label": "정배열(5>40)", "ok": true, "detail": "6,368 / 4,767"}, {"label": "추세 기울기(40일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:05.216972+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 30, "proceeds": 3907366, "entry_price": 134100, "pnl": -116238, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:24.015629+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(40일선)", "ok": true, "detail": "126,798"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:10:01.817940+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 583, "cost": 4139921, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 9373, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,373"}, {"label": "추세(40일선)", "ok": true, "detail": "4,768"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:12:01.891399+09:00", "side": "BUY", "code": "475150", "name": "SK이터닉스", "price": 54200, "qty": 56, "cost": 3035655, "path": "pullback", "reason": "눌림목 지정가 66,338 도달", "stop": 42500, "target": 89300, "signals": [{"label": "추세(40일선 위)", "ok": true, "detail": "54,300 vs 47,660"}, {"label": "정배열(5>40)", "ok": true, "detail": "66,740 / 47,660"}, {"label": "추세 기울기(40일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "66,740 / 47,974"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+49.9%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +1,124 · 기 +466 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+5%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "22.63% (환산) vs 평균 21.75% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 87,700"}, {"label": "거래량 급증", "ok": false, "detail": "7,708,633 (환산) vs 평균 7,408,194"}, {"label": "회전율 급증", "ok": false, "detail": "22.63% (환산) vs 평균 21.75%"}, {"label": "RSI", "ok": true, "detail": "51"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 66,338 (현재 54,300)"}]}
+{"ts": "2026-07-28T10:54:01.984288+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10960, "qty": 304, "proceeds": 3325343, "entry_price": 13340, "pnl": -730625, "pnl_pct": -17.84, "hold_from": "2026-07-24T11:12:01.752999+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,047 (현재 10,970)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,219"}, {"label": "추세(40일선)", "ok": false, "detail": "13,261"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,188"}]}
+{"ts": "2026-07-28T13:34:05.046294+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 122900, "qty": 69, "proceeds": 8463564, "entry_price": 132575, "pnl": -685508, "pnl_pct": -7.3, "hold_from": "2026-07-10T09:26:06.520140+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "122,922 (현재 122,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 161,535"}, {"label": "추세(40일선)", "ok": true, "detail": "121,352"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v301/portfolio.json b/agents/stock/workspace/state/sim/variants/v301/portfolio.json
index fa07ce0..e4c4b28 100644
--- a/agents/stock/workspace/state/sim/variants/v301/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v301/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 18941190.10350001,
+ "cash": 30351296.923500005,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4497110.087925,
"last_add_price": 130800
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4524049.632675001,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-14T09:40:05.116357+09:00",
"stop": 5498,
"target": 7383,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 4441317.796325,
"last_add_price": 6030
@@ -76,12 +76,12 @@
"entry_at": "2026-07-16T09:04:04.870738+09:00",
"stop": 305169,
"target": 472574,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4537990.22125,
"last_add_price": 353000
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4354026.517550001,
"last_add_price": 91400
@@ -123,32 +123,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 4438631.677600001,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 1140,
- "entry_price": 7683.824561403509,
- "entry_at": "2026-07-27T09:02:07.452641+09:00",
- "stop": 6577,
- "target": 11004,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 4384197.42035,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -165,38 +144,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 4055235.361895997,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.818142+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 4341185.610925001,
- "last_add_price": 127700
}
},
- "realized_pnl": -15668252.784000013,
- "closed_trades": 16,
+ "realized_pnl": -17233752.01300001,
+ "closed_trades": 18,
"wins": 0,
"peak_equity": 100162411.55350003,
- "max_drawdown": 0.1530501433844954,
+ "max_drawdown": 0.17956057228507855,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -207,8 +165,10 @@
"093370": "2026-07-20",
"214450": "2026-07-15",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-16T14:30:00.114884+09:00",
- "updated_at": "2026-07-27T15:28:06.167131+09:00"
+ "updated_at": "2026-07-28T15:28:01.100661+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v301/trades.jsonl b/agents/stock/workspace/state/sim/variants/v301/trades.jsonl
index 8017e16..55ee8ce 100644
--- a/agents/stock/workspace/state/sim/variants/v301/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v301/trades.jsonl
@@ -54,3 +54,5 @@
{"ts": "2026-07-27T09:10:01.831206+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 597, "proceeds": 7167905, "entry_price": 14585, "pnl": -1540861, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.566042+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,097"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.600952+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 308, "cost": 4050808, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 21580, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:18:02.818146+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 33, "cost": 4214732, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,400 vs 117,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "118,940 / 117,350"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.824658+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 1140, "proceeds": 7543462, "entry_price": 7684, "pnl": -1217412, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:07.452641+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,004"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.894499+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 33, "proceeds": 3866645, "entry_price": 127700, "pnl": -348087, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.818142+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(10일선)", "ok": true, "detail": "116,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v302/portfolio.json b/agents/stock/workspace/state/sim/variants/v302/portfolio.json
index 20c48bf..c9f29f2 100644
--- a/agents/stock/workspace/state/sim/variants/v302/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v302/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 14192007.670000013,
+ "cash": 38762850.91250002,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.154896+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 3546990.802202721,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,32 +18,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4360729.7882,
"last_add_price": 130800
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 67,
- "entry_price": 136574.62686567163,
- "entry_at": "2026-07-13T09:42:03.137984+09:00",
- "stop": 123347,
- "target": 176259,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4639656.985925001,
- "last_add_price": 138300
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
@@ -76,12 +34,12 @@
"entry_at": "2026-07-14T09:40:05.118058+09:00",
"stop": 5498,
"target": 7383,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 4412981.9396750005,
"last_add_price": 6030
@@ -97,12 +55,12 @@
"entry_at": "2026-07-16T09:04:04.880674+09:00",
"stop": 305169,
"target": 472574,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4542977.951950001,
"last_add_price": 353000
@@ -123,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4183455.6171500003,
"last_add_price": 91400
@@ -144,59 +102,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 4191774.1235750006,
"last_add_price": 19100
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 1085,
- "entry_price": 7683.714285714285,
- "entry_at": "2026-07-27T09:02:07.460366+09:00",
- "stop": 6577,
- "target": 11004,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 4170552.751825,
- "last_add_price": 7910
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 32,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.824202+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 4131594.312500001,
- "last_add_price": 127700
}
},
- "realized_pnl": -18597392.252000023,
- "closed_trades": 24,
+ "realized_pnl": -22684577.069000024,
+ "closed_trades": 28,
"wins": 1,
"peak_equity": 100864171.466,
- "max_drawdown": 0.19849648795012279,
+ "max_drawdown": 0.22671867964739514,
"last_exit": {
"030000": "2026-07-24",
"003490": "2026-07-07",
@@ -209,8 +125,12 @@
"214450": "2026-07-15",
"105560": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-16T14:30:00.114893+09:00",
- "updated_at": "2026-07-27T15:28:06.168806+09:00"
+ "updated_at": "2026-07-28T15:28:01.102294+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v302/trades.jsonl b/agents/stock/workspace/state/sim/variants/v302/trades.jsonl
index fdf80ff..ee4d516 100644
--- a/agents/stock/workspace/state/sim/variants/v302/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v302/trades.jsonl
@@ -73,3 +73,7 @@
{"ts": "2026-07-27T09:18:02.824206+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 32, "cost": 4087013, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,400 vs 113,925"}, {"label": "정배열(5>20)", "ok": true, "detail": "118,940 / 113,925"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T09:30:01.246862+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 149900, "qty": 27, "cost": 4047907, "path": "pullback", "reason": "눌림목 지정가 157,993 도달", "stop": 149899, "target": 149903, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "149,800 vs 149,280"}, {"label": "정배열(5>20)", "ok": true, "detail": "167,600 / 149,280"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "167,600 / 113,055"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+61.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +274 · 기 -315 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+22%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.69% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "780,273 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "2.69% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "52"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 157,993 (현재 149,800)"}]}
{"ts": "2026-07-27T09:32:01.474572+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 27, "proceeds": 4001681, "entry_price": 149900, "pnl": -46226, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.246861+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,903"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
+{"ts": "2026-07-28T09:04:02.818718+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 44, "proceeds": 5410229, "entry_price": 160909, "pnl": -1670833, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.154896+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(20일선)", "ok": false, "detail": "134,595"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:22:00.826323+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 1085, "proceeds": 7179523, "entry_price": 7684, "pnl": -1158558, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:07.460366+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,004"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.896140+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 32, "proceeds": 3749474, "entry_price": 127700, "pnl": -337539, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.824202+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(20일선)", "ok": true, "detail": "113,425"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
+{"ts": "2026-07-28T13:26:04.864581+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123100, "qty": 67, "proceeds": 8231617, "entry_price": 136575, "pnl": -920256, "pnl_pct": -9.87, "hold_from": "2026-07-13T09:42:03.137984+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,347 (현재 123,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 176,259"}, {"label": "추세(20일선)", "ok": true, "detail": "118,400"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v303/portfolio.json b/agents/stock/workspace/state/sim/variants/v303/portfolio.json
index f0e8277..080160c 100644
--- a/agents/stock/workspace/state/sim/variants/v303/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v303/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 36010627.81050002,
+ "cash": 51857010.02500002,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:08.157119+09:00",
- "stop": 123940,
- "target": 271816,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1788561.3745409653,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 3561275.575471075,
"last_add_price": 130800
@@ -60,32 +39,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4425433.834195267,
"last_add_price": 134300
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 553000,
- "entry_at": "2026-07-20T09:00:34.059389+09:00",
- "stop": 561800,
- "target": 553003,
- "peak": 668000,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 697,871 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 4450311.437725,
- "last_add_price": 553000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -97,12 +55,12 @@
"entry_at": "2026-07-21T09:20:05.279235+09:00",
"stop": 302791,
"target": 467626,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3616873.7658032966,
"last_add_price": 349500
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3542431.9465922415,
"last_add_price": 92800
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 751,
- "entry_price": 7736.1517976031955,
- "entry_at": "2026-07-27T09:04:07.596674+09:00",
- "stop": 6629,
- "target": 11056,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2907703.3794973358,
- "last_add_price": 7910
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:02.829340+09:00",
- "stop": 117473,
- "target": 158380,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 4268023.496275001,
- "last_add_price": 127700
}
},
- "realized_pnl": -16405985.752000034,
- "closed_trades": 81,
- "wins": 1,
+ "realized_pnl": -18550251.730000034,
+ "closed_trades": 86,
+ "wins": 2,
"peak_equity": 100085511.5725,
- "max_drawdown": 0.1622074314946169,
+ "max_drawdown": 0.1903772209197096,
"last_exit": {
"017670": "2026-06-19",
"204320": "2026-06-19",
@@ -190,9 +106,9 @@
"240810": "2026-07-24",
"009150": "2026-07-27",
"093370": "2026-07-20",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"402340": "2026-07-23",
"004170": "2026-07-23",
@@ -201,8 +117,11 @@
"055550": "2026-07-20",
"105560": "2026-07-20",
"222800": "2026-07-21",
- "089970": "2026-07-27"
+ "089970": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-16T14:30:00.114901+09:00",
- "updated_at": "2026-07-27T15:28:06.170547+09:00"
+ "updated_at": "2026-07-28T15:28:01.103945+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v303/trades.jsonl b/agents/stock/workspace/state/sim/variants/v303/trades.jsonl
index e180991..81b4872 100644
--- a/agents/stock/workspace/state/sim/variants/v303/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v303/trades.jsonl
@@ -186,3 +186,9 @@
{"ts": "2026-07-27T09:04:07.596691+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7570, "qty": 384, "cost": 2907316, "path": "pullback", "reason": "눌림목 지정가 7,630 도달", "stop": 6463, "target": 10890, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,570 vs 4,891"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,472 / 4,891"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,472 / 4,891"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+84.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.30% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "142,713 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "2.30% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "76"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,630 (현재 7,570)"}]}
{"ts": "2026-07-27T09:08:02.988777+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 367, "cost": 2903405, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6463, "target": 10890, "signals": [{"label": "손절선", "ok": true, "detail": "6,463 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,890"}, {"label": "추세(60일선)", "ok": true, "detail": "4,896"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,847"}]}
{"ts": "2026-07-27T09:18:02.829342+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 33, "cost": 4214732, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117473, "target": 158380, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T09:00:24.326455+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 31, "cost": 4157724, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.224404+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 31, "proceeds": 4037611, "entry_price": 134100, "pnl": -120112, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:24.326444+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:04:02.820628+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:08.157119+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 271,816"}, {"label": "추세(60일선)", "ok": true, "detail": "99,177"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:24:02.999198+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 558000, "qty": 8, "proceeds": 4455295, "entry_price": 553000, "pnl": 30632, "pnl_pct": 0.9, "hold_from": "2026-07-20T09:00:34.059389+09:00", "reason": "트레일링 익절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "561,800 (현재 559,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": true, "detail": "527,517"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:04:04.706210+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 751, "proceeds": 4939439, "entry_price": 7736, "pnl": -871282, "pnl_pct": -14.82, "hold_from": "2026-07-27T09:04:07.596674+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,629 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,056"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:02:00.897885+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 33, "proceeds": 3866645, "entry_price": 127700, "pnl": -348087, "pnl_pct": -8.07, "hold_from": "2026-07-27T09:18:02.829340+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,473 (현재 117,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 158,380"}, {"label": "추세(60일선)", "ok": true, "detail": "109,975"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,353"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v304/portfolio.json b/agents/stock/workspace/state/sim/variants/v304/portfolio.json
index 2360e98..9e03f17 100644
--- a/agents/stock/workspace/state/sim/variants/v304/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v304/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 47146066.49149999,
+ "cash": 57032137.99849999,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 42,
- "entry_price": 124200.0,
- "entry_at": "2026-07-02T10:18:05.076562+09:00",
- "stop": 111000,
- "target": 144000,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 2655772.3181489734,
- "last_add_price": 126200
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 1651331.990927872,
"last_add_price": 136900
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 172900,
+ "cur_price": 165900,
"tranches": 2,
"tranche_value": 1761968.1579426918,
"last_add_price": 188300
@@ -81,32 +60,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 105500,
+ "cur_price": 101100,
"tranches": 1,
"tranche_value": 1874414.018276448,
"last_add_price": 110600
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 6,
- "entry_price": 553000,
- "entry_at": "2026-07-20T09:00:34.570463+09:00",
- "stop": 561800,
- "target": 553002,
- "peak": 668000,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 736,914 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 3830988.8754375004,
- "last_add_price": 553000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -118,12 +76,12 @@
"entry_at": "2026-07-21T10:34:01.219132+09:00",
"stop": 299382,
"target": 432177,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 1541443.3087531894,
"last_add_price": 358500
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 2,
"tranche_value": 860620.9881350341,
"last_add_price": 14510
@@ -165,7 +123,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 756440.8308644168,
"last_add_price": 158100
@@ -186,7 +144,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,784 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 3422505.993388654,
"last_add_price": 102600
@@ -207,7 +165,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 1493175.7536818886,
"last_add_price": 92800
@@ -228,38 +186,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 25,331 도달",
- "cur_price": 26500,
+ "cur_price": 25150,
"tranches": 2,
"tranche_value": 3374000.0988983824,
"last_add_price": 26750
},
- "089970": {
- "code": "089970",
- "name": "브이엠",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 51,
- "entry_price": 72900,
- "entry_at": "2026-07-27T09:10:01.837105+09:00",
- "stop": 72899,
- "target": 72902,
- "peak": 76900,
- "trailing_on": true,
+ "qty": 301,
+ "entry_price": 6936.279069767442,
+ "entry_at": "2026-07-28T09:00:25.383287+09:00",
+ "stop": 5442,
+ "target": 9178,
+ "peak": 7780,
+ "trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
- "entry_reason": "눌림목 지정가 84,387 도달",
- "cur_price": 74800,
- "tranches": 1,
- "tranche_value": 3760773.924020833,
- "last_add_price": 72900
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 1047578.3829753122,
+ "last_add_price": 7100
}
},
- "realized_pnl": -10696040.773000041,
- "closed_trades": 124,
- "wins": 1,
+ "realized_pnl": -10975973.938000042,
+ "closed_trades": 127,
+ "wins": 2,
"peak_equity": 100036582.48,
- "max_drawdown": 0.10334085523730112,
+ "max_drawdown": 0.12803040811655697,
"last_exit": {
"017670": "2026-06-23",
"178320": "2026-06-23",
@@ -270,7 +228,7 @@
"064400": "2026-06-24",
"010120": "2026-07-08",
"403870": "2026-07-07",
- "086790": "2026-06-26",
+ "086790": "2026-07-28",
"011070": "2026-07-24",
"005935": "2026-07-02",
"009150": "2026-07-27",
@@ -279,15 +237,16 @@
"084370": "2026-07-15",
"240810": "2026-07-24",
"402340": "2026-07-23",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"004170": "2026-07-23",
"319660": "2026-07-27",
"032830": "2026-07-27",
"028260": "2026-07-23",
"003490": "2026-07-23",
"214450": "2026-07-15",
- "095610": "2026-07-20"
+ "095610": "2026-07-20",
+ "089970": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885275+09:00",
- "updated_at": "2026-07-27T15:28:06.173538+09:00"
+ "updated_at": "2026-07-28T15:28:01.105886+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v304/trades.jsonl b/agents/stock/workspace/state/sim/variants/v304/trades.jsonl
index 8729a92..f8bc4a8 100644
--- a/agents/stock/workspace/state/sim/variants/v304/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v304/trades.jsonl
@@ -277,3 +277,8 @@
{"ts": "2026-07-27T09:08:02.990790+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 144100, "qty": 26, "cost": 3747162, "path": "pullback", "reason": "눌림목 지정가 168,183 도달", "stop": 144099, "target": 144102, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "144,000 vs 112,958"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,440 / 112,958"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,440 / 112,958"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+57.2%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +274 · 기 -315 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+27%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.31% (환산) vs 평균 2.68% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "378,773 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.31% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 168,183 (현재 144,000)"}]}
{"ts": "2026-07-27T09:10:01.836981+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 143000, "qty": 26, "proceeds": 3710750, "entry_price": 144100, "pnl": -36412, "pnl_pct": -0.76, "hold_from": "2026-07-27T09:08:02.990789+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "144,099 (현재 143,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 144,102"}, {"label": "추세(60일선)", "ok": true, "detail": "112,942"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 154,116"}]}
{"ts": "2026-07-27T09:10:01.837106+09:00", "side": "BUY", "code": "089970", "name": "브이엠", "price": 72900, "qty": 51, "cost": 3718458, "path": "pullback", "reason": "눌림목 지정가 84,387 도달", "stop": 72899, "target": 72902, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "72,800 vs 69,882"}, {"label": "정배열(5>60)", "ok": true, "detail": "98,240 / 69,882"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "98,240 / 69,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+6.3%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +302 · 기 -386 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+69%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.30% (환산) vs 평균 3.65% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 122,100"}, {"label": "거래량 급증", "ok": false, "detail": "570,920 (환산) vs 평균 902,898"}, {"label": "회전율 급증", "ok": false, "detail": "2.30% (환산) vs 평균 3.65%"}, {"label": "RSI", "ok": true, "detail": "42"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 84,387 (현재 72,800)"}]}
+{"ts": "2026-07-28T09:00:25.380897+09:00", "side": "SELL", "code": "089970", "name": "브이엠", "price": 67400, "qty": 51, "proceeds": 3430697, "entry_price": 72900, "pnl": -287761, "pnl_pct": -7.54, "hold_from": "2026-07-27T09:10:01.837105+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "72,899 (현재 68,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": false, "detail": "69,808"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +224 · 기 -276"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:25.383295+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 154, "cost": 1044277, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5339, "target": 8941, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "7,050 vs 4,882"}, {"label": "정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.825524+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 147, "cost": 1043857, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5339, "target": 8941, "signals": [{"label": "손절선", "ok": true, "detail": "5,339 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,941"}, {"label": "추세(60일선)", "ok": true, "detail": "4,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:24:03.001276+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 558000, "qty": 6, "proceeds": 3341471, "entry_price": 553000, "pnl": 22974, "pnl_pct": 0.9, "hold_from": "2026-07-20T09:00:34.570463+09:00", "reason": "트레일링 익절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "561,800 (현재 559,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": true, "detail": "527,517"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:08:07.047979+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124100, "qty": 42, "proceeds": 5202036, "entry_price": 124200, "pnl": -15146, "pnl_pct": -0.08, "hold_from": "2026-07-02T10:18:05.076562+09:00", "reason": "시간손절 — 26일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "111,000 (현재 124,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 144,000"}, {"label": "추세(60일선)", "ok": true, "detail": "118,467"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v305/portfolio.json b/agents/stock/workspace/state/sim/variants/v305/portfolio.json
index 31880a4..bfe5ac3 100644
--- a/agents/stock/workspace/state/sim/variants/v305/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v305/portfolio.json
@@ -1,91 +1,7 @@
{
- "cash": 31975173.800499976,
+ "cash": 56370080.78899998,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 59,
- "entry_price": 124420.33898305085,
- "entry_at": "2026-07-03T09:02:06.149146+09:00",
- "stop": 111000,
- "target": 151261,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 122,715 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 3762514.3450991833,
- "last_add_price": 126200
- },
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 37,
- "entry_price": 128386.48648648648,
- "entry_at": "2026-07-08T09:16:02.768421+09:00",
- "stop": 111007,
- "target": 163145,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 2439196.1798423207,
- "last_add_price": 130800
- },
- "055550": {
- "code": "055550",
- "name": "신한지주",
- "sources": [
- "auto"
- ],
- "qty": 55,
- "entry_price": 111323.63636363637,
- "entry_at": "2026-07-08T09:50:05.749832+09:00",
- "stop": 99037,
- "target": 135896,
- "peak": 113050,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 105500,
- "tranches": 2,
- "tranche_value": 3126233.913570834,
- "last_add_price": 112800
- },
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 553000,
- "entry_at": "2026-07-20T09:00:34.686630+09:00",
- "stop": 561800,
- "target": 553002,
- "peak": 668000,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 736,914 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 4478858.043775,
- "last_add_price": 553000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -97,37 +13,16 @@
"entry_at": "2026-07-21T09:20:05.283403+09:00",
"stop": 298671,
"target": 434659,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 2518293.2056913,
"last_add_price": 349500
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 197,
- "entry_price": 14266.345177664974,
- "entry_at": "2026-07-22T14:18:05.513705+09:00",
- "stop": 10919,
- "target": 20961,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 1409288.3278047699,
- "last_add_price": 14510
- },
"095610": {
"code": "095610",
"name": "테스",
@@ -144,7 +39,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1238429.3243433933,
"last_add_price": 158100
@@ -165,7 +60,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,784 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 4331643.114424999,
"last_add_price": 102600
@@ -186,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 2431814.0917408336,
"last_add_price": 92200
@@ -207,17 +102,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 25,331 도달",
- "cur_price": 26500,
+ "cur_price": 25150,
"tranches": 2,
"tranche_value": 4377506.593399999,
"last_add_price": 26750
}
},
- "realized_pnl": -14573389.686500043,
- "closed_trades": 116,
- "wins": 1,
+ "realized_pnl": -15630669.953500045,
+ "closed_trades": 121,
+ "wins": 2,
"peak_equity": 100139236.48850003,
- "max_drawdown": 0.13765216483933398,
+ "max_drawdown": 0.16342873121845172,
"last_exit": {
"017670": "2026-06-23",
"178320": "2026-06-23",
@@ -228,14 +123,14 @@
"064400": "2026-06-24",
"010120": "2026-07-08",
"403870": "2026-07-07",
- "086790": "2026-06-26",
+ "086790": "2026-07-28",
"011070": "2026-07-24",
"005935": "2026-07-02",
"009150": "2026-07-24",
"093370": "2026-07-20",
"240810": "2026-07-24",
"222800": "2026-07-21",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"402340": "2026-07-23",
"084370": "2026-07-09",
"319660": "2026-07-23",
@@ -245,8 +140,11 @@
"003490": "2026-07-23",
"214450": "2026-07-20",
"095610": "2026-07-20",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "055550": "2026-07-28",
+ "252990": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885286+09:00",
- "updated_at": "2026-07-27T15:28:06.175332+09:00"
+ "updated_at": "2026-07-28T15:28:01.107618+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v305/trades.jsonl b/agents/stock/workspace/state/sim/variants/v305/trades.jsonl
index 3eb82d1..292be57 100644
--- a/agents/stock/workspace/state/sim/variants/v305/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v305/trades.jsonl
@@ -261,3 +261,8 @@
{"ts": "2026-07-24T09:56:05.189324+09:00", "side": "SELL", "code": "012330", "name": "현대모비스", "price": 502000, "qty": 8, "proceeds": 4008169, "entry_price": 505000, "pnl": -32437, "pnl_pct": -0.59, "hold_from": "2026-07-24T09:54:01.154771+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "504,999 (현재 503,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 505,002"}, {"label": "추세(60일선)", "ok": false, "detail": "503,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +58"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 540,079"}]}
{"ts": "2026-07-24T11:04:02.014519+09:00", "side": "BUY", "code": "003490", "name": "대한항공", "price": 25350, "qty": 172, "cost": 4360854, "path": "pullback", "reason": "눌림목 지정가 25,331 도달", "stop": 23650, "target": 28750, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "25,300 vs 25,157"}, {"label": "정배열(5>60)", "ok": true, "detail": "25,400 / 25,157"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "25,400 / 25,157"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.2%p"}, {"label": "수급(7일 외/기)", "ok": true, "detail": "외 +48 · 기 -439 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.9/5"}, {"label": "상승여력", "ok": true, "detail": "+44%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.10% (환산) vs 평균 0.58% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 28,400"}, {"label": "거래량 급증", "ok": true, "detail": "4,023,674 (환산) vs 평균 2,146,231"}, {"label": "회전율 급증", "ok": true, "detail": "1.10% (환산) vs 평균 0.58%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 25,331 (현재 25,300)"}]}
{"ts": "2026-07-27T09:02:08.247827+09:00", "side": "BUY", "code": "003490", "name": "대한항공", "price": 26750, "qty": 163, "cost": 4360904, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 23650, "target": 28750, "signals": [{"label": "손절선", "ok": true, "detail": "23,650 (현재 26,650)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 28,750"}, {"label": "추세(60일선)", "ok": true, "detail": "25,179"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +894 · 기 -281"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 25,963"}]}
+{"ts": "2026-07-28T09:24:03.003271+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 558000, "qty": 8, "proceeds": 4455295, "entry_price": 553000, "pnl": 30632, "pnl_pct": 0.9, "hold_from": "2026-07-20T09:00:34.686630+09:00", "reason": "트레일링 익절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "561,800 (현재 559,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": true, "detail": "527,517"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:52:01.810795+09:00", "side": "SELL", "code": "055550", "name": "신한지주", "price": 104800, "qty": 55, "proceeds": 5752760, "entry_price": 111324, "pnl": -370958, "pnl_pct": -5.86, "hold_from": "2026-07-08T09:50:05.749832+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "99,037 (현재 104,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 135,896"}, {"label": "추세(60일선)", "ok": true, "detail": "96,538"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +751 · 기 -709"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T10:56:01.970912+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 10910, "qty": 197, "proceeds": 2145079, "entry_price": 14266, "pnl": -665813, "pnl_pct": -23.53, "hold_from": "2026-07-22T14:18:05.513705+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "10,919 (현재 10,910)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,961"}, {"label": "추세(60일선)", "ok": false, "detail": "13,231"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:08:07.086453+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124100, "qty": 59, "proceeds": 7307622, "entry_price": 124420, "pnl": -34279, "pnl_pct": -0.26, "hold_from": "2026-07-03T09:02:06.149146+09:00", "reason": "시간손절 — 25일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "111,000 (현재 124,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 151,261"}, {"label": "추세(60일선)", "ok": true, "detail": "118,467"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T14:34:01.953239+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 128200, "qty": 37, "proceeds": 4734150, "entry_price": 128386, "pnl": -16862, "pnl_pct": -0.15, "hold_from": "2026-07-08T09:16:02.768421+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "111,007 (현재 128,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 163,145"}, {"label": "추세(60일선)", "ok": true, "detail": "113,168"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +105 · 기 +200"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v306/portfolio.json b/agents/stock/workspace/state/sim/variants/v306/portfolio.json
index 4bf9a7a..8d9e94b 100644
--- a/agents/stock/workspace/state/sim/variants/v306/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v306/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 34460334.441499986,
+ "cash": 50253627.348999985,
"initial": 100000000,
"positions": {
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 55,
- "entry_price": 128407.27272727272,
- "entry_at": "2026-07-08T09:16:02.770139+09:00",
- "stop": 112608,
- "target": 160006,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 3646719.3653269354,
- "last_add_price": 130800
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
@@ -34,12 +13,12 @@
"entry_at": "2026-07-14T09:40:05.124984+09:00",
"stop": 5498,
"target": 6912,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5795785.200968751,
"last_add_price": 6030
@@ -55,37 +34,16 @@
"entry_at": "2026-07-16T09:04:05.884866+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4001941.6430547875,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 139800,
- "entry_at": "2026-07-16T09:18:07.625165+09:00",
- "stop": 125972,
- "target": 167456,
- "peak": 141200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 4745811.182638343,
- "last_add_price": 139800
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -102,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5697846.5995,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 295,
- "entry_price": 14265.93220338983,
- "entry_at": "2026-07-22T14:18:05.515661+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2116357.2359968843,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 11,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:01.089412+09:00",
- "stop": 120314,
- "target": 233671,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 1860148.4394164109,
- "last_add_price": 158100
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -165,17 +81,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5568373.021031249,
"last_add_price": 19170
}
},
- "realized_pnl": -11797925.506500015,
- "closed_trades": 22,
+ "realized_pnl": -13630626.101500018,
+ "closed_trades": 26,
"wins": 1,
"peak_equity": 102728958.65750001,
- "max_drawdown": 0.13706012793279768,
+ "max_drawdown": 0.1565208298480704,
"last_exit": {
"403870": "2026-07-07",
"009150": "2026-07-06",
@@ -186,11 +102,14 @@
"003490": "2026-07-13",
"214450": "2026-07-15",
"030000": "2026-07-15",
- "095610": "2026-07-20",
+ "095610": "2026-07-28",
"105560": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885297+09:00",
- "updated_at": "2026-07-27T15:28:06.177051+09:00"
+ "updated_at": "2026-07-28T15:28:01.109239+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v306/trades.jsonl b/agents/stock/workspace/state/sim/variants/v306/trades.jsonl
index 57f0ac6..32ccd0d 100644
--- a/agents/stock/workspace/state/sim/variants/v306/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v306/trades.jsonl
@@ -68,3 +68,7 @@
{"ts": "2026-07-24T09:28:05.333031+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 145, "cost": 2104266, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 19936, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,936"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-27T09:04:07.625855+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 181, "proceeds": 2203894, "entry_price": 14920, "pnl": -497031, "pnl_pct": -18.23, "hold_from": "2026-07-24T09:04:10.736809+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,416 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,928"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,547"}]}
{"ts": "2026-07-27T09:06:01.970932+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 290, "cost": 5560134, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21990, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,060)"}]}
+{"ts": "2026-07-28T10:08:02.856736+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 295, "proceeds": 3288724, "entry_price": 14266, "pnl": -920357, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.515661+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:06:00.958548+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 125900, "qty": 33, "proceeds": 4146598, "entry_price": 139800, "pnl": -467494, "pnl_pct": -9.94, "hold_from": "2026-07-16T09:18:07.625165+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,972 (현재 125,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 167,456"}, {"label": "추세(20일선)", "ok": true, "detail": "118,540"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,971"}]}
+{"ts": "2026-07-28T11:34:02.055692+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 120300, "qty": 11, "proceeds": 1320720, "entry_price": 158100, "pnl": -418641, "pnl_pct": -23.91, "hold_from": "2026-07-22T15:04:01.089412+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,314 (현재 120,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 233,671"}, {"label": "추세(20일선)", "ok": false, "detail": "134,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +285 · 기 -563"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,711"}]}
+{"ts": "2026-07-28T14:34:01.955273+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 128200, "qty": 55, "proceeds": 7037251, "entry_price": 128407, "pnl": -26209, "pnl_pct": -0.16, "hold_from": "2026-07-08T09:16:02.770139+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "112,608 (현재 128,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 160,006"}, {"label": "추세(20일선)", "ok": true, "detail": "108,740"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +105 · 기 +200"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v307/portfolio.json b/agents/stock/workspace/state/sim/variants/v307/portfolio.json
index ecf39d2..00e4094 100644
--- a/agents/stock/workspace/state/sim/variants/v307/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v307/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 63934197.59399997,
+ "cash": 69677786.51699996,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 2515299.6269763918,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-21T12:06:01.261297+09:00",
"stop": 308113,
"target": 434524,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 2312659.7890401366,
"last_add_price": 356000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 7,
- "entry_price": 643000,
- "entry_at": "2026-07-22T10:02:05.327432+09:00",
- "stop": 604000,
- "target": 721000,
- "peak": 668000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 705,586 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 4529637.724381998,
- "last_add_price": 643000
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 2272740.2217699476,
"last_add_price": 92800
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "cur_price": 118600,
"tranches": 1,
"tranche_value": 3382783.2465926656,
"last_add_price": 127200
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 474,
- "entry_price": 7800.886075949367,
- "entry_at": "2026-07-27T09:18:02.847856+09:00",
- "stop": 6694,
- "target": 10014,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 1853807.2590118696,
- "last_add_price": 8080
- },
"475150": {
"code": "475150",
"name": "SK이터닉스",
@@ -144,17 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 66,722 도달",
- "cur_price": 56800,
+ "cur_price": 48950,
"tranches": 1,
"tranche_value": 963230.6420236498,
"last_add_price": 57200
+ },
+ "095610": {
+ "code": "095610",
+ "name": "테스",
+ "sources": [
+ "auto"
+ ],
+ "qty": 10,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:25.685634+09:00",
+ "stop": 100700,
+ "target": 180800,
+ "peak": 127400,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
+ "tranches": 1,
+ "tranche_value": 1285478.848705123,
+ "last_add_price": 127400
}
},
- "realized_pnl": -10004173.748000044,
- "closed_trades": 76,
+ "realized_pnl": -11186243.518000048,
+ "closed_trades": 79,
"wins": 1,
"peak_equity": 100266527.41749999,
- "max_drawdown": 0.10527876900080654,
+ "max_drawdown": 0.1206947244728042,
"last_exit": {
"033640": "2026-07-01",
"307950": "2026-07-01",
@@ -165,9 +144,9 @@
"009150": "2026-07-27",
"214450": "2026-07-06",
"093370": "2026-07-20",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"003490": "2026-07-09",
"402340": "2026-07-22",
@@ -177,8 +156,9 @@
"105560": "2026-07-20",
"089970": "2026-07-27",
"095610": "2026-07-27",
- "086790": "2026-07-27"
+ "086790": "2026-07-27",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885305+09:00",
- "updated_at": "2026-07-27T15:28:06.178781+09:00"
+ "updated_at": "2026-07-28T15:28:01.110847+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v307/trades.jsonl b/agents/stock/workspace/state/sim/variants/v307/trades.jsonl
index b0718a8..c52a6ba 100644
--- a/agents/stock/workspace/state/sim/variants/v307/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v307/trades.jsonl
@@ -175,3 +175,8 @@
{"ts": "2026-07-27T12:50:05.916578+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8080, "qty": 229, "cost": 1850598, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6433, "target": 9754, "signals": [{"label": "손절선", "ok": true, "detail": "6,433 (현재 8,070)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,754"}, {"label": "추세(60일선)", "ok": true, "detail": "4,899"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,817"}]}
{"ts": "2026-07-27T14:24:04.402599+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 130900, "qty": 43, "proceeds": 5617724, "entry_price": 130960, "pnl": -14421, "pnl_pct": -0.05, "hold_from": "2026-07-07T14:22:11.941049+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "118,232 (현재 130,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 156,416"}, {"label": "추세(60일선)", "ok": true, "detail": "118,580"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +163 · 기 -57"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T14:34:05.287465+09:00", "side": "BUY", "code": "475150", "name": "SK이터닉스", "price": 57200, "qty": 16, "cost": 915337, "path": "pullback", "reason": "눌림목 지정가 66,722 도달", "stop": 41200, "target": 89200, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "57,200 vs 47,579"}, {"label": "정배열(5>60)", "ok": true, "detail": "62,320 / 47,579"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "62,320 / 47,579"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+36.6%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +1,289 · 기 +873 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+0%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "30.33% (환산) vs 평균 19.86% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 80,600"}, {"label": "거래량 급증", "ok": true, "detail": "10,334,310 (환산) vs 평균 6,766,110"}, {"label": "회전율 급증", "ok": true, "detail": "30.33% (환산) vs 평균 19.86%"}, {"label": "RSI", "ok": true, "detail": "54"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 66,722 (현재 57,200)"}]}
+{"ts": "2026-07-28T09:00:25.685638+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 10, "cost": 1274191, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 180800, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:25.687708+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 7, "proceeds": 4059069, "entry_price": 643000, "pnl": -442606, "pnl_pct": -9.64, "hold_from": "2026-07-22T10:02:05.327432+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 721,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 680,971"}]}
+{"ts": "2026-07-28T09:00:25.688341+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 41, "cost": 5498925, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134102, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.232009+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 41, "proceeds": 5340067, "entry_price": 134100, "pnl": -158858, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:25.688333+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,102"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T11:04:04.768195+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6590, "qty": 474, "proceeds": 3117569, "entry_price": 7801, "pnl": -580606, "pnl_pct": -15.52, "hold_from": "2026-07-27T09:18:02.847856+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,694 (현재 6,590)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,014"}, {"label": "추세(60일선)", "ok": true, "detail": "4,874"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v308/portfolio.json b/agents/stock/workspace/state/sim/variants/v308/portfolio.json
index 3a4a29d..bb84ae6 100644
--- a/agents/stock/workspace/state/sim/variants/v308/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v308/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 35868391.106999926,
+ "cash": 37038073.82149992,
"initial": 100000000,
"positions": {
"214450": {
@@ -13,12 +13,12 @@
"entry_at": "2026-07-13T14:36:02.694098+09:00",
"stop": 303669,
"target": 414161,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4091526.4858662924,
"last_add_price": 346500
@@ -29,20 +29,20 @@
"sources": [
"auto"
],
- "qty": 930,
- "entry_price": 6170,
+ "qty": 1841,
+ "entry_price": 6234.329168929929,
"entry_at": "2026-07-16T09:14:04.439470+09:00",
- "stop": 5729,
- "target": 7051,
- "peak": 6250,
+ "stop": 5770,
+ "target": 7162,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
- "tranches": 1,
+ "cur_price": 6240,
+ "tranches": 2,
"tranche_value": 5740927.925062496,
- "last_add_price": 6170
+ "last_add_price": 6300
},
"161890": {
"code": "161890",
@@ -60,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5579733.175874996,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 322,
- "entry_price": 14265.52795031056,
- "entry_at": "2026-07-22T14:18:05.519153+09:00",
- "stop": 11527,
- "target": 19743,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2305429.512623813,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 12,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:01.092960+09:00",
- "stop": 124093,
- "target": 226114,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2026589.4025323594,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,32 +81,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3965476.874007674,
"last_add_price": 97700
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 857,
- "entry_price": 7736.2310385064175,
- "entry_at": "2026-07-27T09:04:07.634745+09:00",
- "stop": 6740,
- "target": 9728,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,907 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3319884.3870452787,
- "last_add_price": 7910
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -165,21 +102,42 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5436948.876062496,
"last_add_price": 19170
+ },
+ "010950": {
+ "code": "010950",
+ "name": "S-Oil",
+ "sources": [
+ "auto"
+ ],
+ "qty": 30,
+ "entry_price": 133800,
+ "entry_at": "2026-07-28T09:52:02.227991+09:00",
+ "stop": 119767,
+ "target": 161866,
+ "peak": 134100,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "breakout",
+ "entry_reason": "거래량·회전율 동반 전고점 돌파",
+ "cur_price": 129200,
+ "tranches": 1,
+ "tranche_value": 4066264.8925467785,
+ "last_add_price": 133800
}
},
- "realized_pnl": -13017382.909000015,
- "closed_trades": 33,
+ "realized_pnl": -15215555.297000017,
+ "closed_trades": 36,
"wins": 4,
"peak_equity": 103214817.49949999,
- "max_drawdown": 0.16581578892568372,
+ "max_drawdown": 0.1881978203187171,
"last_exit": {
"403870": "2026-07-07",
"000660": "2026-06-29",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"240810": "2026-07-24",
"030000": "2026-07-24",
"009150": "2026-07-06",
@@ -194,8 +152,10 @@
"055550": "2026-07-20",
"086790": "2026-07-21",
"010950": "2026-07-27",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "252990": "2026-07-28",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885314+09:00",
- "updated_at": "2026-07-27T15:28:06.180452+09:00"
+ "updated_at": "2026-07-28T15:28:01.112466+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v308/trades.jsonl b/agents/stock/workspace/state/sim/variants/v308/trades.jsonl
index 07de519..3e8a636 100644
--- a/agents/stock/workspace/state/sim/variants/v308/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v308/trades.jsonl
@@ -95,3 +95,8 @@
{"ts": "2026-07-27T09:04:07.634924+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 196, "proceeds": 2386537, "entry_price": 14920, "pnl": -538221, "pnl_pct": -18.23, "hold_from": "2026-07-24T09:04:10.740231+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,666 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,427"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,547"}]}
{"ts": "2026-07-27T09:06:01.974496+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 283, "cost": 5425924, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17878, "target": 21754, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,060)"}]}
{"ts": "2026-07-27T09:08:02.999669+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 419, "cost": 3314787, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6574, "target": 9562, "signals": [{"label": "손절선", "ok": true, "detail": "6,574 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,562"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,847"}]}
+{"ts": "2026-07-28T09:04:02.829049+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 12, "proceeds": 1475517, "entry_price": 158100, "pnl": -421967, "pnl_pct": -22.07, "hold_from": "2026-07-22T15:04:01.092960+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "124,093 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 226,114"}, {"label": "추세(20일선)", "ok": false, "detail": "134,595"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,650"}]}
+{"ts": "2026-07-28T09:06:03.970966+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6300, "qty": 911, "cost": 5740161, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5729, "target": 7051, "signals": [{"label": "손절선", "ok": true, "detail": "5,729 (현재 6,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,051"}, {"label": "추세(20일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +28 · 기 -3"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,299"}]}
+{"ts": "2026-07-28T09:48:03.961084+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11490, "qty": 322, "proceeds": 3692565, "entry_price": 14266, "pnl": -901624, "pnl_pct": -19.46, "hold_from": "2026-07-22T14:18:05.519153+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,527 (현재 11,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,743"}, {"label": "추세(20일선)", "ok": false, "detail": "12,650"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:52:02.228008+09:00", "side": "BUY", "code": "010950", "name": "S-Oil", "price": 133800, "qty": 30, "cost": 4014602, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 119767, "target": 161866, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "133,800 vs 109,015"}, {"label": "정배열(5>20)", "ok": true, "detail": "115,940 / 109,015"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "115,940 / 113,260"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +117 · 기 +211 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.9/5"}, {"label": "상승여력", "ok": true, "detail": "+19%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.42% (환산) vs 평균 0.32% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 116,900"}, {"label": "거래량 급증", "ok": true, "detail": "478,113 (환산) vs 평균 359,705"}, {"label": "회전율 급증", "ok": true, "detail": "0.42% (환산) vs 평균 0.32%"}, {"label": "RSI", "ok": true, "detail": "70"}]}
+{"ts": "2026-07-28T10:56:02.390034+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6730, "qty": 857, "proceeds": 5756363, "entry_price": 7736, "pnl": -874581, "pnl_pct": -13.01, "hold_from": "2026-07-27T09:04:07.634745+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,740 (현재 6,740)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,728"}, {"label": "추세(20일선)", "ok": true, "detail": "4,839"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +89 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v309/portfolio.json b/agents/stock/workspace/state/sim/variants/v309/portfolio.json
index 7686847..8ab9be7 100644
--- a/agents/stock/workspace/state/sim/variants/v309/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v309/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 14140382.017499948,
+ "cash": 44017567.675499946,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 107,
- "entry_price": 124181.30841121495,
- "entry_at": "2026-07-02T10:18:05.117493+09:00",
- "stop": 114303,
- "target": 148877,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 123,632 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 6715782.648119116,
- "last_add_price": 126200
- },
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 87,
- "entry_price": 128220.68965517242,
- "entry_at": "2026-07-08T09:08:02.837702+09:00",
- "stop": 116371,
- "target": 157844,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 5629909.698589857,
- "last_add_price": 130800
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,12 +13,12 @@
"entry_at": "2026-07-10T09:00:33.035507+09:00",
"stop": 288819,
"target": 393054,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5662017.171948669,
"last_add_price": 324000
@@ -76,37 +34,16 @@
"entry_at": "2026-07-22T12:12:01.525746+09:00",
"stop": 5776,
"target": 7081,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 7133868.060916662,
"last_add_price": 6230
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 466,
- "entry_price": 14213.776824034334,
- "entry_at": "2026-07-23T09:36:02.050950+09:00",
- "stop": 11931,
- "target": 19920,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,305 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3318642.253954581,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -123,17 +60,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5923537.593329019,
"last_add_price": 92800
}
},
- "realized_pnl": -17606191.504000016,
- "closed_trades": 24,
+ "realized_pnl": -18799885.77900002,
+ "closed_trades": 27,
"wins": 0,
"peak_equity": 100204129.27299997,
- "max_drawdown": 0.16351731950446674,
+ "max_drawdown": 0.175746440094512,
"last_exit": {
"005930": "2026-06-23",
"005935": "2026-07-02",
@@ -150,8 +87,11 @@
"475150": "2026-07-08",
"030000": "2026-07-16",
"089970": "2026-07-20",
- "055550": "2026-07-23"
+ "055550": "2026-07-23",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885323+09:00",
- "updated_at": "2026-07-27T15:28:06.182108+09:00"
+ "updated_at": "2026-07-28T15:28:01.114077+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v309/trades.jsonl b/agents/stock/workspace/state/sim/variants/v309/trades.jsonl
index 1da8603..3965434 100644
--- a/agents/stock/workspace/state/sim/variants/v309/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v309/trades.jsonl
@@ -69,3 +69,6 @@
{"ts": "2026-07-23T13:42:05.702953+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 92800, "qty": 63, "cost": 5847277, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 81605, "target": 109938, "signals": [{"label": "손절선", "ok": true, "detail": "81,605 (현재 92,700)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 109,938"}, {"label": "추세(10일선)", "ok": true, "detail": "81,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -169 · 기 +311"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 92,506"}]}
{"ts": "2026-07-24T09:02:05.766936+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6230, "qty": 1144, "cost": 7128189, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5700, "target": 6996, "signals": [{"label": "손절선", "ok": true, "detail": "5,700 (현재 6,210)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 6,996"}, {"label": "추세(10일선)", "ok": true, "detail": "5,574"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +39 · 기 +1"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,194"}]}
{"ts": "2026-07-24T09:28:05.350161+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 228, "cost": 3308776, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11689, "target": 19531, "signals": [{"label": "손절선", "ok": true, "detail": "11,689 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,531"}, {"label": "추세(10일선)", "ok": true, "detail": "13,113"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,691"}]}
+{"ts": "2026-07-28T09:04:03.148439+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11810, "qty": 466, "proceeds": 5492728, "entry_price": 14214, "pnl": -1131885, "pnl_pct": -16.91, "hold_from": "2026-07-23T09:36:02.050950+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,931 (현재 11,860)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,920"}, {"label": "추세(10일선)", "ok": false, "detail": "12,759"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:08:07.094683+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124100, "qty": 107, "proceeds": 13252807, "entry_price": 124181, "pnl": -36587, "pnl_pct": -0.07, "hold_from": "2026-07-02T10:18:05.117493+09:00", "reason": "시간손절 — 26일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "114,303 (현재 124,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,877"}, {"label": "추세(10일선)", "ok": true, "detail": "119,970"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T14:36:04.073878+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 128200, "qty": 87, "proceeds": 11131651, "entry_price": 128221, "pnl": -25222, "pnl_pct": -0.02, "hold_from": "2026-07-08T09:08:02.837702+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "116,371 (현재 128,200)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 157,844"}, {"label": "추세(10일선)", "ok": true, "detail": "108,290"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +105 · 기 +200"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v310/portfolio.json b/agents/stock/workspace/state/sim/variants/v310/portfolio.json
index 895fbcb..12efd8b 100644
--- a/agents/stock/workspace/state/sim/variants/v310/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v310/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 59427274.05049993,
+ "cash": 75390348.58549994,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 49,
- "entry_price": 127616.32653061225,
- "entry_at": "2026-07-03T12:00:03.961624+09:00",
- "stop": 116685,
- "target": 160412,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 129,300 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 3175234.87849388,
- "last_add_price": 129300
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 14,
- "entry_price": 152000.0,
- "entry_at": "2026-07-08T09:48:03.209205+09:00",
- "stop": 119360,
- "target": 249920,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 177,000 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1155855.8136422108,
- "last_add_price": 158000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,58 +13,16 @@
"entry_at": "2026-07-09T11:44:05.175517+09:00",
"stop": 296187,
"target": 431439,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 324,000 도달",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 2514022.686329285,
"last_add_price": 337500
},
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 36,
- "entry_price": 146800.0,
- "entry_at": "2026-07-16T09:56:06.970463+09:00",
- "stop": 132096,
- "target": 190913,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 2733409.076744103,
- "last_add_price": 149100
- },
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 6,
- "entry_price": 647000,
- "entry_at": "2026-07-23T11:26:06.539305+09:00",
- "stop": 604000,
- "target": 776000,
- "peak": 661000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 815,000 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 3983354.2952674506,
- "last_add_price": 647000
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -123,17 +39,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 106,500 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 3060336.08961186,
"last_add_price": 104800
}
},
- "realized_pnl": -12337291.269500047,
- "closed_trades": 66,
+ "realized_pnl": -13924848.93450005,
+ "closed_trades": 71,
"wins": 1,
"peak_equity": 100000000,
- "max_drawdown": 0.12399225949500069,
+ "max_drawdown": 0.13830451414500058,
"last_exit": {
"254490": "2026-06-22",
"017670": "2026-06-23",
@@ -156,16 +72,19 @@
"093370": "2026-07-03",
"402340": "2026-07-23",
"240810": "2026-07-24",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"222800": "2026-07-16",
"004170": "2026-07-16",
- "319660": "2026-07-13",
+ "319660": "2026-07-28",
"032830": "2026-07-24",
"028260": "2026-07-16",
"089970": "2026-07-09",
"084370": "2026-07-09",
- "003490": "2026-07-23"
+ "003490": "2026-07-23",
+ "095610": "2026-07-28",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885332+09:00",
- "updated_at": "2026-07-27T15:28:06.188578+09:00"
+ "updated_at": "2026-07-28T15:28:01.120248+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v310/trades.jsonl b/agents/stock/workspace/state/sim/variants/v310/trades.jsonl
index b15ca8d..9800bc1 100644
--- a/agents/stock/workspace/state/sim/variants/v310/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v310/trades.jsonl
@@ -151,3 +151,9 @@
{"ts": "2026-07-24T09:28:05.359275+09:00", "side": "SELL", "code": "032830", "name": "삼성생명", "price": 316500, "qty": 23, "proceeds": 7265305, "entry_price": 317500, "pnl": -38290, "pnl_pct": -0.31, "hold_from": "2026-07-24T09:26:01.425713+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "317,499 (현재 317,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 317,503"}, {"label": "추세(60일선)", "ok": true, "detail": "311,208"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +160 · 기 -155"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 337,683"}]}
{"ts": "2026-07-24T09:28:05.736259+09:00", "side": "BUY", "code": "161890", "name": "한국콜마", "price": 100800, "qty": 30, "cost": 3024454, "path": "pullback", "reason": "눌림목 지정가 106,500 도달", "stop": 92100, "target": 126900, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "100,800 vs 91,947"}, {"label": "정배열(5>60)", "ok": true, "detail": "107,460 / 91,947"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "107,460 / 91,947"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+38.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +257 · 기 -193 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+30%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.47% (환산) vs 평균 1.76% (보류 5배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 124,600"}, {"label": "거래량 급증", "ok": false, "detail": "346,720 (환산) vs 평균 415,172"}, {"label": "회전율 급증", "ok": false, "detail": "1.47% (환산) vs 평균 1.76%"}, {"label": "RSI", "ok": true, "detail": "52"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 106,500 (현재 100,800)"}]}
{"ts": "2026-07-27T09:46:06.137706+09:00", "side": "BUY", "code": "161890", "name": "한국콜마", "price": 104800, "qty": 29, "cost": 3039656, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 92100, "target": 126900, "signals": [{"label": "손절선", "ok": true, "detail": "92,100 (현재 104,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 126,900"}, {"label": "추세(60일선)", "ok": true, "detail": "92,010"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +192 · 기 -144"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 104,533"}]}
+{"ts": "2026-07-28T09:00:25.994955+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 6, "proceeds": 3479202, "entry_price": 647000, "pnl": -403380, "pnl_pct": -10.2, "hold_from": "2026-07-23T11:26:06.539305+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 776,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 684,971"}]}
+{"ts": "2026-07-28T09:00:25.996803+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 54, "cost": 7242486, "path": "pullback", "reason": "눌림목 지정가 188,200 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 5배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 188,200 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.240126+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 54, "proceeds": 7033258, "entry_price": 134100, "pnl": -209228, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:25.996798+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:48:04.379116+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123000, "qty": 14, "proceeds": 1718642, "entry_price": 152000, "pnl": -409677, "pnl_pct": -19.08, "hold_from": "2026-07-08T09:48:03.209205+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "119,360 (현재 123,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 249,920"}, {"label": "추세(60일선)", "ok": true, "detail": "99,167"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:54:00.828591+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 127500, "qty": 49, "proceeds": 6235317, "entry_price": 127616, "pnl": -18821, "pnl_pct": -0.09, "hold_from": "2026-07-03T12:00:03.961624+09:00", "reason": "시간손절 — 24일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "116,685 (현재 127,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 160,412"}, {"label": "추세(60일선)", "ok": true, "detail": "118,525"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +147 · 기 -116"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:00:02.103302+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 131900, "qty": 36, "proceeds": 4739141, "entry_price": 146800, "pnl": -546452, "pnl_pct": -10.15, "hold_from": "2026-07-16T09:56:06.970463+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "132,096 (현재 132,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 190,913"}, {"label": "추세(60일선)", "ok": true, "detail": "113,230"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +117 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v311/portfolio.json b/agents/stock/workspace/state/sim/variants/v311/portfolio.json
index ca045b0..f9a1985 100644
--- a/agents/stock/workspace/state/sim/variants/v311/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v311/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 32681218.994999982,
+ "cash": 50487728.459999986,
"initial": 100000000,
"positions": {
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 130371.8309859155,
- "entry_at": "2026-07-08T09:28:03.774820+09:00",
- "stop": 118522,
- "target": 165920,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 4672093.2982409485,
- "last_add_price": 132400
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 27,
- "entry_price": 151777.77777777778,
- "entry_at": "2026-07-08T09:48:03.227800+09:00",
- "stop": 122978,
- "target": 238177,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 177,000 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 2071195.31789497,
- "last_add_price": 158000
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
@@ -55,12 +13,12 @@
"entry_at": "2026-07-14T09:50:06.156313+09:00",
"stop": 5616,
"target": 7029,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 7328397.072583333,
"last_add_price": 6030
@@ -76,37 +34,16 @@
"entry_at": "2026-07-16T09:04:05.922536+09:00",
"stop": 315861,
"target": 441416,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5051541.085061288,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 42,
- "entry_price": 136500,
- "entry_at": "2026-07-20T09:42:01.348220+09:00",
- "stop": 126311,
- "target": 167067,
- "peak": 137400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5856917.075922563,
- "last_add_price": 136500
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -123,17 +60,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 106,500 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 4351266.965749504,
"last_add_price": 106100
}
},
- "realized_pnl": -15209125.729000019,
- "closed_trades": 28,
+ "realized_pnl": -16492879.37400002,
+ "closed_trades": 31,
"wins": 1,
"peak_equity": 100133491.83,
- "max_drawdown": 0.14996003031126906,
+ "max_drawdown": 0.1628408544633894,
"last_exit": {
"033640": "2026-06-23",
"005930": "2026-06-23",
@@ -147,11 +84,13 @@
"240810": "2026-07-23",
"009150": "2026-07-03",
"214450": "2026-07-14",
- "095610": "2026-07-07",
+ "095610": "2026-07-28",
"475150": "2026-07-08",
"319660": "2026-07-23",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885342+09:00",
- "updated_at": "2026-07-27T15:28:06.190289+09:00"
+ "updated_at": "2026-07-28T15:28:01.121861+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v311/trades.jsonl b/agents/stock/workspace/state/sim/variants/v311/trades.jsonl
index 79c8c85..5975c03 100644
--- a/agents/stock/workspace/state/sim/variants/v311/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v311/trades.jsonl
@@ -78,3 +78,6 @@
{"ts": "2026-07-23T11:00:03.207726+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 154400, "qty": 46, "proceeds": 7088550, "entry_price": 155200, "pnl": -51721, "pnl_pct": -0.52, "hold_from": "2026-07-23T10:50:08.291905+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "155,199 (현재 154,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(20일선)", "ok": true, "detail": "149,520"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -144 · 기 +35"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-23T11:00:03.572587+09:00", "side": "BUY", "code": "161890", "name": "한국콜마", "price": 102200, "qty": 42, "cost": 4293044, "path": "pullback", "reason": "눌림목 지정가 106,500 도달", "stop": 92100, "target": 132500, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "102,200 vs 98,675"}, {"label": "정배열(5>20)", "ok": true, "detail": "107,740 / 98,675"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "107,740 / 91,970"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+35.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +212 · 기 -227 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+28%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.05% (환산) vs 평균 1.76% (보류 5배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 124,600"}, {"label": "거래량 급증", "ok": false, "detail": "483,734 (환산) vs 평균 415,172"}, {"label": "회전율 급증", "ok": false, "detail": "2.05% (환산) vs 평균 1.76%"}, {"label": "RSI", "ok": true, "detail": "54"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 106,500 (현재 102,200)"}]}
{"ts": "2026-07-27T10:40:05.234951+09:00", "side": "BUY", "code": "161890", "name": "한국콜마", "price": 106100, "qty": 41, "cost": 4350753, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 92100, "target": 132500, "signals": [{"label": "손절선", "ok": true, "detail": "92,100 (현재 106,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 132,500"}, {"label": "추세(20일선)", "ok": true, "detail": "98,865"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +190 · 기 -144"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 105,933"}]}
+{"ts": "2026-07-28T09:08:04.494066+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 122100, "qty": 27, "proceeds": 3290271, "entry_price": 151778, "pnl": -808343, "pnl_pct": -19.55, "hold_from": "2026-07-08T09:48:03.227800+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "122,978 (현재 122,200)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 238,177"}, {"label": "추세(20일선)", "ok": false, "detail": "134,525"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T10:58:00.850092+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 126200, "qty": 42, "proceeds": 5290064, "entry_price": 136500, "pnl": -443796, "pnl_pct": -7.55, "hold_from": "2026-07-20T09:42:01.348220+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "126,311 (현재 126,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 167,067"}, {"label": "추세(20일선)", "ok": true, "detail": "118,550"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +135 · 기 -114"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 139,657"}]}
+{"ts": "2026-07-28T12:08:05.866034+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 130200, "qty": 71, "proceeds": 9226174, "entry_price": 130372, "pnl": -31615, "pnl_pct": -0.13, "hold_from": "2026-07-08T09:28:03.774820+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "118,522 (현재 130,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 165,920"}, {"label": "추세(20일선)", "ok": true, "detail": "108,840"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +111 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v312/portfolio.json b/agents/stock/workspace/state/sim/variants/v312/portfolio.json
index dff8942..fbbaa3a 100644
--- a/agents/stock/workspace/state/sim/variants/v312/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v312/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 15263964.113499995,
+ "cash": 50946467.284499995,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 127,
- "entry_price": 126536.22047244094,
- "entry_at": "2026-07-07T09:48:10.316330+09:00",
- "stop": 118177,
- "target": 151615,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 129,300 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 8110500.977146673,
- "last_add_price": 129300
- },
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 102,
- "entry_price": 129354.90196078431,
- "entry_at": "2026-07-08T09:22:06.889846+09:00",
- "stop": 119085,
- "target": 160163,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 6618434.466110563,
- "last_add_price": 131700
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,12 +13,12 @@
"entry_at": "2026-07-16T09:00:29.554741+09:00",
"stop": 312214,
"target": 417870,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 7354011.877655987,
"last_add_price": 344000
@@ -76,43 +34,22 @@
"entry_at": "2026-07-23T09:36:02.472761+09:00",
"stop": 5831,
"target": 7123,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 8647951.636300001,
"last_add_price": 6230
- },
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 546,
- "entry_price": 14229.96336996337,
- "entry_at": "2026-07-23T10:24:02.373251+09:00",
- "stop": 12252,
- "target": 20164,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 15,500 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3890533.017372683,
- "last_add_price": 14510
}
},
- "realized_pnl": -15844073.64200002,
- "closed_trades": 22,
+ "realized_pnl": -17200985.550000023,
+ "closed_trades": 25,
"wins": 0,
"peak_equity": 100226641.3075,
- "max_drawdown": 0.16166453761318966,
+ "max_drawdown": 0.16193135808278872,
"last_exit": {
"005930": "2026-06-23",
"005935": "2026-07-01",
@@ -127,8 +64,11 @@
"095610": "2026-07-23",
"475150": "2026-07-08",
"030000": "2026-07-16",
- "055550": "2026-07-23"
+ "055550": "2026-07-23",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885351+09:00",
- "updated_at": "2026-07-27T15:28:06.196573+09:00"
+ "updated_at": "2026-07-28T15:28:01.127864+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v312/trades.jsonl b/agents/stock/workspace/state/sim/variants/v312/trades.jsonl
index aa7da15..f69c0a7 100644
--- a/agents/stock/workspace/state/sim/variants/v312/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v312/trades.jsonl
@@ -63,3 +63,6 @@
{"ts": "2026-07-23T10:24:02.373253+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13960, "qty": 278, "cost": 3881462, "path": "pullback", "reason": "눌림목 지정가 15,500 도달", "stop": 12018, "target": 19785, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,960 vs 12,969"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,540 / 12,969"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,540 / 13,282"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+10.7%p"}, {"label": "수급(3일 외/기)", "ok": true, "detail": "외 -966 · 기 +1,230 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.21% (환산) vs 평균 1.47% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "726,573 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "1.21% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "53"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 15,500 (현재 13,960)"}]}
{"ts": "2026-07-24T09:02:05.811309+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6230, "qty": 1387, "cost": 8642306, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5765, "target": 7024, "signals": [{"label": "손절선", "ok": true, "detail": "5,765 (현재 6,210)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,024"}, {"label": "추세(10일선)", "ok": true, "detail": "5,574"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +39 · 기 +1"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,204"}]}
{"ts": "2026-07-24T09:28:05.769077+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 268, "cost": 3889263, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 12018, "target": 19785, "signals": [{"label": "손절선", "ok": true, "detail": "12,018 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,785"}, {"label": "추세(10일선)", "ok": true, "detail": "13,113"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,721"}]}
+{"ts": "2026-07-28T09:02:05.248607+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 546, "proceeds": 6495629, "entry_price": 14230, "pnl": -1275097, "pnl_pct": -16.23, "hold_from": "2026-07-23T10:24:02.373251+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,252 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,164"}, {"label": "추세(10일선)", "ok": false, "detail": "12,769"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T10:56:02.809314+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 126500, "qty": 127, "proceeds": 16034172, "entry_price": 126536, "pnl": -38338, "pnl_pct": -0.03, "hold_from": "2026-07-07T09:48:10.316330+09:00", "reason": "시간손절 — 21일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "118,177 (현재 126,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 151,615"}, {"label": "추세(10일선)", "ok": true, "detail": "120,210"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +135 · 기 -114"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:54:00.905625+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 129200, "qty": 102, "proceeds": 13152702, "entry_price": 129355, "pnl": -43477, "pnl_pct": -0.12, "hold_from": "2026-07-08T09:22:06.889846+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "119,085 (현재 129,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 160,163"}, {"label": "추세(10일선)", "ok": true, "detail": "108,400"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +111 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v313/portfolio.json b/agents/stock/workspace/state/sim/variants/v313/portfolio.json
index bc09ccb..a96874f 100644
--- a/agents/stock/workspace/state/sim/variants/v313/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v313/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 62247648.47249992,
+ "cash": 67746151.36849992,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 2048281.4287081354,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 172900,
+ "cur_price": 165900,
"tranches": 2,
"tranche_value": 2190880.642895634,
"last_add_price": 188900
@@ -60,32 +60,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 2270015.592943854,
"last_add_price": 134300
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 8,
- "entry_price": 553000,
- "entry_at": "2026-07-20T09:00:35.565898+09:00",
- "stop": 561800,
- "target": 553002,
- "peak": 668000,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 697,871 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 4730909.148749998,
- "last_add_price": 553000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -97,12 +76,12 @@
"entry_at": "2026-07-21T12:06:01.281525+09:00",
"stop": 297579,
"target": 445059,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 1881614.4320314971,
"last_add_price": 356000
@@ -123,32 +102,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 1862199.0150068374,
"last_add_price": 92800
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 392,
- "entry_price": 7736.530612244898,
- "entry_at": "2026-07-27T09:04:07.667139+09:00",
- "stop": 6353,
- "target": 10227,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,630 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 1521199.9556653674,
- "last_add_price": 7910
- },
"138040": {
"code": "138040",
"name": "메리츠금융지주",
@@ -165,17 +123,38 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "cur_price": 118600,
"tranches": 1,
"tranche_value": 2781920.3395705796,
"last_add_price": 127700
+ },
+ "095610": {
+ "code": "095610",
+ "name": "테스",
+ "sources": [
+ "auto"
+ ],
+ "qty": 10,
+ "entry_price": 127400,
+ "entry_at": "2026-07-28T09:00:26.316287+09:00",
+ "stop": 100700,
+ "target": 175460,
+ "peak": 127400,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 145,639 도달",
+ "cur_price": 121400,
+ "tranches": 1,
+ "tranche_value": 1318194.1792580327,
+ "last_add_price": 127400
}
},
- "realized_pnl": -8085182.119500033,
- "closed_trades": 74,
- "wins": 1,
+ "realized_pnl": -8770326.631500034,
+ "closed_trades": 77,
+ "wins": 2,
"peak_equity": 100186518.14249998,
- "max_drawdown": 0.0820263027637243,
+ "max_drawdown": 0.10163210542477871,
"last_exit": {
"033640": "2026-07-01",
"307950": "2026-07-01",
@@ -183,10 +162,10 @@
"005935": "2026-07-01",
"009150": "2026-07-27",
"240810": "2026-07-24",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"093370": "2026-07-20",
"032830": "2026-07-27",
- "319660": "2026-07-27",
+ "319660": "2026-07-28",
"011070": "2026-07-24",
"402340": "2026-07-22",
"003490": "2026-07-13",
@@ -196,8 +175,9 @@
"222800": "2026-07-21",
"055550": "2026-07-27",
"089970": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885359+09:00",
- "updated_at": "2026-07-27T15:28:06.198335+09:00"
+ "updated_at": "2026-07-28T15:28:01.129481+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v313/trades.jsonl b/agents/stock/workspace/state/sim/variants/v313/trades.jsonl
index d662d6b..5d36632 100644
--- a/agents/stock/workspace/state/sim/variants/v313/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v313/trades.jsonl
@@ -170,3 +170,8 @@
{"ts": "2026-07-27T09:08:03.016955+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 192, "cost": 1518948, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6187, "target": 10060, "signals": [{"label": "손절선", "ok": true, "detail": "6,187 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,060"}, {"label": "추세(60일선)", "ok": true, "detail": "4,896"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,847"}]}
{"ts": "2026-07-27T09:18:02.876751+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 21, "cost": 2682102, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 114917, "target": 150710, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "127,400 vs 110,142"}, {"label": "정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T10:08:02.052209+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 11, "proceeds": 1590792, "entry_price": 160909, "pnl": -179474, "pnl_pct": -9.95, "hold_from": "2026-07-07T10:06:08.184570+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "114,698 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 244,090"}, {"label": "추세(60일선)", "ok": true, "detail": "99,533"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:26.316294+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 127400, "qty": 10, "cost": 1274191, "path": "pullback", "reason": "눌림목 지정가 145,639 도달", "stop": 100700, "target": 175460, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "128,000 vs 99,250"}, {"label": "정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "166,240 / 99,250"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +269 · 기 -554 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+53%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.70% (환산) vs 평균 3.06% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "521,760 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "2.70% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 145,639 (현재 128,000)"}]}
+{"ts": "2026-07-28T09:00:26.317347+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 34, "cost": 4560084, "path": "pullback", "reason": "눌림목 지정가 156,975 도달", "stop": 134099, "target": 134102, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 156,975 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.250759+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 34, "proceeds": 4428348, "entry_price": 134100, "pnl": -131736, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:26.317342+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,102"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:24:03.025916+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 558000, "qty": 8, "proceeds": 4455295, "entry_price": 553000, "pnl": 30632, "pnl_pct": 0.9, "hold_from": "2026-07-20T09:00:35.565898+09:00", "reason": "트레일링 익절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "561,800 (현재 559,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": true, "detail": "527,517"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:36:02.023118+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6260, "qty": 392, "proceeds": 2449135, "entry_price": 7737, "pnl": -584040, "pnl_pct": -19.09, "hold_from": "2026-07-27T09:04:07.667139+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,353 (현재 6,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,227"}, {"label": "추세(60일선)", "ok": true, "detail": "4,869"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v314/portfolio.json b/agents/stock/workspace/state/sim/variants/v314/portfolio.json
index 4df7b25..816725f 100644
--- a/agents/stock/workspace/state/sim/variants/v314/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v314/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37637484.16900002,
+ "cash": 46151708.99200003,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 3777878.7367542596,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-15T09:26:02.659748+09:00",
"stop": 5515,
"target": 7131,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5434580.417579264,
"last_add_price": 6150
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 30,
- "entry_price": 140200,
- "entry_at": "2026-07-16T09:16:08.255176+09:00",
- "stop": 124989,
- "target": 170622,
- "peak": 141200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 4337007.4483669065,
- "last_add_price": 140200
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -76,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.283289+09:00",
"stop": 303597,
"target": 442649,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3459622.8594091423,
"last_add_price": 356000
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3310350.3692626413,
"last_add_price": 97000
@@ -123,32 +102,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5643861.637562501,
"last_add_price": 19100
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 722,
- "entry_price": 7683.9058171745155,
- "entry_at": "2026-07-27T09:02:08.309183+09:00",
- "stop": 6466,
- "target": 10119,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 2776955.2457199185,
- "last_add_price": 7910
- },
"138040": {
"code": "138040",
"name": "메리츠금융지주",
@@ -165,17 +123,17 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
+ "cur_price": 118600,
"tranches": 1,
"tranche_value": 5009397.505974029,
"last_add_price": 125400
}
},
- "realized_pnl": -10594961.862500012,
- "closed_trades": 20,
+ "realized_pnl": -11835980.106500011,
+ "closed_trades": 22,
"wins": 1,
"peak_equity": 100961178.33000001,
- "max_drawdown": 0.11793448093564839,
+ "max_drawdown": 0.1335075477619971,
"last_exit": {
"403870": "2026-07-07",
"030000": "2026-07-24",
@@ -187,8 +145,10 @@
"214450": "2026-07-09",
"105560": "2026-07-20",
"055550": "2026-07-27",
- "095610": "2026-07-27"
+ "095610": "2026-07-27",
+ "003680": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885367+09:00",
- "updated_at": "2026-07-27T15:28:06.200018+09:00"
+ "updated_at": "2026-07-28T15:28:01.131121+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v314/trades.jsonl b/agents/stock/workspace/state/sim/variants/v314/trades.jsonl
index 193818b..2501fa2 100644
--- a/agents/stock/workspace/state/sim/variants/v314/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v314/trades.jsonl
@@ -62,3 +62,5 @@
{"ts": "2026-07-27T09:08:03.018664+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 351, "cost": 2776826, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6260, "target": 9889, "signals": [{"label": "손절선", "ok": true, "detail": "6,260 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,889"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T10:08:02.054146+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 144900, "qty": 20, "proceeds": 2892349, "entry_price": 160775, "pnl": -323633, "pnl_pct": -9.87, "hold_from": "2026-07-07T10:06:08.186335+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "120,109 (현재 145,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 242,107"}, {"label": "추세(20일선)", "ok": true, "detail": "135,665"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +244 · 기 -567"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T10:08:02.402443+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 125400, "qty": 39, "cost": 4891334, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 114119, "target": 147962, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "125,400 vs 113,825"}, {"label": "정배열(5>20)", "ok": true, "detail": "118,540 / 113,825"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,540 / 110,108"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+44.9%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +120 · 기 +294 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+18%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.47% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "785,979 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.47% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "69"}]}
+{"ts": "2026-07-28T11:22:00.854588+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 722, "proceeds": 4777526, "entry_price": 7684, "pnl": -771087, "pnl_pct": -13.72, "hold_from": "2026-07-27T09:02:08.309183+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,466 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,119"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:08:06.298558+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124800, "qty": 30, "proceeds": 3736699, "entry_price": 140200, "pnl": -469932, "pnl_pct": -10.98, "hold_from": "2026-07-16T09:16:08.255176+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "124,989 (현재 124,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 170,622"}, {"label": "추세(20일선)", "ok": true, "detail": "118,485"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 143,407"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v315/portfolio.json b/agents/stock/workspace/state/sim/variants/v315/portfolio.json
index 60c2f4b..1ec4327 100644
--- a/agents/stock/workspace/state/sim/variants/v315/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v315/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 32070141.541499935,
+ "cash": 46498950.39149994,
"initial": 100000000,
"positions": {
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 128214.08450704225,
- "entry_at": "2026-07-08T09:08:02.857932+09:00",
- "stop": 112415,
- "target": 167712,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 4605074.81759219,
- "last_add_price": 130800
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
@@ -34,12 +13,12 @@
"entry_at": "2026-07-15T10:22:02.649141+09:00",
"stop": 5498,
"target": 7147,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 7244669.755439429,
"last_add_price": 6030
@@ -55,12 +34,12 @@
"entry_at": "2026-07-16T09:04:05.941183+09:00",
"stop": 305186,
"target": 451666,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4924531.379887749,
"last_add_price": 353000
@@ -81,32 +60,11 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4655528.873050034,
"last_add_price": 91400
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 134700,
- "entry_at": "2026-07-24T14:38:01.213662+09:00",
- "stop": 121972,
- "target": 166520,
- "peak": 134700,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 6058553.459757297,
- "last_add_price": 134700
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -123,17 +81,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,314 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 7492821.915541661,
"last_add_price": 19170
}
},
- "realized_pnl": -12396649.72650001,
- "closed_trades": 15,
+ "realized_pnl": -13000095.376500012,
+ "closed_trades": 17,
"wins": 0,
"peak_equity": 102026100.45499997,
- "max_drawdown": 0.13042967454557738,
+ "max_drawdown": 0.1391806493649452,
"last_exit": {
"403870": "2026-07-07",
"000660": "2026-06-29",
@@ -145,8 +103,10 @@
"214450": "2026-07-15",
"105560": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885375+09:00",
- "updated_at": "2026-07-27T15:28:06.201726+09:00"
+ "updated_at": "2026-07-28T15:28:01.132800+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v315/trades.jsonl b/agents/stock/workspace/state/sim/variants/v315/trades.jsonl
index aea2360..a216779 100644
--- a/agents/stock/workspace/state/sim/variants/v315/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v315/trades.jsonl
@@ -46,3 +46,5 @@
{"ts": "2026-07-24T14:38:01.213664+09:00", "side": "BUY", "code": "086790", "name": "하나금융지주", "price": 134700, "qty": 44, "cost": 5927689, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 121972, "target": 166520, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "134,700 vs 118,980"}, {"label": "정배열(5>20)", "ok": true, "detail": "123,540 / 118,980"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "123,540 / 118,643"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+37.7%p"}, {"label": "수급(3일 외/기)", "ok": true, "detail": "외 +150 · 기 -45 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+20%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 0.37% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 130,700"}, {"label": "거래량 급증", "ok": true, "detail": "1,262,131 (환산) vs 평균 1,026,357"}, {"label": "회전율 급증", "ok": true, "detail": "0.46% (환산) vs 평균 0.37%"}, {"label": "RSI", "ok": true, "detail": "64"}]}
{"ts": "2026-07-27T09:04:07.671981+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 227, "proceeds": 2764000, "entry_price": 14920, "pnl": -623348, "pnl_pct": -18.23, "hold_from": "2026-07-24T09:04:10.761297+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,416 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 21,180"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,547"}]}
{"ts": "2026-07-27T09:06:01.995433+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 390, "cost": 7477421, "path": "pullback", "reason": "눌림목 지정가 19,314 도달", "stop": 17760, "target": 22695, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(3일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 19,314 (현재 19,060)"}]}
+{"ts": "2026-07-28T13:54:01.328836+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 121700, "qty": 44, "proceeds": 5344358, "entry_price": 134700, "pnl": -583331, "pnl_pct": -9.65, "hold_from": "2026-07-24T14:38:01.213662+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "121,972 (현재 121,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 166,520"}, {"label": "추세(20일선)", "ok": true, "detail": "118,335"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 138,014"}]}
+{"ts": "2026-07-28T14:36:04.093206+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 128200, "qty": 71, "proceeds": 9084451, "entry_price": 128214, "pnl": -20115, "pnl_pct": -0.01, "hold_from": "2026-07-08T09:08:02.857932+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "112,415 (현재 128,200)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 167,712"}, {"label": "추세(20일선)", "ok": true, "detail": "108,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +105 · 기 +200"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v316/portfolio.json b/agents/stock/workspace/state/sim/variants/v316/portfolio.json
index e2d996d..13772ed 100644
--- a/agents/stock/workspace/state/sim/variants/v316/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v316/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 74390493.11949997,
+ "cash": 81516864.80949996,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 32,
- "entry_price": 124450.0,
- "entry_at": "2026-07-03T09:02:06.628378+09:00",
- "stop": 112596,
- "target": 160011,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 122,715 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 2053187.8058698708,
- "last_add_price": 126200
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 9,
- "entry_price": 151333.33333333334,
- "entry_at": "2026-07-08T09:48:03.263220+09:00",
- "stop": 116773,
- "target": 255013,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 156,707 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 755263.3109953183,
- "last_add_price": 158000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,12 +13,12 @@
"entry_at": "2026-07-21T12:06:01.286691+09:00",
"stop": 311688,
"target": 463381,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 1723041.949065203,
"last_add_price": 356000
@@ -81,38 +39,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,784 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 2775662.8581035994,
"last_add_price": 102600
- },
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 4,
- "entry_price": 647000,
- "entry_at": "2026-07-24T09:28:06.150017+09:00",
- "stop": 604000,
- "target": 776000,
- "peak": 652000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 743,486 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 2743131.9820333244,
- "last_add_price": 647000
}
},
- "realized_pnl": -8997115.395500025,
- "closed_trades": 56,
+ "realized_pnl": -9804333.565500025,
+ "closed_trades": 60,
"wins": 1,
"peak_equity": 100030682.08,
- "max_drawdown": 0.09035416706717743,
+ "max_drawdown": 0.09901835341459096,
"last_exit": {
"017670": "2026-06-23",
"178320": "2026-06-23",
@@ -121,7 +58,7 @@
"033640": "2026-06-24",
"010120": "2026-07-08",
"403870": "2026-07-07",
- "086790": "2026-06-26",
+ "086790": "2026-07-28",
"005935": "2026-07-01",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -130,13 +67,14 @@
"011070": "2026-07-24",
"003490": "2026-07-07",
"402340": "2026-07-21",
- "319660": "2026-07-13",
+ "319660": "2026-07-28",
"032830": "2026-07-24",
"004170": "2026-07-22",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"084370": "2026-07-09",
- "028260": "2026-07-16"
+ "028260": "2026-07-16",
+ "095610": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885385+09:00",
- "updated_at": "2026-07-27T15:28:06.203450+09:00"
+ "updated_at": "2026-07-28T15:28:01.134485+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v316/trades.jsonl b/agents/stock/workspace/state/sim/variants/v316/trades.jsonl
index 83c04b9..9826a04 100644
--- a/agents/stock/workspace/state/sim/variants/v316/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v316/trades.jsonl
@@ -127,3 +127,8 @@
{"ts": "2026-07-24T09:26:01.454358+09:00", "side": "BUY", "code": "032830", "name": "삼성생명", "price": 317500, "qty": 28, "cost": 8891334, "path": "pullback", "reason": "눌림목 지정가 410,169 도달", "stop": 317499, "target": 317503, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "317,000 vs 311,208"}, {"label": "정배열(5>60)", "ok": true, "detail": "436,100 / 311,208"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "436,100 / 311,208"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+9.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +160 · 기 -155 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+29%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.07% (환산) vs 평균 0.28% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 516,500"}, {"label": "거래량 급증", "ok": false, "detail": "133,180 (환산) vs 평균 563,003"}, {"label": "회전율 급증", "ok": false, "detail": "0.07% (환산) vs 평균 0.28%"}, {"label": "RSI", "ok": true, "detail": "41"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 410,169 (현재 317,000)"}]}
{"ts": "2026-07-24T09:28:05.783925+09:00", "side": "SELL", "code": "032830", "name": "삼성생명", "price": 316500, "qty": 28, "proceeds": 8844719, "entry_price": 317500, "pnl": -46614, "pnl_pct": -0.31, "hold_from": "2026-07-24T09:26:01.454356+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "317,499 (현재 317,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 317,503"}, {"label": "추세(60일선)", "ok": true, "detail": "311,208"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +160 · 기 -155"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 337,683"}]}
{"ts": "2026-07-24T09:28:06.150034+09:00", "side": "BUY", "code": "034730", "name": "SK", "price": 647000, "qty": 4, "cost": 2588388, "path": "pullback", "reason": "눌림목 지정가 743,486 도달", "stop": 604000, "target": 776000, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "647,000 vs 528,983"}, {"label": "정배열(5>60)", "ok": true, "detail": "747,400 / 528,983"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "747,400 / 528,983"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -98 · 기 +101 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+32%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.50% (환산) vs 평균 0.45% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 883,000"}, {"label": "거래량 급증", "ok": false, "detail": "364,040 (환산) vs 평균 329,863"}, {"label": "회전율 급증", "ok": false, "detail": "0.50% (환산) vs 평균 0.45%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 743,486 (현재 647,000)"}]}
+{"ts": "2026-07-28T09:00:26.629696+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 4, "proceeds": 2319468, "entry_price": 647000, "pnl": -268920, "pnl_pct": -10.2, "hold_from": "2026-07-24T09:28:06.150017+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 776,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 684,971"}]}
+{"ts": "2026-07-28T09:00:26.631434+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 67, "cost": 8986048, "path": "pullback", "reason": "눌림목 지정가 167,383 도달", "stop": 134099, "target": 134103, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 167,383 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.255754+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 67, "proceeds": 8726450, "entry_price": 134100, "pnl": -259598, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:26.631427+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,103"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:50:01.898103+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 122800, "qty": 9, "proceeds": 1103045, "entry_price": 151333, "pnl": -259159, "pnl_pct": -18.85, "hold_from": "2026-07-08T09:48:03.263220+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "116,773 (현재 122,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 255,013"}, {"label": "추세(60일선)", "ok": true, "detail": "99,163"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:08:07.116385+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124100, "qty": 32, "proceeds": 3963456, "entry_price": 124450, "pnl": -19541, "pnl_pct": -0.28, "hold_from": "2026-07-03T09:02:06.628378+09:00", "reason": "시간손절 — 25일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "112,596 (현재 124,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 160,011"}, {"label": "추세(60일선)", "ok": true, "detail": "118,467"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v317/portfolio.json b/agents/stock/workspace/state/sim/variants/v317/portfolio.json
index 3e8e2dd..a815cd0 100644
--- a/agents/stock/workspace/state/sim/variants/v317/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v317/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 73760556.89550003,
+ "cash": 82189233.03200004,
"initial": 100000000,
"positions": {
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 46,
- "entry_price": 130400.0,
- "entry_at": "2026-07-08T09:28:03.791048+09:00",
- "stop": 118551,
- "target": 165948,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 3077257.8639161275,
- "last_add_price": 132400
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 17,
- "entry_price": 151647.0588235294,
- "entry_at": "2026-07-08T09:48:03.266436+09:00",
- "stop": 122847,
- "target": 238047,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 156,707 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1363328.9004981436,
- "last_add_price": 158000
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,64 +13,43 @@
"entry_at": "2026-07-16T09:04:05.946087+09:00",
"stop": 315861,
"target": 441416,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3295504.677737418,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
+ "090850": {
+ "code": "090850",
+ "name": "현대이지웰",
"sources": [
"auto"
],
- "qty": 28,
- "entry_price": 136500,
- "entry_at": "2026-07-20T09:42:01.363518+09:00",
- "stop": 126311,
- "target": 167067,
- "peak": 137400,
+ "qty": 724,
+ "entry_price": 6240,
+ "entry_at": "2026-07-28T09:50:02.317649+09:00",
+ "stop": 5853,
+ "target": 7400,
+ "peak": 6300,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 6240,
"tranches": 1,
- "tranche_value": 3849202.3038057717,
- "last_add_price": 136500
- },
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 123,
- "entry_price": 13510,
- "entry_at": "2026-07-27T09:04:07.676892+09:00",
- "stop": 11220,
- "target": 20380,
- "peak": 13730,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 13,973 도달",
- "cur_price": 12880,
- "tranches": 1,
- "tranche_value": 1674928.5529965726,
- "last_add_price": 13510
+ "tranche_value": 4522157.472173026,
+ "last_add_price": 6240
}
},
- "realized_pnl": -5925766.510000013,
- "closed_trades": 22,
+ "realized_pnl": -7040891.729000015,
+ "closed_trades": 26,
"wins": 1,
"peak_equity": 100973538.872,
- "max_drawdown": 0.06907625071794056,
+ "max_drawdown": 0.07715353870953867,
"last_exit": {
"403870": "2026-07-02",
"003490": "2026-07-07",
@@ -123,8 +60,12 @@
"030000": "2026-07-16",
"319660": "2026-07-13",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885394+09:00",
- "updated_at": "2026-07-27T15:28:06.205154+09:00"
+ "updated_at": "2026-07-28T15:28:01.136082+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v317/trades.jsonl b/agents/stock/workspace/state/sim/variants/v317/trades.jsonl
index d54593a..3a4c0e5 100644
--- a/agents/stock/workspace/state/sim/variants/v317/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v317/trades.jsonl
@@ -58,3 +58,8 @@
{"ts": "2026-07-24T09:08:05.983425+09:00", "side": "BUY", "code": "024060", "name": "흥구석유", "price": 14870, "qty": 152, "cost": 2260579, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 12992, "target": 20504, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "14,880 vs 10,978"}, {"label": "정배열(5>20)", "ok": true, "detail": "13,294 / 10,978"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "13,294 / 12,698"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+60.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +208 · 기 -2 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "65.83% (환산) vs 평균 31.47% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 13,990"}, {"label": "거래량 급증", "ok": true, "detail": "9,875,493 (환산) vs 평균 4,720,532"}, {"label": "회전율 급증", "ok": true, "detail": "65.83% (환산) vs 평균 31.47%"}, {"label": "RSI", "ok": true, "detail": "69"}]}
{"ts": "2026-07-27T09:04:07.676569+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 152, "proceeds": 1850784, "entry_price": 14870, "pnl": -409795, "pnl_pct": -17.96, "hold_from": "2026-07-24T09:08:05.983423+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,992 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,504"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,497"}]}
{"ts": "2026-07-27T09:04:07.676894+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13510, "qty": 123, "cost": 1661979, "path": "pullback", "reason": "눌림목 지정가 13,973 도달", "stop": 11220, "target": 20380, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "13,510 vs 12,750"}, {"label": "정배열(5>20)", "ok": true, "detail": "14,450 / 12,750"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,450 / 13,274"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+3.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.20% (환산) vs 평균 1.47% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "120,893 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.20% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "51"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,973 (현재 13,510)"}]}
+{"ts": "2026-07-28T09:08:04.511560+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 122100, "qty": 17, "proceeds": 2071652, "entry_price": 151647, "pnl": -506734, "pnl_pct": -19.48, "hold_from": "2026-07-08T09:48:03.266436+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "122,847 (현재 122,200)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 238,047"}, {"label": "추세(20일선)", "ok": false, "detail": "134,525"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:50:02.317664+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6240, "qty": 724, "cost": 4518438, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 5853, "target": 7400, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "6,240 vs 5,351"}, {"label": "정배열(5>20)", "ok": true, "detail": "5,714 / 5,351"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,714 / 5,620"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+39.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +28 · 기 -3 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.51% (환산) vs 평균 0.22% (보류 6배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": true, "detail": "110,347 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": true, "detail": "0.51% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T10:08:02.883512+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 123, "proceeds": 1371231, "entry_price": 13510, "pnl": -290748, "pnl_pct": -17.32, "hold_from": "2026-07-27T09:04:07.676892+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,220 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,380"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,350"}]}
+{"ts": "2026-07-28T10:58:00.865309+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 126200, "qty": 28, "proceeds": 3526709, "entry_price": 136500, "pnl": -295864, "pnl_pct": -7.55, "hold_from": "2026-07-20T09:42:01.363518+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "126,311 (현재 126,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 167,067"}, {"label": "추세(20일선)", "ok": true, "detail": "118,550"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +135 · 기 -114"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 139,657"}]}
+{"ts": "2026-07-28T12:08:06.321565+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 130200, "qty": 46, "proceeds": 5977521, "entry_price": 130400, "pnl": -21779, "pnl_pct": -0.15, "hold_from": "2026-07-08T09:28:03.791048+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "118,551 (현재 130,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 165,948"}, {"label": "추세(20일선)", "ok": true, "detail": "108,840"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +111 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v318/portfolio.json b/agents/stock/workspace/state/sim/variants/v318/portfolio.json
index 86f92c8..9ae04ac 100644
--- a/agents/stock/workspace/state/sim/variants/v318/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v318/portfolio.json
@@ -1,49 +1,7 @@
{
- "cash": 46179234.42999998,
+ "cash": 65934436.51999998,
"initial": 100000000,
"positions": {
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 86,
- "entry_price": 126537.20930232559,
- "entry_at": "2026-07-07T09:48:10.360377+09:00",
- "stop": 118178,
- "target": 155796,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 124,180 도달",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 5518683.331428246,
- "last_add_price": 129300
- },
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 69,
- "entry_price": 129366.66666666667,
- "entry_at": "2026-07-08T09:22:06.900961+09:00",
- "stop": 119097,
- "target": 165310,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 4480079.290234277,
- "last_add_price": 131700
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -55,12 +13,12 @@
"entry_at": "2026-07-21T09:02:07.242017+09:00",
"stop": 306986,
"target": 422924,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4808309.617830769,
"last_add_price": 338000
@@ -76,19 +34,19 @@
"entry_at": "2026-07-23T10:24:02.750343+09:00",
"stop": 5826,
"target": 7279,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "immediate",
"entry_reason": "조건 충족 — 즉시매수(눌림 안 기다림)",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 7028957.638179237,
"last_add_price": 6230
}
},
- "realized_pnl": -10638359.180500006,
- "closed_trades": 20,
+ "realized_pnl": -10694628.365500009,
+ "closed_trades": 22,
"wins": 0,
"peak_equity": 100025650.85,
"max_drawdown": 0.10316472547601535,
@@ -106,8 +64,10 @@
"055550": "2026-07-20",
"475150": "2026-07-08",
"030000": "2026-07-08",
- "095610": "2026-07-23"
+ "095610": "2026-07-23",
+ "086790": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885402+09:00",
- "updated_at": "2026-07-27T15:28:06.206909+09:00"
+ "updated_at": "2026-07-28T15:28:01.137682+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v318/trades.jsonl b/agents/stock/workspace/state/sim/variants/v318/trades.jsonl
index f919b28..98902ad 100644
--- a/agents/stock/workspace/state/sim/variants/v318/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v318/trades.jsonl
@@ -54,3 +54,5 @@
{"ts": "2026-07-23T10:24:02.390232+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 152100, "qty": 27, "proceeds": 4098692, "entry_price": 162911, "pnl": -300568, "pnl_pct": -6.64, "hold_from": "2026-07-10T09:00:33.987743+09:00", "reason": "추세·수급 이탈", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "137,951 (현재 152,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 250,271"}, {"label": "추세(10일선)", "ok": false, "detail": "152,780"}, {"label": "수급(외/기)", "ok": false, "detail": "외 -101 · 기 -107"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-23T10:24:02.750359+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6070, "qty": 1157, "cost": 7024043, "path": "immediate", "reason": "조건 충족 — 즉시매수(눌림 안 기다림)", "stop": 5755, "target": 7171, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "6,060 vs 5,559"}, {"label": "정배열(5>10)", "ok": true, "detail": "5,678 / 5,559"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "5,678 / 5,617"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+28.8%p"}, {"label": "수급(3일 외/기)", "ok": true, "detail": "외 +56 · 기 -1 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.07% (환산) vs 평균 0.22% (보류 7배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 5,700"}, {"label": "거래량 급증", "ok": false, "detail": "14,186 (환산) vs 평균 49,512"}, {"label": "회전율 급증", "ok": false, "detail": "0.07% (환산) vs 평균 0.22%"}, {"label": "RSI", "ok": true, "detail": "68"}, {"label": "눌림목 도달", "ok": false, "detail": "지정가 5,559 (현재 6,060)"}]}
{"ts": "2026-07-24T09:02:05.830232+09:00", "side": "BUY", "code": "090850", "name": "현대이지웰", "price": 6230, "qty": 1128, "cost": 7028494, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5755, "target": 7171, "signals": [{"label": "손절선", "ok": true, "detail": "5,755 (현재 6,210)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 7,171"}, {"label": "추세(10일선)", "ok": true, "detail": "5,574"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +39 · 기 +1"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 6,194"}]}
+{"ts": "2026-07-28T10:56:02.849502+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 126500, "qty": 86, "proceeds": 10857786, "entry_price": 126537, "pnl": -26046, "pnl_pct": -0.03, "hold_from": "2026-07-07T09:48:10.360377+09:00", "reason": "시간손절 — 21일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "118,178 (현재 126,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 155,796"}, {"label": "추세(10일선)", "ok": true, "detail": "120,210"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +135 · 기 -114"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:54:01.354332+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 129200, "qty": 69, "proceeds": 8897416, "entry_price": 129367, "pnl": -30223, "pnl_pct": -0.13, "hold_from": "2026-07-08T09:22:06.900961+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "119,097 (현재 129,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 165,310"}, {"label": "추세(10일선)", "ok": true, "detail": "108,400"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +111 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v319/portfolio.json b/agents/stock/workspace/state/sim/variants/v319/portfolio.json
index caadf7a..58fd428 100644
--- a/agents/stock/workspace/state/sim/variants/v319/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v319/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 71077398.34600002,
+ "cash": 82772548.24600002,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,32 +18,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,722 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 1589829.8696281747,
"last_add_price": 126000
},
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 21,
- "entry_price": 553000,
- "entry_at": "2026-07-20T09:00:36.181133+09:00",
- "stop": 561800,
- "target": 553002,
- "peak": 668000,
- "trailing_on": true,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 736,914 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 11944186.576062502,
- "last_add_price": 553000
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -60,7 +39,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,784 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 2198986.9706949466,
"last_add_price": 102600
@@ -81,17 +60,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 25,331 도달",
- "cur_price": 26500,
+ "cur_price": 25150,
"tranches": 2,
"tranche_value": 2159393.7298746845,
"last_add_price": 26750
}
},
- "realized_pnl": -5586951.8315000385,
- "closed_trades": 44,
- "wins": 1,
+ "realized_pnl": -5506543.881500039,
+ "closed_trades": 45,
+ "wins": 2,
"peak_equity": 100023011.56,
- "max_drawdown": 0.045061838083092214,
+ "max_drawdown": 0.058500171337972265,
"last_exit": {
"017670": "2026-06-23",
"178320": "2026-06-23",
@@ -111,11 +90,11 @@
"028260": "2026-07-16",
"214450": "2026-07-15",
"004170": "2026-07-22",
- "034730": "2026-07-16",
+ "034730": "2026-07-28",
"095610": "2026-07-16",
"402340": "2026-07-21",
"240810": "2026-07-24"
},
"created_at": "2026-06-22T09:00:04.885411+09:00",
- "updated_at": "2026-07-27T15:28:06.208634+09:00"
+ "updated_at": "2026-07-28T15:28:01.139328+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v319/trades.jsonl b/agents/stock/workspace/state/sim/variants/v319/trades.jsonl
index 9a83edf..c00b6e6 100644
--- a/agents/stock/workspace/state/sim/variants/v319/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v319/trades.jsonl
@@ -97,3 +97,4 @@
{"ts": "2026-07-24T09:56:05.222204+09:00", "side": "SELL", "code": "012330", "name": "현대모비스", "price": 502000, "qty": 23, "proceeds": 11523485, "entry_price": 505000, "pnl": -93257, "pnl_pct": -0.59, "hold_from": "2026-07-24T09:54:01.187143+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "504,999 (현재 503,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 505,002"}, {"label": "추세(60일선)", "ok": false, "detail": "503,350"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +58"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 540,079"}]}
{"ts": "2026-07-24T11:04:02.057318+09:00", "side": "BUY", "code": "003490", "name": "대한항공", "price": 25350, "qty": 85, "cost": 2155073, "path": "pullback", "reason": "눌림목 지정가 25,331 도달", "stop": 23650, "target": 27900, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "25,300 vs 25,157"}, {"label": "정배열(5>60)", "ok": true, "detail": "25,400 / 25,157"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "25,400 / 25,157"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.2%p"}, {"label": "수급(10일 외/기)", "ok": true, "detail": "외 +48 · 기 -439 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.9/5"}, {"label": "상승여력", "ok": true, "detail": "+44%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.10% (환산) vs 평균 0.58% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 28,400"}, {"label": "거래량 급증", "ok": false, "detail": "4,023,674 (환산) vs 평균 2,146,231"}, {"label": "회전율 급증", "ok": false, "detail": "1.10% (환산) vs 평균 0.58%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 25,331 (현재 25,300)"}]}
{"ts": "2026-07-27T09:02:08.320062+09:00", "side": "BUY", "code": "003490", "name": "대한항공", "price": 26750, "qty": 80, "cost": 2140321, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 23650, "target": 27900, "signals": [{"label": "손절선", "ok": true, "detail": "23,650 (현재 26,650)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 27,900"}, {"label": "추세(60일선)", "ok": true, "detail": "25,179"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +894 · 기 -281"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 25,963"}]}
+{"ts": "2026-07-28T09:24:03.035666+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 558000, "qty": 21, "proceeds": 11695150, "entry_price": 553000, "pnl": 80408, "pnl_pct": 0.9, "hold_from": "2026-07-20T09:00:36.181133+09:00", "reason": "트레일링 익절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "561,800 (현재 559,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "트레일링 ON"}, {"label": "추세(60일선)", "ok": true, "detail": "527,517"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v320/portfolio.json b/agents/stock/workspace/state/sim/variants/v320/portfolio.json
index 91e3d7f..b913fd8 100644
--- a/agents/stock/workspace/state/sim/variants/v320/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v320/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 70945222.26749998,
+ "cash": 74688004.84749998,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 9,
- "entry_price": 151333.33333333334,
- "entry_at": "2026-07-08T09:48:03.274655+09:00",
- "stop": 109093,
- "target": 235813,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 156,707 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 767499.0884707351,
- "last_add_price": 158000
- },
"086790": {
"code": "086790",
"name": "하나금융지주",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,722 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 2456847.6228259695,
"last_add_price": 126000
@@ -55,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.293368+09:00",
"stop": 303260,
"target": 442313,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 1749831.3969574722,
"last_add_price": 356000
@@ -81,38 +60,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,784 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 3444138.305309807,
"last_add_price": 102600
- },
- "034730": {
- "code": "034730",
- "name": "SK",
- "sources": [
- "auto"
- ],
- "qty": 5,
- "entry_price": 647000,
- "entry_at": "2026-07-24T09:28:06.178779+09:00",
- "stop": 604000,
- "target": 733000,
- "peak": 652000,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 743,486 도달",
- "cur_price": 623000,
- "tranches": 1,
- "tranche_value": 3403457.2653385173,
- "last_add_price": 647000
}
},
- "realized_pnl": -9724178.577500029,
- "closed_trades": 60,
+ "realized_pnl": -10579085.547500027,
+ "closed_trades": 63,
"wins": 1,
"peak_equity": 100038352.6,
- "max_drawdown": 0.09746792184280743,
+ "max_drawdown": 0.1073932894062873,
"last_exit": {
"017670": "2026-06-23",
"178320": "2026-06-23",
@@ -129,15 +87,16 @@
"011070": "2026-07-24",
"240810": "2026-07-24",
"402340": "2026-07-21",
- "034730": "2026-07-21",
+ "034730": "2026-07-28",
"004170": "2026-07-22",
- "319660": "2026-07-13",
+ "319660": "2026-07-28",
"032830": "2026-07-24",
"222800": "2026-07-09",
"084370": "2026-07-09",
"003490": "2026-07-13",
- "028260": "2026-07-16"
+ "028260": "2026-07-16",
+ "095610": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885419+09:00",
- "updated_at": "2026-07-27T15:28:06.210359+09:00"
+ "updated_at": "2026-07-28T15:28:01.140980+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v320/trades.jsonl b/agents/stock/workspace/state/sim/variants/v320/trades.jsonl
index c4ddd95..31908d2 100644
--- a/agents/stock/workspace/state/sim/variants/v320/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v320/trades.jsonl
@@ -134,3 +134,7 @@
{"ts": "2026-07-24T09:26:01.463187+09:00", "side": "BUY", "code": "032830", "name": "삼성생명", "price": 317500, "qty": 28, "cost": 8891334, "path": "pullback", "reason": "눌림목 지정가 410,169 도달", "stop": 317499, "target": 317502, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "317,000 vs 311,208"}, {"label": "정배열(5>60)", "ok": true, "detail": "436,100 / 311,208"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "436,100 / 311,208"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+9.6%p"}, {"label": "수급(7일 외/기)", "ok": true, "detail": "외 +160 · 기 -155 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+29%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.07% (환산) vs 평균 0.28% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 516,500"}, {"label": "거래량 급증", "ok": false, "detail": "133,180 (환산) vs 평균 563,003"}, {"label": "회전율 급증", "ok": false, "detail": "0.07% (환산) vs 평균 0.28%"}, {"label": "RSI", "ok": true, "detail": "41"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 410,169 (현재 317,000)"}]}
{"ts": "2026-07-24T09:28:06.178222+09:00", "side": "SELL", "code": "032830", "name": "삼성생명", "price": 316500, "qty": 28, "proceeds": 8844719, "entry_price": 317500, "pnl": -46614, "pnl_pct": -0.31, "hold_from": "2026-07-24T09:26:01.463185+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "317,499 (현재 317,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 317,502"}, {"label": "추세(60일선)", "ok": true, "detail": "311,208"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +160 · 기 -155"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 337,683"}]}
{"ts": "2026-07-24T09:28:06.178783+09:00", "side": "BUY", "code": "034730", "name": "SK", "price": 647000, "qty": 5, "cost": 3235485, "path": "pullback", "reason": "눌림목 지정가 743,486 도달", "stop": 604000, "target": 733000, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "647,000 vs 528,983"}, {"label": "정배열(5>60)", "ok": true, "detail": "747,400 / 528,983"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "747,400 / 528,983"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+18.5%p"}, {"label": "수급(7일 외/기)", "ok": true, "detail": "외 -98 · 기 +101 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+32%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.50% (환산) vs 평균 0.45% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 883,000"}, {"label": "거래량 급증", "ok": false, "detail": "364,040 (환산) vs 평균 329,863"}, {"label": "회전율 급증", "ok": false, "detail": "0.50% (환산) vs 평균 0.45%"}, {"label": "RSI", "ok": true, "detail": "49"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 743,486 (현재 647,000)"}]}
+{"ts": "2026-07-28T09:00:27.052028+09:00", "side": "SELL", "code": "034730", "name": "SK", "price": 581000, "qty": 5, "proceeds": 2899335, "entry_price": 647000, "pnl": -336150, "pnl_pct": -10.2, "hold_from": "2026-07-24T09:28:06.178779+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "604,000 (현재 581,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 733,000"}, {"label": "추세(60일선)", "ok": true, "detail": "527,883"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -88 · 기 +62"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 684,971"}]}
+{"ts": "2026-07-28T09:00:27.052922+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 134100, "qty": 67, "cost": 8986048, "path": "pullback", "reason": "눌림목 지정가 167,383 도달", "stop": 134099, "target": 134102, "signals": [{"label": "추세(60일선 위)", "ok": true, "detail": "133,100 vs 112,777"}, {"label": "정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "추세 기울기(60일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "164,260 / 112,777"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+45.3%p"}, {"label": "수급(7일 외/기)", "ok": true, "detail": "외 +254 · 기 -283 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+37%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "1.24% (환산) vs 평균 2.68% (보류 4배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "359,853 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "1.24% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "47"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 167,383 (현재 133,100)"}]}
+{"ts": "2026-07-28T09:02:05.262409+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 130500, "qty": 67, "proceeds": 8726450, "entry_price": 134100, "pnl": -259598, "pnl_pct": -2.68, "hold_from": "2026-07-28T09:00:27.052914+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "134,099 (현재 130,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 134,102"}, {"label": "추세(60일선)", "ok": true, "detail": "112,735"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +254 · 기 -283"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 144,573"}]}
+{"ts": "2026-07-28T09:50:02.339931+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 122800, "qty": 9, "proceeds": 1103045, "entry_price": 151333, "pnl": -259159, "pnl_pct": -18.85, "hold_from": "2026-07-08T09:48:03.274655+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "109,093 (현재 122,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 235,813"}, {"label": "추세(60일선)", "ok": true, "detail": "99,163"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v321/portfolio.json b/agents/stock/workspace/state/sim/variants/v321/portfolio.json
index 88574b8..e854b6d 100644
--- a/agents/stock/workspace/state/sim/variants/v321/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v321/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 59638232.98699996,
+ "cash": 67849150.41499996,
"initial": 100000000,
"positions": {
- "010950": {
- "code": "010950",
- "name": "S-Oil",
- "sources": [
- "auto"
- ],
- "qty": 43,
- "entry_price": 129500.0,
- "entry_at": "2026-07-08T09:24:04.654041+09:00",
- "stop": 113701,
- "target": 161098,
- "peak": 156400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
- "tranches": 2,
- "tranche_value": 2896999.7554967864,
- "last_add_price": 131700
- },
"090850": {
"code": "090850",
"name": "현대이지웰",
@@ -34,12 +13,12 @@
"entry_at": "2026-07-14T09:46:02.030211+09:00",
"stop": 5498,
"target": 6912,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 4673122.761535364,
"last_add_price": 6030
@@ -55,12 +34,12 @@
"entry_at": "2026-07-16T09:04:05.955093+09:00",
"stop": 305060,
"target": 430615,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3126423.8386076577,
"last_add_price": 353000
@@ -81,32 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5091078.5264822515,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 238,
- "entry_price": 14265.966386554623,
- "entry_at": "2026-07-22T14:18:05.550301+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 1706288.264617075,
- "last_add_price": 14510
- },
"095610": {
"code": "095610",
"name": "테스",
@@ -123,17 +81,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1493180.7038367477,
"last_add_price": 155500
}
},
- "realized_pnl": -4648390.810000005,
- "closed_trades": 16,
+ "realized_pnl": -5402617.952000006,
+ "closed_trades": 18,
"wins": 1,
"peak_equity": 101868947.08549999,
- "max_drawdown": 0.06667710666332045,
+ "max_drawdown": 0.07247447143341405,
"last_exit": {
"403870": "2026-06-26",
"093370": "2026-07-07",
@@ -144,8 +102,10 @@
"003490": "2026-07-09",
"030000": "2026-07-15",
"095610": "2026-07-20",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "252990": "2026-07-28",
+ "010950": "2026-07-28"
},
"created_at": "2026-06-22T09:00:04.885428+09:00",
- "updated_at": "2026-07-27T15:28:06.212054+09:00"
+ "updated_at": "2026-07-28T15:28:01.142591+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v321/trades.jsonl b/agents/stock/workspace/state/sim/variants/v321/trades.jsonl
index a655b3e..ddf46f2 100644
--- a/agents/stock/workspace/state/sim/variants/v321/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v321/trades.jsonl
@@ -50,3 +50,5 @@
{"ts": "2026-07-24T09:00:22.601014+09:00", "side": "SELL", "code": "240810", "name": "원익IPS", "price": 111800, "qty": 9, "proceeds": 1004238, "entry_price": 142600, "pnl": -279355, "pnl_pct": -21.6, "hold_from": "2026-07-15T10:46:04.170879+09:00", "reason": "추세·수급 이탈", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "103,436 (현재 113,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 220,927"}, {"label": "추세(20일선)", "ok": false, "detail": "119,505"}, {"label": "수급(외/기)", "ok": false, "detail": "외 -480 · 기 -206"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 152,923"}]}
{"ts": "2026-07-24T09:00:22.602268+09:00", "side": "BUY", "code": "095610", "name": "테스", "price": 155500, "qty": 9, "cost": 1399710, "path": "pullback", "reason": "눌림목 지정가 158,093 도달", "stop": 117686, "target": 231128, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "155,000 vs 136,165"}, {"label": "정배열(5>20)", "ok": true, "detail": "171,640 / 136,165"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "171,640 / 99,700"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+44.3%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +200 · 기 -454 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+27%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "3.77% (환산) vs 평균 3.06% (보류 5배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 202,500"}, {"label": "거래량 급증", "ok": false, "detail": "730,327 (환산) vs 평균 591,925"}, {"label": "회전율 급증", "ok": false, "detail": "3.77% (환산) vs 평균 3.06%"}, {"label": "RSI", "ok": true, "detail": "59"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 158,093 (현재 155,000)"}]}
{"ts": "2026-07-24T09:28:06.183531+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 117, "cost": 1697925, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 19936, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,936"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
+{"ts": "2026-07-28T10:08:02.890205+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 238, "proceeds": 2653276, "entry_price": 14266, "pnl": -742533, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.550301+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T13:26:05.284667+09:00", "side": "SELL", "code": "010950", "name": "S-Oil", "price": 129500, "qty": 43, "proceeds": 5557641, "entry_price": 129500, "pnl": -11694, "pnl_pct": 0.0, "hold_from": "2026-07-08T09:24:04.654041+09:00", "reason": "시간손절 — 20일 보유·진전 없음(자본 회전)", "partial": false, "signals": [{"label": "손절선", "ok": true, "detail": "113,701 (현재 129,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 161,098"}, {"label": "추세(20일선)", "ok": true, "detail": "108,800"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +111 · 기 +211"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v4/portfolio.json b/agents/stock/workspace/state/sim/variants/v4/portfolio.json
index 7fc9327..4d67974 100644
--- a/agents/stock/workspace/state/sim/variants/v4/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v4/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 11539063.073999947,
+ "cash": 19079390.769499943,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 47,
- "entry_price": 167982.97872340426,
- "entry_at": "2026-06-24T09:46:04.735534+09:00",
- "stop": 131683,
- "target": 240583,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,264 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 4043603.119681299,
- "last_add_price": 179100
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5165873.995968748,
"last_add_price": 130800
@@ -55,12 +34,12 @@
"entry_at": "2026-07-14T09:40:04.983975+09:00",
"stop": 5498,
"target": 6912,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5300993.7131562475,
"last_add_price": 6030
@@ -76,37 +55,16 @@
"entry_at": "2026-07-16T09:04:02.201572+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5436208.582218748,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 38,
- "entry_price": 139800,
- "entry_at": "2026-07-16T09:18:06.336077+09:00",
- "stop": 125972,
- "target": 167456,
- "peak": 141200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5399809.308781248,
- "last_add_price": 139800
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -123,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5171696.920343747,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 531,
- "entry_price": 14265.93220338983,
- "entry_at": "2026-07-22T14:18:05.378436+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3796251.28915362,
- "last_add_price": 14510
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -165,17 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 4918301.825124997,
"last_add_price": 19170
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 1308,
+ "entry_price": 6936.3302752293575,
+ "entry_at": "2026-07-28T09:00:13.884588+09:00",
+ "stop": 5741,
+ "target": 9327,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 4540974.262172914,
+ "last_add_price": 7100
}
},
- "realized_pnl": -21294733.506500024,
- "closed_trades": 25,
+ "realized_pnl": -25466252.324500028,
+ "closed_trades": 28,
"wins": 1,
"peak_equity": 101588073.90899995,
- "max_drawdown": 0.23222126306019106,
+ "max_drawdown": 0.2729909336044918,
"last_exit": {
"030000": "2026-07-15",
"003490": "2026-07-13",
@@ -190,8 +148,11 @@
"214450": "2026-07-15",
"105560": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943227+09:00",
- "updated_at": "2026-07-27T15:28:06.048686+09:00"
+ "updated_at": "2026-07-28T15:28:00.983135+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v4/trades.jsonl b/agents/stock/workspace/state/sim/variants/v4/trades.jsonl
index 1c7649c..d535ee3 100644
--- a/agents/stock/workspace/state/sim/variants/v4/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v4/trades.jsonl
@@ -75,3 +75,8 @@
{"ts": "2026-07-24T09:28:04.903729+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 261, "cost": 3787678, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 19936, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,936"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-27T09:04:04.827024+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 324, "proceeds": 3945092, "entry_price": 14920, "pnl": -889713, "pnl_pct": -18.23, "hold_from": "2026-07-24T09:04:10.573747+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,416 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,928"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,547"}]}
{"ts": "2026-07-27T09:06:01.028062+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 256, "cost": 4908256, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21990, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,060)"}]}
+{"ts": "2026-07-28T09:00:12.905246+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 47, "proceeds": 5919834, "entry_price": 167983, "pnl": -1976551, "pnl_pct": -24.87, "hold_from": "2026-06-24T09:46:04.735534+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "131,683 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 240,583"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:13.884606+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 669, "cost": 4536500, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 9085, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.692586+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 639, "cost": 4537581, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 9085, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,085"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.720586+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 531, "proceeds": 5919704, "entry_price": 14266, "pnl": -1656642, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.378436+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:06:00.824643+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 125900, "qty": 38, "proceeds": 4774871, "entry_price": 139800, "pnl": -538326, "pnl_pct": -9.94, "hold_from": "2026-07-16T09:18:06.336077+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,972 (현재 125,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 167,456"}, {"label": "추세(20일선)", "ok": true, "detail": "118,540"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,971"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v40/portfolio.json b/agents/stock/workspace/state/sim/variants/v40/portfolio.json
index 2697b84..8d44003 100644
--- a/agents/stock/workspace/state/sim/variants/v40/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v40/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 11048288.007499969,
+ "cash": 22373440.553999968,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 46,
- "entry_price": 157065.21739130435,
- "entry_at": "2026-06-23T15:12:01.415849+09:00",
- "stop": 119594,
- "target": 269479,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 157,386 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 3673653.508228102,
- "last_add_price": 163900
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5048122.616093748,
"last_add_price": 130800
@@ -55,12 +34,12 @@
"entry_at": "2026-07-14T09:40:04.988375+09:00",
"stop": 5498,
"target": 7383,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5189689.564218748,
"last_add_price": 6030
@@ -76,37 +55,16 @@
"entry_at": "2026-07-16T09:04:02.211196+09:00",
"stop": 305399,
"target": 472804,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5321475.422124998,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 37,
- "entry_price": 139800,
- "entry_at": "2026-07-16T09:18:06.346405+09:00",
- "stop": 125972,
- "target": 181284,
- "peak": 141200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5285970.523687498,
- "last_add_price": 139800
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -123,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5058668.1596249975,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 519,
- "entry_price": 14265.838150289017,
- "entry_at": "2026-07-22T14:18:05.381726+09:00",
- "stop": 11223,
- "target": 23395,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3712540.998326345,
- "last_add_price": 14510
- },
"030000": {
"code": "030000",
"name": "제일기획",
@@ -165,17 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 4811346.680156248,
"last_add_price": 19170
+ },
+ "138040": {
+ "code": "138040",
+ "name": "메리츠금융지주",
+ "sources": [
+ "auto"
+ ],
+ "qty": 39,
+ "entry_price": 117600,
+ "entry_at": "2026-07-28T12:56:02.834691+09:00",
+ "stop": 111200,
+ "target": 136800,
+ "peak": 118900,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 117,994 도달",
+ "cur_price": 118600,
+ "tranches": 1,
+ "tranche_value": 4617848.732749999,
+ "last_add_price": 117600
}
},
- "realized_pnl": -23535160.98150002,
- "closed_trades": 27,
+ "realized_pnl": -27427460.71050002,
+ "closed_trades": 30,
"wins": 1,
"peak_equity": 102181273.23399998,
- "max_drawdown": 0.2533227900500172,
+ "max_drawdown": 0.2851062879524425,
"last_exit": {
"030000": "2026-07-16",
"003490": "2026-07-13",
@@ -192,8 +150,11 @@
"214450": "2026-07-15",
"105560": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28",
+ "095610": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943590+09:00",
- "updated_at": "2026-07-27T15:28:06.051167+09:00"
+ "updated_at": "2026-07-28T15:28:00.985740+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v40/trades.jsonl b/agents/stock/workspace/state/sim/variants/v40/trades.jsonl
index 3497fb0..54ddf74 100644
--- a/agents/stock/workspace/state/sim/variants/v40/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v40/trades.jsonl
@@ -80,3 +80,7 @@
{"ts": "2026-07-24T09:28:04.906993+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 255, "cost": 3700605, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 22889, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,889"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-27T09:04:04.832149+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12200, "qty": 317, "proceeds": 3859859, "entry_price": 14920, "pnl": -870491, "pnl_pct": -18.23, "hold_from": "2026-07-24T09:04:10.585411+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,416 (현재 12,250)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 22,432"}, {"label": "추세(20일선)", "ok": true, "detail": "10,847"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 15,547"}]}
{"ts": "2026-07-27T09:06:01.036227+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19170, "qty": 250, "cost": 4793219, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 23400, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,060 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,598 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,598 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+17.2%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "153,733 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,060)"}]}
+{"ts": "2026-07-28T10:08:02.725669+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 519, "proceeds": 5785925, "entry_price": 14266, "pnl": -1619155, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.381726+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,395"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:06:00.831827+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 125900, "qty": 37, "proceeds": 4649216, "entry_price": 139800, "pnl": -524160, "pnl_pct": -9.94, "hold_from": "2026-07-16T09:18:06.346405+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,972 (현재 125,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 181,284"}, {"label": "추세(20일선)", "ok": true, "detail": "118,540"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,971"}]}
+{"ts": "2026-07-28T12:56:02.834693+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 117600, "qty": 39, "cost": 4587088, "path": "pullback", "reason": "눌림목 지정가 117,994 도달", "stop": 111200, "target": 136800, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "117,500 vs 113,430"}, {"label": "정배열(5>20)", "ok": true, "detail": "116,960 / 113,430"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "116,960 / 109,977"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+43.8%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +84 · 기 +324 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+26%"}, {"label": "시장 강세", "ok": false, "detail": "약세 — 돌파만 허용"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.17% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": false, "detail": "281,042 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": false, "detail": "0.17% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "56"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 117,994 (현재 117,500)"}]}
+{"ts": "2026-07-28T14:32:05.841451+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 119300, "qty": 46, "proceeds": 5477099, "entry_price": 157065, "pnl": -1748985, "pnl_pct": -24.04, "hold_from": "2026-06-23T15:12:01.415849+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "119,594 (현재 119,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 269,479"}, {"label": "추세(20일선)", "ok": false, "detail": "134,380"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +295 · 기 -583"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v41/portfolio.json b/agents/stock/workspace/state/sim/variants/v41/portfolio.json
index 4559318..96baad1 100644
--- a/agents/stock/workspace/state/sim/variants/v41/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v41/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 13230728.230999952,
+ "cash": 26795295.644499954,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5363919.985249998,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-15T09:26:01.630438+09:00",
"stop": 5564,
"target": 6788,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5574203.138812498,
"last_add_price": 6150
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 39,
- "entry_price": 139800,
- "entry_at": "2026-07-16T09:18:06.350310+09:00",
- "stop": 125972,
- "target": 160542,
- "peak": 141200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 5531857.794156248,
- "last_add_price": 139800
- },
"214450": {
"code": "214450",
"name": "파마리서치",
@@ -76,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.128627+09:00",
"stop": 307915,
"target": 413257,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5255953.704843747,
"last_add_price": 356000
@@ -102,53 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5321153.224531247,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 551,
- "entry_price": 14266.079854809437,
- "entry_at": "2026-07-22T14:18:05.384726+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 3938792.0277703167,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 21,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:00.950319+09:00",
- "stop": 120314,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 3459733.5046245283,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -165,23 +102,23 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5214752.794531247,
"last_add_price": 97000
}
},
- "realized_pnl": -17372153.76250002,
- "closed_trades": 26,
+ "realized_pnl": -20442991.285500024,
+ "closed_trades": 29,
"wins": 3,
"peak_equity": 101897668.8475,
- "max_drawdown": 0.19870072441796396,
+ "max_drawdown": 0.22986662470222652,
"last_exit": {
"030000": "2026-07-15",
"005930": "2026-06-23",
"035420": "2026-06-25",
"403870": "2026-07-07",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"009150": "2026-07-06",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -190,8 +127,10 @@
"003490": "2026-07-07",
"319660": "2026-07-22",
"105560": "2026-07-20",
- "055550": "2026-07-20"
+ "055550": "2026-07-20",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943599+09:00",
- "updated_at": "2026-07-27T15:28:06.053443+09:00"
+ "updated_at": "2026-07-28T15:28:00.988293+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v41/trades.jsonl b/agents/stock/workspace/state/sim/variants/v41/trades.jsonl
index 60b5247..91b6fad 100644
--- a/agents/stock/workspace/state/sim/variants/v41/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v41/trades.jsonl
@@ -78,3 +78,6 @@
{"ts": "2026-07-24T09:26:00.964081+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 94000, "qty": 55, "cost": 5170776, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 82349, "target": 111476, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "93,900 vs 75,355"}, {"label": "정배열(5>20)", "ok": true, "detail": "84,140 / 75,355"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "84,140 / 75,153"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+61.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 -113 · 기 +274 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+10%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.90% (환산) vs 평균 0.42% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 87,600"}, {"label": "거래량 급증", "ok": true, "detail": "829,560 (환산) vs 평균 392,182"}, {"label": "회전율 급증", "ok": true, "detail": "0.90% (환산) vs 평균 0.42%"}, {"label": "RSI", "ok": true, "detail": "72"}]}
{"ts": "2026-07-24T09:28:04.909847+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 271, "cost": 3932800, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 18460, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,460"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.156196+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 53, "cost": 5141771, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 111476, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 111,476"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
+{"ts": "2026-07-28T10:08:02.729188+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 551, "proceeds": 6142668, "entry_price": 14266, "pnl": -1719121, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.384726+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:06:00.834791+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 125900, "qty": 39, "proceeds": 4900525, "entry_price": 139800, "pnl": -552493, "pnl_pct": -9.94, "hold_from": "2026-07-16T09:18:06.350310+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,972 (현재 125,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 160,542"}, {"label": "추세(20일선)", "ok": true, "detail": "118,540"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,971"}]}
+{"ts": "2026-07-28T11:34:01.931015+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 120300, "qty": 21, "proceeds": 2521374, "entry_price": 158100, "pnl": -799224, "pnl_pct": -23.91, "hold_from": "2026-07-22T15:04:00.950319+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,314 (현재 120,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +285 · 기 -563"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,711"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v47/portfolio.json b/agents/stock/workspace/state/sim/variants/v47/portfolio.json
index 44ea631..39eb92e 100644
--- a/agents/stock/workspace/state/sim/variants/v47/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v47/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 21413876.080000028,
+ "cash": 21158117.200000025,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5241905.40054189,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-15T09:26:01.635270+09:00",
"stop": 5686,
"target": 6788,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5641745.372468753,
"last_add_price": 6150
@@ -55,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.131404+09:00",
"stop": 318434,
"target": 413243,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4924744.715894901,
"last_add_price": 356000
@@ -81,53 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5528357.121031252,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 383,
- "entry_price": 14265.6135770235,
- "entry_at": "2026-07-22T14:18:05.387610+09:00",
- "stop": 11983,
- "target": 18830,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2741987.3480135337,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 15,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:00.953744+09:00",
- "stop": 129761,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 2411493.837965508,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4688819.136059741,
"last_add_price": 97000
@@ -165,23 +123,44 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5453618.912812501,
"last_add_price": 19100
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 966,
+ "entry_price": 6936.356107660456,
+ "entry_at": "2026-07-28T09:00:14.245132+09:00",
+ "stop": 6040,
+ "target": 8729,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3351724.5744756954,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14024801.174000014,
- "closed_trades": 34,
+ "realized_pnl": -15415440.260500014,
+ "closed_trades": 36,
"wins": 3,
"peak_equity": 101509906.21500002,
- "max_drawdown": 0.1555594988094531,
+ "max_drawdown": 0.18598213434473912,
"last_exit": {
"030000": "2026-07-24",
"005930": "2026-06-23",
"035420": "2026-06-23",
"403870": "2026-07-02",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"093370": "2026-07-20",
"240810": "2026-07-24",
"009150": "2026-07-06",
@@ -191,8 +170,9 @@
"055550": "2026-07-20",
"319660": "2026-07-23",
"105560": "2026-07-20",
- "086790": "2026-07-21"
+ "086790": "2026-07-21",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943663+09:00",
- "updated_at": "2026-07-27T15:28:06.055701+09:00"
+ "updated_at": "2026-07-28T15:28:00.990689+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v47/trades.jsonl b/agents/stock/workspace/state/sim/variants/v47/trades.jsonl
index b303c8f..36e749f 100644
--- a/agents/stock/workspace/state/sim/variants/v47/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v47/trades.jsonl
@@ -97,3 +97,7 @@
{"ts": "2026-07-24T09:28:04.912734+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 188, "cost": 2728289, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11815, "target": 18460, "signals": [{"label": "손절선", "ok": true, "detail": "11,815 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,460"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.159257+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 48, "cost": 4656698, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 85262, "target": 111476, "signals": [{"label": "손절선", "ok": true, "detail": "85,262 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 111,476"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:05.733512+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 285, "cost": 5444317, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 18023, "target": 21254, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T09:00:14.243236+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 15, "proceeds": 1889309, "entry_price": 158100, "pnl": -482547, "pnl_pct": -20.18, "hold_from": "2026-07-22T15:04:00.953744+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "129,761 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,554"}]}
+{"ts": "2026-07-28T09:00:14.245139+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 494, "cost": 3349822, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5916, "target": 8509, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:02:04.711098+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11920, "qty": 383, "proceeds": 4556458, "entry_price": 14266, "pnl": -908092, "pnl_pct": -16.44, "hold_from": "2026-07-22T14:18:05.387610+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,983 (현재 11,960)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,830"}, {"label": "추세(20일선)", "ok": false, "detail": "12,673"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 -61"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:10:01.704469+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 472, "cost": 3351703, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8509, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,509"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v49/portfolio.json b/agents/stock/workspace/state/sim/variants/v49/portfolio.json
index 1cc3d79..95b8ebb 100644
--- a/agents/stock/workspace/state/sim/variants/v49/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v49/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 43811395.461499974,
+ "cash": 42013982.700499974,
"initial": 100000000,
"positions": {
"090850": {
@@ -13,12 +13,12 @@
"entry_at": "2026-07-15T09:26:01.639680+09:00",
"stop": 5686,
"target": 6604,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5884930.790312499,
"last_add_price": 6150
@@ -34,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.134375+09:00",
"stop": 318647,
"target": 397654,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5130167.1298944345,
"last_add_price": 356000
@@ -60,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5068034.013537591,
"last_add_price": 91400
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2134547.8966559134,
"last_add_price": 139000
@@ -102,38 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5801842.879062498,
"last_add_price": 19100
},
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 44,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:01.952162+09:00",
- "stop": 120030,
- "target": 139205,
- "peak": 127900,
+ "qty": 1013,
+ "entry_price": 6936.367226061205,
+ "entry_at": "2026-07-28T09:00:14.349558+09:00",
+ "stop": 6040,
+ "target": 8281,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5716335.486781249,
- "last_add_price": 127700
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3515877.8983157976,
+ "last_add_price": 7100
}
},
- "realized_pnl": -11056015.665500017,
- "closed_trades": 30,
+ "realized_pnl": -11445477.265500017,
+ "closed_trades": 31,
"wins": 4,
"peak_equity": 100822831.297,
- "max_drawdown": 0.1087552858260815,
+ "max_drawdown": 0.1313752889708241,
"last_exit": {
"030000": "2026-07-24",
"005930": "2026-06-23",
@@ -150,8 +150,9 @@
"086790": "2026-07-21",
"010950": "2026-07-27",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943683+09:00",
- "updated_at": "2026-07-27T15:28:06.058010+09:00"
+ "updated_at": "2026-07-28T15:28:00.993248+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v49/trades.jsonl b/agents/stock/workspace/state/sim/variants/v49/trades.jsonl
index b734f71..16ccb03 100644
--- a/agents/stock/workspace/state/sim/variants/v49/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v49/trades.jsonl
@@ -78,3 +78,6 @@
{"ts": "2026-07-27T09:30:01.130357+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 149900, "qty": 38, "cost": 5697054, "path": "pullback", "reason": "눌림목 지정가 157,993 도달", "stop": 149899, "target": 149902, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "149,800 vs 149,280"}, {"label": "정배열(5>20)", "ok": true, "detail": "167,600 / 149,280"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "167,600 / 113,055"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+61.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +274 · 기 -315 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+22%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.69% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "780,273 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "2.69% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "52"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 157,993 (현재 149,800)"}]}
{"ts": "2026-07-27T09:32:00.910287+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 38, "proceeds": 5631996, "entry_price": 149900, "pnl": -65058, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.130355+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,902"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T13:40:01.059253+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1087, "proceeds": 7355489, "entry_price": 7684, "pnl": -997974, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.157905+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,929"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:14.349565+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 518, "cost": 3512567, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 8077, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.707261+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 495, "cost": 3515027, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8077, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,077"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:40:00.828270+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 119100, "qty": 44, "proceeds": 5230181, "entry_price": 127700, "pnl": -389462, "pnl_pct": -6.73, "hold_from": "2026-07-27T09:18:01.952162+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,030 (현재 119,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 139,205"}, {"label": "추세(20일선)", "ok": true, "detail": "113,530"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,300"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v51/portfolio.json b/agents/stock/workspace/state/sim/variants/v51/portfolio.json
index 8cee3c3..79b7b4a 100644
--- a/agents/stock/workspace/state/sim/variants/v51/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v51/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 30394527.62499997,
+ "cash": 28811417.076999966,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5376905.59304502,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-15T09:26:01.643666+09:00",
"stop": 5686,
"target": 7155,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5789608.164124999,
"last_add_price": 6150
@@ -55,12 +55,12 @@
"entry_at": "2026-07-21T12:06:01.137140+09:00",
"stop": 318434,
"target": 444846,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 4981626.338033037,
"last_add_price": 356000
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4903174.469139825,
"last_add_price": 91400
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2049267.92655368,
"last_add_price": 139000
@@ -123,38 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5570046.781437498,
"last_add_price": 19100
},
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 43,
- "entry_price": 127700,
- "entry_at": "2026-07-27T09:18:01.954956+09:00",
- "stop": 120030,
- "target": 150710,
- "peak": 127900,
+ "qty": 965,
+ "entry_price": 6936.186528497409,
+ "entry_at": "2026-07-28T09:00:14.457978+09:00",
+ "stop": 6040,
+ "target": 9626,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5498155.875874998,
- "last_add_price": 127700
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3351469.653342013,
+ "last_add_price": 7100
}
},
- "realized_pnl": -15239508.703500014,
- "closed_trades": 28,
+ "realized_pnl": -15620118.903500015,
+ "closed_trades": 29,
"wins": 1,
"peak_equity": 100822831.297,
- "max_drawdown": 0.14960880861960937,
+ "max_drawdown": 0.1753336421184796,
"last_exit": {
"030000": "2026-07-24",
"005930": "2026-06-23",
@@ -170,8 +170,9 @@
"086790": "2026-07-21",
"095610": "2026-07-24",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943703+09:00",
- "updated_at": "2026-07-27T15:28:06.060239+09:00"
+ "updated_at": "2026-07-28T15:28:00.995496+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v51/trades.jsonl b/agents/stock/workspace/state/sim/variants/v51/trades.jsonl
index 01765a8..be95af5 100644
--- a/agents/stock/workspace/state/sim/variants/v51/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v51/trades.jsonl
@@ -77,3 +77,6 @@
{"ts": "2026-07-27T09:08:02.054916+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 507, "cost": 4010972, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6645, "target": 9944, "signals": [{"label": "손절선", "ok": true, "detail": "6,645 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,944"}, {"label": "추세(20일선)", "ok": true, "detail": "4,897"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:18:01.954958+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127700, "qty": 43, "cost": 5491924, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 120030, "target": 150710, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,400 vs 113,925"}, {"label": "정배열(5>20)", "ok": true, "detail": "118,940 / 113,925"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "118,940 / 110,142"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.26% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "439,847 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.26% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T13:40:01.062009+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1044, "proceeds": 7064517, "entry_price": 7684, "pnl": -958446, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.171112+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,174"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:14.457983+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 494, "cost": 3349822, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 9373, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.709892+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 471, "cost": 3344602, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 9373, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,373"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:40:00.832616+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 119100, "qty": 43, "proceeds": 5111313, "entry_price": 127700, "pnl": -380610, "pnl_pct": -6.73, "hold_from": "2026-07-27T09:18:01.954956+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,030 (현재 119,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 150,710"}, {"label": "추세(20일선)", "ok": true, "detail": "113,530"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,300"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v57/portfolio.json b/agents/stock/workspace/state/sim/variants/v57/portfolio.json
index c731c8a..1fd746f 100644
--- a/agents/stock/workspace/state/sim/variants/v57/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v57/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 31711586.31399999,
+ "cash": 37097882.514999986,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4170396.505155157,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4631043.743609013,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-13T09:06:07.831563+09:00",
"stop": 302899,
"target": 426953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3853827.2535399394,
"last_add_price": 350000
@@ -76,12 +76,12 @@
"entry_at": "2026-07-15T09:26:01.647385+09:00",
"stop": 5564,
"target": 7033,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5801931.81075,
"last_add_price": 6150
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3808102.9082436445,
"last_add_price": 91400
@@ -123,32 +123,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5827047.345624999,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 814,
- "entry_price": 7683.513513513513,
- "entry_at": "2026-07-27T09:02:06.177893+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3132144.0021467046,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -165,17 +144,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2144800.7490822505,
"last_add_price": 13150
}
},
- "realized_pnl": -9987559.869500007,
- "closed_trades": 15,
+ "realized_pnl": -10856581.825500008,
+ "closed_trades": 16,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.0962988368600002,
+ "max_drawdown": 0.11630617485000014,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -185,8 +164,9 @@
"214450": "2026-07-06",
"093370": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943761+09:00",
- "updated_at": "2026-07-27T15:28:06.062263+09:00"
+ "updated_at": "2026-07-28T15:28:00.997679+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v57/trades.jsonl b/agents/stock/workspace/state/sim/variants/v57/trades.jsonl
index 02d31c8..454b2cb 100644
--- a/agents/stock/workspace/state/sim/variants/v57/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v57/trades.jsonl
@@ -50,3 +50,4 @@
{"ts": "2026-07-27T09:08:02.057470+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 395, "cost": 3124919, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6370, "target": 9669, "signals": [{"label": "손절선", "ok": true, "detail": "6,370 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,669"}, {"label": "추세(10일선)", "ok": true, "detail": "5,434"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:10:01.010928+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 364, "proceeds": 4370381, "entry_price": 14585, "pnl": -939295, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.448900+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,593"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.063762+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 163, "cost": 2143772, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 18770, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
+{"ts": "2026-07-28T11:22:00.719019+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 814, "proceeds": 5386296, "entry_price": 7684, "pnl": -869022, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.177893+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v59/portfolio.json b/agents/stock/workspace/state/sim/variants/v59/portfolio.json
index 0085dc1..58f5aca 100644
--- a/agents/stock/workspace/state/sim/variants/v59/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v59/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 32195127.971999995,
+ "cash": 37621126.602,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4200692.986817652,
"last_add_price": 136900
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 4664583.432162063,
"last_add_price": 134300
@@ -55,12 +55,12 @@
"entry_at": "2026-07-13T09:06:07.843499+09:00",
"stop": 302899,
"target": 406277,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3881692.4296628344,
"last_add_price": 350000
@@ -76,12 +76,12 @@
"entry_at": "2026-07-15T09:26:01.651076+09:00",
"stop": 5564,
"target": 6788,
- "peak": 6250,
+ "peak": 6330,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 6220,
+ "cur_price": 6240,
"tranches": 2,
"tranche_value": 5844217.815187501,
"last_add_price": 6150
@@ -102,7 +102,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3836130.6371969497,
"last_add_price": 91400
@@ -123,32 +123,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5869182.133875,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 820,
- "entry_price": 7683.5609756097565,
- "entry_at": "2026-07-27T09:02:06.183509+09:00",
- "stop": 6577,
- "target": 9344,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3155028.7181680235,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -165,17 +144,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2160433.1890129894,
"last_add_price": 13150
}
},
- "realized_pnl": -9322030.91750001,
- "closed_trades": 15,
+ "realized_pnl": -10197497.36550001,
+ "closed_trades": 16,
"wins": 0,
"peak_equity": 100000000,
- "max_drawdown": 0.08967262027999998,
+ "max_drawdown": 0.10972583398000002,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -185,8 +164,9 @@
"214450": "2026-07-06",
"093370": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943780+09:00",
- "updated_at": "2026-07-27T15:28:06.064260+09:00"
+ "updated_at": "2026-07-28T15:28:00.999806+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v59/trades.jsonl b/agents/stock/workspace/state/sim/variants/v59/trades.jsonl
index 90f162e..f33016d 100644
--- a/agents/stock/workspace/state/sim/variants/v59/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v59/trades.jsonl
@@ -49,3 +49,4 @@
{"ts": "2026-07-27T09:08:02.059935+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7910, "qty": 398, "cost": 3148652, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6370, "target": 9119, "signals": [{"label": "손절선", "ok": true, "detail": "6,370 (현재 7,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,119"}, {"label": "추세(10일선)", "ok": true, "detail": "5,434"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +49 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,747"}]}
{"ts": "2026-07-27T09:10:01.013596+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 367, "proceeds": 4406401, "entry_price": 14586, "pnl": -947542, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.451835+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,082 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,342"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.066102+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 164, "cost": 2156923, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 17365, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
+{"ts": "2026-07-28T11:22:00.721493+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 820, "proceeds": 5425999, "entry_price": 7684, "pnl": -875466, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.183509+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,344"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v81/portfolio.json b/agents/stock/workspace/state/sim/variants/v81/portfolio.json
index 4bc1a3f..d807495 100644
--- a/agents/stock/workspace/state/sim/variants/v81/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v81/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 42376945.79249998,
+ "cash": 40788004.08349998,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 5342670.471327519,
"last_add_price": 136900
@@ -34,12 +34,12 @@
"entry_at": "2026-07-21T12:06:01.144350+09:00",
"stop": 318647,
"target": 445059,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5037472.695242855,
"last_add_price": 356000
@@ -60,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 4937498.49310549,
"last_add_price": 90900
@@ -81,7 +81,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2066116.9225812238,
"last_add_price": 139000
@@ -102,38 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5615843.6254062485,
"last_add_price": 19100
},
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 43,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.329462+09:00",
- "stop": 120209,
- "target": 150974,
- "peak": 127900,
+ "qty": 972,
+ "entry_price": 6936.378600823045,
+ "entry_at": "2026-07-28T09:00:14.772290+09:00",
+ "stop": 6040,
+ "target": 9626,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5548271.202468749,
- "last_add_price": 127900
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3374384.2550529507,
+ "last_add_price": 7100
}
},
- "realized_pnl": -14388870.052500013,
- "closed_trades": 27,
+ "realized_pnl": -14735165.392500013,
+ "closed_trades": 28,
"wins": 1,
"peak_equity": 101012300.052,
- "max_drawdown": 0.14466529573108836,
+ "max_drawdown": 0.1704340556510192,
"last_exit": {
"030000": "2026-07-24",
"403870": "2026-07-02",
@@ -147,8 +147,9 @@
"086790": "2026-07-21",
"095610": "2026-07-24",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.943999+09:00",
- "updated_at": "2026-07-27T15:28:06.066243+09:00"
+ "updated_at": "2026-07-28T15:28:01.001881+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v81/trades.jsonl b/agents/stock/workspace/state/sim/variants/v81/trades.jsonl
index f468835..71526c1 100644
--- a/agents/stock/workspace/state/sim/variants/v81/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v81/trades.jsonl
@@ -73,3 +73,6 @@
{"ts": "2026-07-27T09:32:00.920017+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 36, "proceeds": 5335575, "entry_price": 149900, "pnl": -61634, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.140384+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,903"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T09:32:01.329478+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 43, "cost": 5500525, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 120209, "target": 150974, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,900 vs 113,950"}, {"label": "정배열(5>20)", "ok": true, "detail": "119,040 / 113,950"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T13:40:01.069627+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1052, "proceeds": 7118652, "entry_price": 7684, "pnl": -965841, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.189337+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,854 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,174"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:14.772298+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 497, "cost": 3370165, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 9373, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.717433+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 475, "cost": 3373006, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 9373, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,373"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:38:04.808540+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 120100, "qty": 43, "proceeds": 5154230, "entry_price": 127900, "pnl": -346295, "pnl_pct": -6.1, "hold_from": "2026-07-27T09:32:01.329462+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,209 (현재 120,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 150,974"}, {"label": "추세(20일선)", "ok": true, "detail": "113,560"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,460"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v87/portfolio.json b/agents/stock/workspace/state/sim/variants/v87/portfolio.json
index bf8cb5d..019e451 100644
--- a/agents/stock/workspace/state/sim/variants/v87/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v87/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 42348543.15550003,
+ "cash": 40529020.770000026,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5334313.7727854485,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4011361.8546706727,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.268000+09:00",
"stop": 305399,
"target": 472804,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3890688.706288562,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 301,
- "entry_price": 14266.013289036546,
- "entry_at": "2026-07-22T14:18:05.401485+09:00",
- "stop": 11223,
- "target": 23395,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2157486.0611028625,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3772217.360484817,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1885029.1859562935,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5741969.0092812525,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 746,
+ "entry_price": 6936.139410187668,
+ "entry_at": "2026-07-28T09:00:14.873040+09:00",
+ "stop": 5741,
+ "target": 10522,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2591468.525148829,
+ "last_add_price": 7100
}
},
- "realized_pnl": -12205771.01400001,
- "closed_trades": 18,
+ "realized_pnl": -13144871.35600001,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 101529111.72700004,
- "max_drawdown": 0.12796948924792806,
+ "max_drawdown": 0.1564925634306984,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -166,8 +166,9 @@
"055550": "2026-07-20",
"095610": "2026-07-23",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944063+09:00",
- "updated_at": "2026-07-27T15:28:06.068182+09:00"
+ "updated_at": "2026-07-28T15:28:01.003896+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v87/trades.jsonl b/agents/stock/workspace/state/sim/variants/v87/trades.jsonl
index 603f295..c4020ec 100644
--- a/agents/stock/workspace/state/sim/variants/v87/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v87/trades.jsonl
@@ -57,3 +57,6 @@
{"ts": "2026-07-27T09:12:01.454914+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 407, "cost": 3195429, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 11170, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.210781+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 385, "cost": 3195979, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 11170, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,170"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.208599+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 792, "proceeds": 5438335, "entry_price": 8069, "pnl": -953074, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.454895+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 11,389"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:14.873047+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 382, "cost": 2590348, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 10237, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.719745+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 364, "cost": 2584788, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 10237, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,237"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.747271+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 301, "proceeds": 3355614, "entry_price": 14266, "pnl": -939100, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.401485+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 23,395"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v89/portfolio.json b/agents/stock/workspace/state/sim/variants/v89/portfolio.json
index 4341e5f..33018a9 100644
--- a/agents/stock/workspace/state/sim/variants/v89/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v89/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 36063695.11600003,
+ "cash": 41373202.66150003,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 24,
- "entry_price": 167779.16666666666,
- "entry_at": "2026-06-24T09:46:04.764917+09:00",
- "stop": 131479,
- "target": 240379,
- "peak": 234500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,264 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 2079456.3546856907,
- "last_add_price": 179100
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 3953954.8215015037,
"last_add_price": 136900
@@ -55,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.271607+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3886029.232766459,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 138900,
- "entry_at": "2026-07-16T09:38:02.477249+09:00",
- "stop": 125072,
- "target": 166556,
- "peak": 138900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 4613669.033664595,
- "last_add_price": 138900
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -102,32 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5608975.567343752,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 291,
- "entry_price": 14265.876288659794,
- "entry_at": "2026-07-22T14:18:05.404041+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2082596.1140327216,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3542084.913907391,
"last_add_price": 97000
@@ -165,17 +102,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5482718.585687501,
"last_add_price": 19100
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 731,
+ "entry_price": 6936.279069767442,
+ "entry_at": "2026-07-28T09:00:14.978120+09:00",
+ "stop": 5741,
+ "target": 9327,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2537441.7479239595,
+ "last_add_price": 7100
}
},
- "realized_pnl": -12291789.368500013,
- "closed_trades": 24,
+ "realized_pnl": -14674785.525500014,
+ "closed_trades": 27,
"wins": 1,
"peak_equity": 101169385.00350003,
- "max_drawdown": 0.14258018754389945,
+ "max_drawdown": 0.17371818896983485,
"last_exit": {
"030000": "2026-07-24",
"035420": "2026-06-25",
@@ -187,8 +145,11 @@
"034730": "2026-07-07",
"003490": "2026-07-07",
"319660": "2026-07-23",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "095610": "2026-07-28",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944112+09:00",
- "updated_at": "2026-07-27T15:28:06.070055+09:00"
+ "updated_at": "2026-07-28T15:28:01.005871+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v89/trades.jsonl b/agents/stock/workspace/state/sim/variants/v89/trades.jsonl
index 33b502e..7aae837 100644
--- a/agents/stock/workspace/state/sim/variants/v89/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v89/trades.jsonl
@@ -73,3 +73,8 @@
{"ts": "2026-07-24T09:28:04.929097+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 143, "cost": 2075241, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 19936, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,936"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.176433+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 36, "cost": 3492524, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 117301, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 117,301"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:06.197534+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 287, "cost": 5482522, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21780, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T09:00:14.977067+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 126200, "qty": 24, "proceeds": 3022894, "entry_price": 167779, "pnl": -1004410, "pnl_pct": -24.78, "hold_from": "2026-06-24T09:46:04.764917+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "131,479 (현재 128,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 240,379"}, {"label": "추세(20일선)", "ok": false, "detail": "134,815"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:14.978125+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 374, "cost": 2536100, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 9085, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.722062+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 357, "cost": 2535080, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 9085, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,085"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.749549+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 291, "proceeds": 3244132, "entry_price": 14266, "pnl": -907861, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.404041+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:48:00.819571+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124900, "qty": 33, "proceeds": 4113663, "entry_price": 138900, "pnl": -470725, "pnl_pct": -10.08, "hold_from": "2026-07-16T09:38:02.477249+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,072 (현재 125,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 166,556"}, {"label": "추세(20일선)", "ok": true, "detail": "118,495"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,107"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v91/portfolio.json b/agents/stock/workspace/state/sim/variants/v91/portfolio.json
index fcd2c63..f782534 100644
--- a/agents/stock/workspace/state/sim/variants/v91/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v91/portfolio.json
@@ -1,28 +1,7 @@
{
- "cash": 40709553.120000005,
+ "cash": 57984131.8765,
"initial": 100000000,
"positions": {
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 22,
- "entry_price": 160909.0909090909,
- "entry_at": "2026-07-07T10:06:07.227558+09:00",
- "stop": 123940,
- "target": 234847,
- "peak": 230500,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 148,050 도달",
- "cur_price": 142000,
- "tranches": 2,
- "tranche_value": 1822449.0314863992,
- "last_add_price": 177000
- },
"010950": {
"code": "010950",
"name": "S-Oil",
@@ -39,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4062274.8724324326,
"last_add_price": 136900
@@ -55,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.274817+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3951428.5123865386,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 138900,
- "entry_at": "2026-07-16T09:38:02.482317+09:00",
- "stop": 125072,
- "target": 166556,
- "peak": 138900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 4707153.839455019,
- "last_add_price": 138900
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3752319.512236461,
"last_add_price": 90900
@@ -123,59 +81,17 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5692204.9488125,
"last_add_price": 19100
- },
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 801,
- "entry_price": 7683.682896379526,
- "entry_at": "2026-07-27T09:02:06.201682+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3079722.3737350907,
- "last_add_price": 7910
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 44,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.351074+09:00",
- "stop": 117645,
- "target": 148411,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5634104.5824251585,
- "last_add_price": 127900
}
},
- "realized_pnl": -10703629.950500015,
- "closed_trades": 21,
+ "realized_pnl": -13337967.083500018,
+ "closed_trades": 25,
"wins": 1,
"peak_equity": 100686647.06200002,
- "max_drawdown": 0.1190045978452508,
+ "max_drawdown": 0.14085166880934288,
"last_exit": {
"030000": "2026-07-24",
"403870": "2026-07-07",
@@ -186,8 +102,12 @@
"319660": "2026-07-27",
"003490": "2026-07-13",
"105560": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "095610": "2026-07-28",
+ "003680": "2026-07-28",
+ "086790": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944132+09:00",
- "updated_at": "2026-07-27T15:28:06.071932+09:00"
+ "updated_at": "2026-07-28T15:28:01.007854+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v91/trades.jsonl b/agents/stock/workspace/state/sim/variants/v91/trades.jsonl
index 945f44c..b0fbae3 100644
--- a/agents/stock/workspace/state/sim/variants/v91/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v91/trades.jsonl
@@ -63,3 +63,7 @@
{"ts": "2026-07-27T09:30:01.147059+09:00", "side": "BUY", "code": "319660", "name": "피에스케이", "price": 149900, "qty": 37, "cost": 5547132, "path": "pullback", "reason": "눌림목 지정가 157,993 도달", "stop": 149899, "target": 149902, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "149,800 vs 149,280"}, {"label": "정배열(5>20)", "ok": true, "detail": "167,600 / 149,280"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "167,600 / 113,055"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+61.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +274 · 기 -315 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+22%"}, {"label": "목표가 리비전", "ok": true, "detail": "상향 ➕"}, {"label": "어닝 서프라이즈", "ok": true, "detail": "+ ➕"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "2.69% (환산) vs 평균 2.68% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 196,500"}, {"label": "거래량 급증", "ok": false, "detail": "780,273 (환산) vs 평균 777,376"}, {"label": "회전율 급증", "ok": false, "detail": "2.69% (환산) vs 평균 2.68%"}, {"label": "RSI", "ok": true, "detail": "52"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 157,993 (현재 149,800)"}]}
{"ts": "2026-07-27T09:32:01.350166+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 37, "proceeds": 5483786, "entry_price": 149900, "pnl": -63346, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.147058+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,902"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T09:32:01.351077+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 44, "cost": 5628444, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 148411, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,900 vs 113,950"}, {"label": "정배열(5>20)", "ok": true, "detail": "119,040 / 113,950"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T09:04:02.720972+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 123200, "qty": 22, "proceeds": 2705115, "entry_price": 160909, "pnl": -835416, "pnl_pct": -23.44, "hold_from": "2026-07-07T10:06:07.227558+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,940 (현재 123,600)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 234,847"}, {"label": "추세(20일선)", "ok": false, "detail": "134,595"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +269 · 기 -554"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:22:00.730356+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 801, "proceeds": 5300274, "entry_price": 7684, "pnl": -855279, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.201682+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(20일선)", "ok": true, "detail": "4,821"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:48:00.821960+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124900, "qty": 33, "proceeds": 4113663, "entry_price": 138900, "pnl": -470725, "pnl_pct": -10.08, "hold_from": "2026-07-16T09:38:02.482317+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,072 (현재 125,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 166,556"}, {"label": "추세(20일선)", "ok": true, "detail": "118,495"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,107"}]}
+{"ts": "2026-07-28T12:56:02.859377+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 44, "proceeds": 5155527, "entry_price": 127900, "pnl": -472917, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.351074+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,411"}, {"label": "추세(20일선)", "ok": true, "detail": "113,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v93/portfolio.json b/agents/stock/workspace/state/sim/variants/v93/portfolio.json
index 497c744..745550e 100644
--- a/agents/stock/workspace/state/sim/variants/v93/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v93/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 42348543.15550003,
+ "cash": 40529020.770000026,
"initial": 100000000,
"positions": {
"086790": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 122,215 도달",
- "cur_price": 131000,
+ "cur_price": 123300,
"tranches": 2,
"tranche_value": 5334313.7727854485,
"last_add_price": 126200
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4011361.8546706727,
"last_add_price": 136900
@@ -55,37 +55,16 @@
"entry_at": "2026-07-13T09:12:04.277995+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3890688.706288562,
"last_add_price": 353000
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 301,
- "entry_price": 14266.013289036546,
- "entry_at": "2026-07-22T14:18:05.408272+09:00",
- "stop": 11223,
- "target": 20352,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2157486.0611028625,
- "last_add_price": 14510
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -102,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3772217.360484817,
"last_add_price": 90900
@@ -123,7 +102,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 158,093 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 1885029.1859562935,
"last_add_price": 155500
@@ -144,17 +123,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,012 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5741969.0092812525,
"last_add_price": 18950
+ },
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
+ "sources": [
+ "auto"
+ ],
+ "qty": 746,
+ "entry_price": 6936.139410187668,
+ "entry_at": "2026-07-28T09:00:15.195211+09:00",
+ "stop": 5741,
+ "target": 9327,
+ "peak": 7780,
+ "trailing_on": false,
+ "scaled_out": false,
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,884 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 2591468.525148829,
+ "last_add_price": 7100
}
},
- "realized_pnl": -12205771.01400001,
- "closed_trades": 18,
+ "realized_pnl": -13144871.35600001,
+ "closed_trades": 19,
"wins": 0,
"peak_equity": 101529111.72700004,
- "max_drawdown": 0.12796948924792806,
+ "max_drawdown": 0.1564925634306984,
"last_exit": {
"030000": "2026-07-15",
"086790": "2026-06-23",
@@ -166,8 +166,9 @@
"055550": "2026-07-20",
"095610": "2026-07-23",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "252990": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944152+09:00",
- "updated_at": "2026-07-27T15:28:06.073738+09:00"
+ "updated_at": "2026-07-28T15:28:01.009741+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v93/trades.jsonl b/agents/stock/workspace/state/sim/variants/v93/trades.jsonl
index 6b54635..e0df1be 100644
--- a/agents/stock/workspace/state/sim/variants/v93/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v93/trades.jsonl
@@ -57,3 +57,6 @@
{"ts": "2026-07-27T09:12:01.479742+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7850, "qty": 407, "cost": 3195429, "path": "pullback", "reason": "눌림목 지정가 7,907 도달", "stop": 6743, "target": 10064, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,840 vs 5,428"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,526 / 5,428"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,526 / 4,895"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+91.4%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +49 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "11.17% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "693,433 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": true, "detail": "11.17% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": false, "detail": "80"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,907 (현재 7,840)"}]}
{"ts": "2026-07-27T12:56:04.218097+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 8300, "qty": 385, "cost": 3195979, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 6743, "target": 10064, "signals": [{"label": "손절선", "ok": true, "detail": "6,743 (현재 8,310)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,064"}, {"label": "추세(10일선)", "ok": true, "detail": "5,476"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 8,127"}]}
{"ts": "2026-07-27T13:38:04.215408+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6880, "qty": 792, "proceeds": 5438335, "entry_price": 8069, "pnl": -953074, "pnl_pct": -14.73, "hold_from": "2026-07-27T09:12:01.479738+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,962 (현재 6,900)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 10,282"}, {"label": "추세(10일선)", "ok": true, "detail": "5,334"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:15.195216+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 382, "cost": 2590348, "path": "pullback", "reason": "눌림목 지정가 7,884 도달", "stop": 5628, "target": 9085, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "7,050 vs 5,350"}, {"label": "정배열(5>10)", "ok": true, "detail": "6,368 / 5,350"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,884 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.726385+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 364, "cost": 2584788, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5628, "target": 9085, "signals": [{"label": "손절선", "ok": true, "detail": "5,628 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,085"}, {"label": "추세(10일선)", "ok": true, "detail": "5,354"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T10:08:02.753914+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 301, "proceeds": 3355614, "entry_price": 14266, "pnl": -939100, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.408272+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 20,352"}, {"label": "추세(10일선)", "ok": false, "detail": "12,695"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v95/portfolio.json b/agents/stock/workspace/state/sim/variants/v95/portfolio.json
index 25781e9..4d56e6e 100644
--- a/agents/stock/workspace/state/sim/variants/v95/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v95/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 55928872.10299996,
+ "cash": 54246812.08399997,
"initial": 100000000,
"positions": {
"214450": {
@@ -13,12 +13,12 @@
"entry_at": "2026-07-21T12:06:01.154873+09:00",
"stop": 318449,
"target": 397456,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 5187131.77934429,
"last_add_price": 356000
@@ -39,7 +39,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 5101002.197396387,
"last_add_price": 90900
@@ -60,7 +60,7 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 146,775 도달",
- "cur_price": 142000,
+ "cur_price": 121400,
"tranches": 1,
"tranche_value": 2152119.014940611,
"last_add_price": 139000
@@ -81,38 +81,38 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,673 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5849602.505874997,
"last_add_price": 19100
},
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
+ "003680": {
+ "code": "003680",
+ "name": "한성기업",
"sources": [
"auto"
],
- "qty": 45,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.361064+09:00",
- "stop": 120209,
- "target": 139437,
- "peak": 127900,
+ "qty": 1020,
+ "entry_price": 6936.235294117647,
+ "entry_at": "2026-07-28T09:00:15.309249+09:00",
+ "stop": 6040,
+ "target": 8281,
+ "peak": 7780,
"trailing_on": false,
"scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5772150.352749998,
- "last_add_price": 127900
+ "entry_path": "pullback",
+ "entry_reason": "눌림목 지정가 7,596 도달",
+ "cur_price": 6400,
+ "tranches": 2,
+ "tranche_value": 3542220.106819096,
+ "last_add_price": 7100
}
},
- "realized_pnl": -10111634.737000015,
- "closed_trades": 28,
+ "realized_pnl": -10474036.837000016,
+ "closed_trades": 29,
"wins": 4,
"peak_equity": 101012300.052,
- "max_drawdown": 0.10296041119394474,
+ "max_drawdown": 0.12573823149717064,
"last_exit": {
"030000": "2026-07-24",
"403870": "2026-07-02",
@@ -127,8 +127,9 @@
"086790": "2026-07-21",
"010950": "2026-07-27",
"024060": "2026-07-27",
- "003680": "2026-07-27"
+ "003680": "2026-07-27",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944172+09:00",
- "updated_at": "2026-07-27T15:28:06.075548+09:00"
+ "updated_at": "2026-07-28T15:28:01.011616+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v95/trades.jsonl b/agents/stock/workspace/state/sim/variants/v95/trades.jsonl
index fdaa12e..0cebafa 100644
--- a/agents/stock/workspace/state/sim/variants/v95/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v95/trades.jsonl
@@ -72,3 +72,6 @@
{"ts": "2026-07-27T09:32:01.360392+09:00", "side": "SELL", "code": "319660", "name": "피에스케이", "price": 148500, "qty": 38, "proceeds": 5631996, "entry_price": 149900, "pnl": -65058, "pnl_pct": -0.93, "hold_from": "2026-07-27T09:30:01.151285+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "149,899 (현재 148,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 149,902"}, {"label": "추세(20일선)", "ok": false, "detail": "149,215"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +274 · 기 -315"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 159,969"}]}
{"ts": "2026-07-27T09:32:01.361067+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 45, "cost": 5756363, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 120209, "target": 139437, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "127,900 vs 113,950"}, {"label": "정배열(5>20)", "ok": true, "detail": "119,040 / 113,950"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
{"ts": "2026-07-27T13:40:01.080789+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6780, "qty": 1096, "proceeds": 7416390, "entry_price": 7684, "pnl": -1006073, "pnl_pct": -11.76, "hold_from": "2026-07-27T09:02:06.208944+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,853 (현재 6,770)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,929"}, {"label": "추세(20일선)", "ok": true, "detail": "4,841"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +50 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T09:00:15.309257+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 6780, "qty": 522, "cost": 3539691, "path": "pullback", "reason": "눌림목 지정가 7,596 도달", "stop": 5916, "target": 8077, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "7,050 vs 4,855"}, {"label": "정배열(5>20)", "ok": true, "detail": "6,368 / 4,855"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "6,368 / 4,882"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+73.1%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +86 · 기 +0 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.01% (환산) vs 평균 5.69% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 8,460"}, {"label": "거래량 급증", "ok": false, "detail": "813 (환산) vs 평균 353,452"}, {"label": "회전율 급증", "ok": false, "detail": "0.01% (환산) vs 평균 5.69%"}, {"label": "RSI", "ok": true, "detail": "69"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 7,596 (현재 7,050)"}]}
+{"ts": "2026-07-28T09:10:01.728520+09:00", "side": "BUY", "code": "003680", "name": "한성기업", "price": 7100, "qty": 498, "cost": 3536330, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 5916, "target": 8077, "signals": [{"label": "손절선", "ok": true, "detail": "5,916 (현재 7,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 8,077"}, {"label": "추세(20일선)", "ok": true, "detail": "4,857"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +86 · 기 +0"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 7,079"}]}
+{"ts": "2026-07-28T09:38:04.819328+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 120100, "qty": 45, "proceeds": 5393961, "entry_price": 127900, "pnl": -362402, "pnl_pct": -6.1, "hold_from": "2026-07-27T09:32:01.361064+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,209 (현재 120,100)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 139,437"}, {"label": "추세(20일선)", "ok": true, "detail": "113,560"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +77 · 기 +325"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,460"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v97/portfolio.json b/agents/stock/workspace/state/sim/variants/v97/portfolio.json
index deb3adb..9c65dbc 100644
--- a/agents/stock/workspace/state/sim/variants/v97/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v97/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 39577353.554000035,
+ "cash": 48345053.135500036,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4042685.7706206227,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.283957+09:00",
"stop": 305399,
"target": 410027,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3926142.1904411796,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 33,
- "entry_price": 138900,
- "entry_at": "2026-07-16T09:38:02.495799+09:00",
- "stop": 125072,
- "target": 159642,
- "peak": 138900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 1,
- "tranche_value": 4693053.686984436,
- "last_add_price": 138900
- },
"161890": {
"code": "161890",
"name": "한국콜마",
@@ -81,53 +60,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 98,848 도달",
- "cur_price": 102500,
+ "cur_price": 99400,
"tranches": 2,
"tranche_value": 5741424.6067187525,
"last_add_price": 103100
},
- "252990": {
- "code": "252990",
- "name": "샘씨엔에스",
- "sources": [
- "auto"
- ],
- "qty": 299,
- "entry_price": 14265.986622073578,
- "entry_at": "2026-07-22T14:18:05.412264+09:00",
- "stop": 11223,
- "target": 18831,
- "peak": 15400,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 14,023 도달",
- "cur_price": 12880,
- "tranches": 2,
- "tranche_value": 2137757.7286761357,
- "last_add_price": 14510
- },
- "095610": {
- "code": "095610",
- "name": "테스",
- "sources": [
- "auto"
- ],
- "qty": 11,
- "entry_price": 158100,
- "entry_at": "2026-07-22T15:04:00.982279+09:00",
- "stop": 120314,
- "target": 214778,
- "peak": 167200,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 158,107 도달",
- "cur_price": 142000,
- "tranches": 1,
- "tranche_value": 1878556.9772360607,
- "last_add_price": 158100
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -144,7 +81,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3646570.004936488,
"last_add_price": 97000
@@ -165,22 +102,22 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 20,032 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5649244.920562502,
"last_add_price": 19100
}
},
- "realized_pnl": -10136774.696500018,
- "closed_trades": 26,
+ "realized_pnl": -11958993.36450002,
+ "closed_trades": 29,
"wins": 3,
"peak_equity": 101169385.00350003,
- "max_drawdown": 0.11696672317510487,
+ "max_drawdown": 0.14089965919538636,
"last_exit": {
"030000": "2026-07-24",
"035420": "2026-06-25",
"403870": "2026-07-07",
- "095610": "2026-07-16",
+ "095610": "2026-07-28",
"009150": "2026-07-06",
"093370": "2026-07-20",
"240810": "2026-07-24",
@@ -188,8 +125,10 @@
"034730": "2026-07-07",
"319660": "2026-07-23",
"003490": "2026-07-13",
- "105560": "2026-07-20"
+ "105560": "2026-07-20",
+ "252990": "2026-07-28",
+ "086790": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944191+09:00",
- "updated_at": "2026-07-27T15:28:06.077302+09:00"
+ "updated_at": "2026-07-28T15:28:01.013431+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v97/trades.jsonl b/agents/stock/workspace/state/sim/variants/v97/trades.jsonl
index 0b1bcc4..5e4a3be 100644
--- a/agents/stock/workspace/state/sim/variants/v97/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v97/trades.jsonl
@@ -76,3 +76,6 @@
{"ts": "2026-07-24T09:28:04.937182+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 14510, "qty": 147, "cost": 2133290, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 11077, "target": 18460, "signals": [{"label": "손절선", "ok": true, "detail": "11,077 (현재 15,400)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,460"}, {"label": "추세(20일선)", "ok": true, "detail": "12,845"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -857 · 기 +1,172"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 14,791"}]}
{"ts": "2026-07-24T09:48:01.184777+09:00", "side": "BUY", "code": "078930", "name": "GS", "price": 97000, "qty": 37, "cost": 3589538, "path": "add", "reason": "추격매수 — 2/2차 (추세 지속)", "stop": 82349, "target": 111476, "signals": [{"label": "손절선", "ok": true, "detail": "82,349 (현재 97,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 111,476"}, {"label": "추세(20일선)", "ok": true, "detail": "75,510"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -113 · 기 +274"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 96,977"}]}
{"ts": "2026-07-27T09:02:06.211885+09:00", "side": "BUY", "code": "030000", "name": "제일기획", "price": 19100, "qty": 295, "cost": 5635345, "path": "pullback", "reason": "눌림목 지정가 20,032 도달", "stop": 17760, "target": 21110, "signals": [{"label": "추세(20일선 위)", "ok": true, "detail": "19,070 vs 18,858"}, {"label": "정배열(5>20)", "ok": true, "detail": "19,600 / 18,858"}, {"label": "추세 기울기(20일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "19,600 / 19,360"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+16.6%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +101 · 기 -3 (천주)"}, {"label": "투자의견", "ok": true, "detail": "4.0/5"}, {"label": "상승여력", "ok": true, "detail": "+33%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.13% (환산) vs 평균 0.62% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 21,150"}, {"label": "거래량 급증", "ok": false, "detail": "146,760 (환산) vs 평균 711,709"}, {"label": "회전율 급증", "ok": false, "detail": "0.13% (환산) vs 평균 0.62%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 20,032 (현재 19,070)"}]}
+{"ts": "2026-07-28T10:08:02.758140+09:00", "side": "SELL", "code": "252990", "name": "샘씨엔에스", "price": 11170, "qty": 299, "proceeds": 3333317, "entry_price": 14266, "pnl": -932852, "pnl_pct": -21.7, "hold_from": "2026-07-22T14:18:05.412264+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "11,223 (현재 11,220)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 18,831"}, {"label": "추세(20일선)", "ok": false, "detail": "12,636"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +106 · 기 -64"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T11:34:01.959573+09:00", "side": "SELL", "code": "095610", "name": "테스", "price": 120300, "qty": 11, "proceeds": 1320720, "entry_price": 158100, "pnl": -418641, "pnl_pct": -23.91, "hold_from": "2026-07-22T15:04:00.982279+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "120,314 (현재 120,300)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 214,778"}, {"label": "추세(20일선)", "ok": false, "detail": "134,430"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +285 · 기 -563"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 168,711"}]}
+{"ts": "2026-07-28T11:48:00.828748+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 124900, "qty": 33, "proceeds": 4113663, "entry_price": 138900, "pnl": -470725, "pnl_pct": -10.08, "hold_from": "2026-07-16T09:38:02.495799+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "125,072 (현재 125,000)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 159,642"}, {"label": "추세(20일선)", "ok": true, "detail": "118,495"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +100 · 기 -116"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 142,107"}]}
diff --git a/agents/stock/workspace/state/sim/variants/v99/portfolio.json b/agents/stock/workspace/state/sim/variants/v99/portfolio.json
index cbe7e57..8edb473 100644
--- a/agents/stock/workspace/state/sim/variants/v99/portfolio.json
+++ b/agents/stock/workspace/state/sim/variants/v99/portfolio.json
@@ -1,5 +1,5 @@
{
- "cash": 37841976.1075,
+ "cash": 57293481.563,
"initial": 100000000,
"positions": {
"010950": {
@@ -18,7 +18,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 136700,
+ "cur_price": 129200,
"tranches": 2,
"tranche_value": 4126741.2051511523,
"last_add_price": 136900
@@ -34,37 +34,16 @@
"entry_at": "2026-07-13T09:12:04.286625+09:00",
"stop": 305399,
"target": 430953,
- "peak": 381500,
+ "peak": 384500,
"trailing_on": false,
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 369500,
+ "cur_price": 377500,
"tranches": 2,
"tranche_value": 3907880.8107494777,
"last_add_price": 353000
},
- "086790": {
- "code": "086790",
- "name": "하나금융지주",
- "sources": [
- "auto"
- ],
- "qty": 71,
- "entry_price": 137176.05633802817,
- "entry_at": "2026-07-13T09:48:02.324456+09:00",
- "stop": 123862,
- "target": 163803,
- "peak": 141800,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 131000,
- "tranches": 2,
- "tranche_value": 4896171.172402423,
- "last_add_price": 138900
- },
"078930": {
"code": "078930",
"name": "GS",
@@ -81,7 +60,7 @@
"scaled_out": false,
"entry_path": "breakout",
"entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 91500,
+ "cur_price": 87200,
"tranches": 2,
"tranche_value": 3816608.495615692,
"last_add_price": 90900
@@ -102,32 +81,11 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 19,643 도달",
- "cur_price": 19150,
+ "cur_price": 18810,
"tranches": 1,
"tranche_value": 5846997.74384375,
"last_add_price": 18950
},
- "003680": {
- "code": "003680",
- "name": "한성기업",
- "sources": [
- "auto"
- ],
- "qty": 817,
- "entry_price": 7683.806609547124,
- "entry_at": "2026-07-27T09:02:06.214970+09:00",
- "stop": 6577,
- "target": 9897,
- "peak": 8310,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "pullback",
- "entry_reason": "눌림목 지정가 7,635 도달",
- "cur_price": 7050,
- "tranches": 2,
- "tranche_value": 3143318.562881387,
- "last_add_price": 7910
- },
"252990": {
"code": "252990",
"name": "샘씨엔에스",
@@ -144,48 +102,29 @@
"scaled_out": false,
"entry_path": "pullback",
"entry_reason": "눌림목 지정가 13,180 도달",
- "cur_price": 12880,
+ "cur_price": 11210,
"tranches": 1,
"tranche_value": 2154328.722406584,
"last_add_price": 13150
- },
- "138040": {
- "code": "138040",
- "name": "메리츠금융지주",
- "sources": [
- "auto"
- ],
- "qty": 45,
- "entry_price": 127900,
- "entry_at": "2026-07-27T09:32:01.368496+09:00",
- "stop": 117645,
- "target": 148411,
- "peak": 127900,
- "trailing_on": false,
- "scaled_out": false,
- "entry_path": "breakout",
- "entry_reason": "거래량·회전율 동반 전고점 돌파",
- "cur_price": 126000,
- "tranches": 1,
- "tranche_value": 5757986.8744108975,
- "last_add_price": 127900
}
},
- "realized_pnl": -9039337.28450001,
- "closed_trades": 14,
+ "realized_pnl": -11363767.72950001,
+ "closed_trades": 17,
"wins": 0,
"peak_equity": 100172467.23000002,
- "max_drawdown": 0.09560871751825789,
+ "max_drawdown": 0.11885085828688154,
"last_exit": {
"030000": "2026-07-15",
- "086790": "2026-06-23",
+ "086790": "2026-07-28",
"403870": "2026-07-07",
"240810": "2026-07-24",
"214450": "2026-07-06",
"093370": "2026-07-20",
"055550": "2026-07-20",
- "024060": "2026-07-27"
+ "024060": "2026-07-27",
+ "003680": "2026-07-28",
+ "138040": "2026-07-28"
},
"created_at": "2026-06-11T09:00:01.944212+09:00",
- "updated_at": "2026-07-27T15:28:06.078953+09:00"
+ "updated_at": "2026-07-28T15:28:01.015220+09:00"
}
\ No newline at end of file
diff --git a/agents/stock/workspace/state/sim/variants/v99/trades.jsonl b/agents/stock/workspace/state/sim/variants/v99/trades.jsonl
index 43b15ba..0345c10 100644
--- a/agents/stock/workspace/state/sim/variants/v99/trades.jsonl
+++ b/agents/stock/workspace/state/sim/variants/v99/trades.jsonl
@@ -46,3 +46,6 @@
{"ts": "2026-07-27T09:10:01.031091+09:00", "side": "SELL", "code": "024060", "name": "흥구석유", "price": 12030, "qty": 366, "proceeds": 4394394, "entry_price": 14585, "pnl": -944487, "pnl_pct": -17.52, "hold_from": "2026-07-23T10:30:02.472236+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "12,081 (현재 12,030)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 19,593"}, {"label": "추세(10일선)", "ok": false, "detail": "12,214"}, {"label": "수급(외/기)", "ok": true, "detail": "외 -85 · 기 +2"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
{"ts": "2026-07-27T09:12:01.494166+09:00", "side": "BUY", "code": "252990", "name": "샘씨엔에스", "price": 13150, "qty": 163, "cost": 2143772, "path": "pullback", "reason": "눌림목 지정가 13,180 도달", "stop": 10340, "target": 18770, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "13,150 vs 12,888"}, {"label": "정배열(5>10)", "ok": true, "detail": "14,378 / 12,888"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "14,378 / 13,268"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+1.5%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +27 · 기 +15 (천주)"}, {"label": "애널", "ok": null, "detail": "데이터 없음(통과)"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.46% (환산) vs 평균 1.47% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": false, "detail": "고점 15,870"}, {"label": "거래량 급증", "ok": false, "detail": "274,967 (환산) vs 평균 882,736"}, {"label": "회전율 급증", "ok": false, "detail": "0.46% (환산) vs 평균 1.47%"}, {"label": "RSI", "ok": true, "detail": "50"}, {"label": "눌림목 도달", "ok": true, "detail": "지정가 13,180 (현재 13,150)"}]}
{"ts": "2026-07-27T09:32:01.368499+09:00", "side": "BUY", "code": "138040", "name": "메리츠금융지주", "price": 127900, "qty": 45, "cost": 5756363, "path": "breakout", "reason": "거래량·회전율 동반 전고점 돌파", "stop": 117645, "target": 148411, "signals": [{"label": "추세(10일선 위)", "ok": true, "detail": "127,900 vs 117,400"}, {"label": "정배열(5>10)", "ok": true, "detail": "119,040 / 117,400"}, {"label": "추세 기울기(10일선↑)", "ok": true, "detail": "우상향"}, {"label": "중기 정배열(5>60)", "ok": true, "detail": "119,040 / 110,150"}, {"label": "상대강도(시장대비)", "ok": true, "detail": "+46.7%p"}, {"label": "수급(5일 외/기)", "ok": true, "detail": "외 +106 · 기 +291 (천주)"}, {"label": "투자의견", "ok": true, "detail": "3.8/5"}, {"label": "상승여력", "ok": true, "detail": "+16%"}, {"label": "시장 강세", "ok": true, "detail": "강세"}, {"label": "과열 아님(회전율)", "ok": true, "detail": "0.38% (환산) vs 평균 0.17% (보류 3배↑)"}, {"label": "돌파(전고점)", "ok": true, "detail": "고점 123,300"}, {"label": "거래량 급증", "ok": true, "detail": "643,340 (환산) vs 평균 289,522"}, {"label": "회전율 급증", "ok": true, "detail": "0.38% (환산) vs 평균 0.17%"}, {"label": "RSI", "ok": true, "detail": "71"}]}
+{"ts": "2026-07-28T11:22:00.738433+09:00", "side": "SELL", "code": "003680", "name": "한성기업", "price": 6630, "qty": 817, "proceeds": 5406147, "entry_price": 7684, "pnl": -872464, "pnl_pct": -13.71, "hold_from": "2026-07-27T09:02:06.214970+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "6,577 (현재 6,380)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 9,897"}, {"label": "추세(10일선)", "ok": true, "detail": "5,282"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +96 · 기 +0"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
+{"ts": "2026-07-28T12:56:02.867318+09:00", "side": "SELL", "code": "138040", "name": "메리츠금융지주", "price": 117400, "qty": 45, "proceeds": 5272698, "entry_price": 127900, "pnl": -483665, "pnl_pct": -8.21, "hold_from": "2026-07-27T09:32:01.368496+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "117,645 (현재 117,500)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 148,411"}, {"label": "추세(10일선)", "ok": true, "detail": "116,360"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +84 · 기 +324"}, {"label": "분할(1/2)", "ok": null, "detail": "추가 트리거 130,553"}]}
+{"ts": "2026-07-28T13:20:03.818138+09:00", "side": "SELL", "code": "086790", "name": "하나금융지주", "price": 123800, "qty": 71, "proceeds": 8772660, "entry_price": 137176, "pnl": -968301, "pnl_pct": -9.75, "hold_from": "2026-07-13T09:48:02.324456+09:00", "reason": "손절", "partial": false, "signals": [{"label": "손절선", "ok": false, "detail": "123,862 (현재 123,800)"}, {"label": "목표/트레일링", "ok": null, "detail": "목표 163,803"}, {"label": "추세(10일선)", "ok": true, "detail": "119,940"}, {"label": "수급(외/기)", "ok": true, "detail": "외 +122 · 기 -106"}, {"label": "분할(2/2)", "ok": null, "detail": "추가 종료"}]}
diff --git a/agents/stock/workspace/state/sim/watchlist.json b/agents/stock/workspace/state/sim/watchlist.json
index 1369010..87cbf04 100644
--- a/agents/stock/workspace/state/sim/watchlist.json
+++ b/agents/stock/workspace/state/sim/watchlist.json
@@ -573,5 +573,25 @@
"name": "후성",
"origin": "interest",
"added_at": "2026-07-27T22:34:54.269076+09:00"
+ },
+ "131970": {
+ "name": "두산테스나",
+ "origin": "auto",
+ "added_at": "2026-07-28T21:02:33.794094+09:00"
+ },
+ "440110": {
+ "name": "파두",
+ "origin": "auto",
+ "added_at": "2026-07-28T21:02:33.794094+09:00"
+ },
+ "067310": {
+ "name": "하나마이크론",
+ "origin": "auto",
+ "added_at": "2026-07-28T21:02:33.794094+09:00"
+ },
+ "018260": {
+ "name": "삼성에스디에스",
+ "origin": "auto",
+ "added_at": "2026-07-28T21:02:33.794094+09:00"
}
}
\ No newline at end of file
diff --git a/workspace-attestations/8b2dbe352929b40690dbe9a3e5a138e58e47d1a42e88eb41d71e9539d3077451.attested b/workspace-attestations/8b2dbe352929b40690dbe9a3e5a138e58e47d1a42e88eb41d71e9539d3077451.attested
index 9ef43e8..ce69034 100644
--- a/workspace-attestations/8b2dbe352929b40690dbe9a3e5a138e58e47d1a42e88eb41d71e9539d3077451.attested
+++ b/workspace-attestations/8b2dbe352929b40690dbe9a3e5a138e58e47d1a42e88eb41d71e9539d3077451.attested
@@ -1,2 +1,2 @@
openclaw-workspace-attestation:v1
-2026-07-27T09:00:00.032Z
+2026-07-28T09:00:00.043Z
diff --git a/workspace-attestations/d1fd54262c444fd6ab822ec4652ce317fa713ba87c5b1c125db2c01f477eb8d3.attested b/workspace-attestations/d1fd54262c444fd6ab822ec4652ce317fa713ba87c5b1c125db2c01f477eb8d3.attested
index 8fd4b5c..8c8ae61 100644
--- a/workspace-attestations/d1fd54262c444fd6ab822ec4652ce317fa713ba87c5b1c125db2c01f477eb8d3.attested
+++ b/workspace-attestations/d1fd54262c444fd6ab822ec4652ce317fa713ba87c5b1c125db2c01f477eb8d3.attested
@@ -1,3 +1,3 @@
openclaw-workspace-attestation:v1
-2026-07-27T10:00:00.031Z
+2026-07-28T10:00:00.031Z
generated:HEARTBEAT.md:ecce558615751a35aa173731e892ff3993f44bb4f5a1219c0a02994790c85528