第一版策略
This commit is contained in:
427
run_bb_full_grid_search.py
Normal file
427
run_bb_full_grid_search.py
Normal file
@@ -0,0 +1,427 @@
|
|||||||
|
"""
|
||||||
|
布林带中轨策略 - 全参数网格搜索 (2020-2025)
|
||||||
|
|
||||||
|
策略逻辑:
|
||||||
|
- 阳线 + 碰到布林带均线(先涨碰到) → 开多,碰上轨止盈
|
||||||
|
- 阴线 + 碰到布林带均线(先跌碰到) → 平多开空,碰下轨止盈
|
||||||
|
- 使用 1m 线判断当前K线是先跌碰均线还是先涨碰均线
|
||||||
|
- 每根K线只能操作一次
|
||||||
|
|
||||||
|
参数范围: period 1~1000, std 0.5~1000,按 (0.5,0.5),(0.5,1)...(0.5,1000),(1,0.5),(1,1)...(1000,1000) 顺序遍历
|
||||||
|
|
||||||
|
回测设置: 200U本金 | 全仓 | 1%权益/单 | 万五手续费 | 90%返佣次日8点到账 | 100x杠杆
|
||||||
|
|
||||||
|
数据来源: 抓取多周期K线.py 抓取并存入 models/database.db 的 bitmart_eth_5m / bitmart_eth_1m
|
||||||
|
"""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import math
|
||||||
|
import os
|
||||||
|
import tempfile
|
||||||
|
import time
|
||||||
|
from collections import defaultdict
|
||||||
|
from concurrent.futures import ProcessPoolExecutor, as_completed
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
from strategy.bb_midline_backtest import BBMidlineConfig, run_bb_midline_backtest
|
||||||
|
from strategy.data_loader import get_1m_touch_direction, load_klines
|
||||||
|
from strategy.indicators import bollinger
|
||||||
|
|
||||||
|
|
||||||
|
def frange(start: float, end: float, step: float) -> list[float]:
|
||||||
|
out: list[float] = []
|
||||||
|
x = float(start)
|
||||||
|
while x <= end + 1e-9:
|
||||||
|
out.append(round(x, 6))
|
||||||
|
x += step
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
def build_full_grid(
|
||||||
|
p_start: float = 1,
|
||||||
|
p_end: float = 1000,
|
||||||
|
p_step: float = 1,
|
||||||
|
s_start: float = 0.5,
|
||||||
|
s_end: float = 1000,
|
||||||
|
s_step: float = 0.5,
|
||||||
|
) -> list[tuple[int, float]]:
|
||||||
|
"""构建完整参数网格,按 (0.5,0.5),(0.5,1)...(0.5,1000),(1,0.5)... 顺序"""
|
||||||
|
periods = sorted({max(1, min(1000, int(round(v)))) for v in frange(p_start, p_end, p_step)})
|
||||||
|
stds = sorted({round(max(0.5, min(1000.0, v)), 2) for v in frange(s_start, s_end, s_step)})
|
||||||
|
out = [(p, s) for p in periods for s in stds]
|
||||||
|
return sorted(set(out))
|
||||||
|
|
||||||
|
|
||||||
|
def score_stable(ret_pct: float, sharpe: float, dd_pct: float, n_trades: int) -> float:
|
||||||
|
"""收益稳定性评分:收益+夏普加分,回撤惩罚,交易过少惩罚"""
|
||||||
|
sparse_penalty = -5.0 if n_trades < 200 else 0.0
|
||||||
|
return ret_pct + sharpe * 12.0 - dd_pct * 0.8 + sparse_penalty
|
||||||
|
|
||||||
|
|
||||||
|
def _checkpoint_meta(
|
||||||
|
period: str,
|
||||||
|
start: str,
|
||||||
|
end: str,
|
||||||
|
p_step: float,
|
||||||
|
s_step: float,
|
||||||
|
sample: bool,
|
||||||
|
focus: bool,
|
||||||
|
fine: bool,
|
||||||
|
) -> dict:
|
||||||
|
return {
|
||||||
|
"period": period,
|
||||||
|
"start": start,
|
||||||
|
"end": end,
|
||||||
|
"p_step": p_step,
|
||||||
|
"s_step": s_step,
|
||||||
|
"sample": sample,
|
||||||
|
"focus": focus,
|
||||||
|
"fine": fine,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _checkpoint_path(out_dir: Path, meta: dict) -> tuple[Path, Path]:
|
||||||
|
"""返回 checkpoint 数据文件和 meta 文件路径"""
|
||||||
|
h = hashlib.md5(json.dumps(meta, sort_keys=True).encode()).hexdigest()[:12]
|
||||||
|
return (
|
||||||
|
out_dir / f"bb_full_grid_{meta['period']}_resume_{h}.csv",
|
||||||
|
out_dir / f"bb_full_grid_{meta['period']}_resume_{h}.meta.json",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def load_checkpoint(
|
||||||
|
ckpt_path: Path,
|
||||||
|
meta_path: Path,
|
||||||
|
meta: dict,
|
||||||
|
) -> tuple[pd.DataFrame, set[tuple[int, float]]]:
|
||||||
|
"""
|
||||||
|
加载断点数据。若文件存在且 meta 一致,返回 (已完成结果df, 已完成的(period,std)集合)。
|
||||||
|
否则返回 (空df, 空集合)。
|
||||||
|
"""
|
||||||
|
if not ckpt_path.exists() or not meta_path.exists():
|
||||||
|
return pd.DataFrame(), set()
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(meta_path, "r", encoding="utf-8") as f:
|
||||||
|
saved = json.load(f)
|
||||||
|
if saved != meta:
|
||||||
|
return pd.DataFrame(), set()
|
||||||
|
except (json.JSONDecodeError, OSError):
|
||||||
|
return pd.DataFrame(), set()
|
||||||
|
|
||||||
|
try:
|
||||||
|
df = pd.read_csv(ckpt_path)
|
||||||
|
if "period" not in df.columns or "std" not in df.columns:
|
||||||
|
return pd.DataFrame(), set()
|
||||||
|
done = {(int(r["period"]), round(float(r["std"]), 2)) for _, r in df.iterrows()}
|
||||||
|
return df, done
|
||||||
|
except Exception:
|
||||||
|
return pd.DataFrame(), set()
|
||||||
|
|
||||||
|
|
||||||
|
def save_checkpoint(ckpt_path: Path, meta_path: Path, meta: dict, rows: list[dict]) -> None:
|
||||||
|
"""追加/覆盖保存断点"""
|
||||||
|
ckpt_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
with open(meta_path, "w", encoding="utf-8") as f:
|
||||||
|
json.dump(meta, f, indent=2)
|
||||||
|
df = pd.DataFrame(rows)
|
||||||
|
df.to_csv(ckpt_path, index=False)
|
||||||
|
|
||||||
|
|
||||||
|
def _init_worker(df_path: str, df_1m_path: str | None, use_1m: bool, step_min: int):
|
||||||
|
global G_DF, G_DF_1M, G_USE_1M, G_STEP_MIN
|
||||||
|
G_DF = pd.read_pickle(df_path)
|
||||||
|
G_DF_1M = pd.read_pickle(df_1m_path) if (use_1m and df_1m_path) else None
|
||||||
|
G_USE_1M = bool(use_1m)
|
||||||
|
G_STEP_MIN = int(step_min)
|
||||||
|
|
||||||
|
|
||||||
|
def _eval_period_task(args: tuple[int, list[float]]) -> list[dict]:
|
||||||
|
period, std_list = args
|
||||||
|
assert G_DF is not None
|
||||||
|
|
||||||
|
arr_touch_dir = None
|
||||||
|
if G_USE_1M and G_DF_1M is not None:
|
||||||
|
close = G_DF["close"].astype(float)
|
||||||
|
bb_mid, _, _, _ = bollinger(close, period, 1.0)
|
||||||
|
arr_touch_dir = get_1m_touch_direction(G_DF, G_DF_1M, bb_mid.values, kline_step_min=G_STEP_MIN)
|
||||||
|
|
||||||
|
rows: list[dict] = []
|
||||||
|
for std in std_list:
|
||||||
|
cfg = BBMidlineConfig(
|
||||||
|
bb_period=period,
|
||||||
|
bb_std=float(std),
|
||||||
|
initial_capital=200.0,
|
||||||
|
margin_pct=0.01,
|
||||||
|
leverage=100.0,
|
||||||
|
cross_margin=True,
|
||||||
|
fee_rate=0.0005,
|
||||||
|
rebate_pct=0.90,
|
||||||
|
rebate_hour_utc=0,
|
||||||
|
fill_at_close=True,
|
||||||
|
use_1m_touch_filter=G_USE_1M,
|
||||||
|
kline_step_min=G_STEP_MIN,
|
||||||
|
)
|
||||||
|
result = run_bb_midline_backtest(
|
||||||
|
G_DF,
|
||||||
|
cfg,
|
||||||
|
df_1m=G_DF_1M if G_USE_1M else None,
|
||||||
|
arr_touch_dir_override=arr_touch_dir,
|
||||||
|
)
|
||||||
|
|
||||||
|
eq = result.equity_curve["equity"].dropna()
|
||||||
|
if len(eq) == 0:
|
||||||
|
final_eq = 0.0
|
||||||
|
ret_pct = -100.0
|
||||||
|
dd_u = -200.0
|
||||||
|
dd_pct = 100.0
|
||||||
|
else:
|
||||||
|
final_eq = float(eq.iloc[-1])
|
||||||
|
ret_pct = (final_eq - cfg.initial_capital) / cfg.initial_capital * 100.0
|
||||||
|
dd_u = float((eq.astype(float) - eq.astype(float).cummax()).min())
|
||||||
|
dd_pct = abs(dd_u) / cfg.initial_capital * 100.0
|
||||||
|
|
||||||
|
n_trades = len(result.trades)
|
||||||
|
win_rate = (
|
||||||
|
sum(1 for t in result.trades if t.net_pnl > 0) / n_trades * 100.0
|
||||||
|
if n_trades > 0
|
||||||
|
else 0.0
|
||||||
|
)
|
||||||
|
pnl = result.daily_stats["pnl"].astype(float)
|
||||||
|
sharpe = float(pnl.mean() / pnl.std()) * math.sqrt(365.0) if pnl.std() > 0 else 0.0
|
||||||
|
stable_score = score_stable(ret_pct, sharpe, dd_pct, n_trades)
|
||||||
|
|
||||||
|
rows.append({
|
||||||
|
"period": period,
|
||||||
|
"std": round(float(std), 2),
|
||||||
|
"final_eq": final_eq,
|
||||||
|
"ret_pct": ret_pct,
|
||||||
|
"n_trades": n_trades,
|
||||||
|
"win_rate": win_rate,
|
||||||
|
"sharpe": sharpe,
|
||||||
|
"max_dd_u": dd_u,
|
||||||
|
"max_dd_pct": dd_pct,
|
||||||
|
"stable_score": stable_score,
|
||||||
|
})
|
||||||
|
return rows
|
||||||
|
|
||||||
|
|
||||||
|
def run_grid_search(
|
||||||
|
params: list[tuple[int, float]],
|
||||||
|
*,
|
||||||
|
workers: int,
|
||||||
|
df_path: str,
|
||||||
|
df_1m_path: str | None,
|
||||||
|
use_1m: bool,
|
||||||
|
step_min: int,
|
||||||
|
existing_rows: list[dict] | None = None,
|
||||||
|
ckpt_path: Path | None = None,
|
||||||
|
meta_path: Path | None = None,
|
||||||
|
meta: dict | None = None,
|
||||||
|
checkpoint_interval: int = 5,
|
||||||
|
) -> pd.DataFrame:
|
||||||
|
by_period: dict[int, set[float]] = defaultdict(set)
|
||||||
|
for p, s in params:
|
||||||
|
by_period[int(p)].add(round(float(s), 2))
|
||||||
|
|
||||||
|
tasks = [(p, sorted(stds)) for p, stds in sorted(by_period.items())]
|
||||||
|
total_periods = len(tasks)
|
||||||
|
total_combos = sum(len(stds) for _, stds in tasks)
|
||||||
|
rows: list[dict] = list(existing_rows) if existing_rows else []
|
||||||
|
|
||||||
|
print(f"待运行: {total_combos} 组合 ({total_periods} period组), workers={workers}" + (
|
||||||
|
f", 断点续跑 (已有 {len(rows)} 条)" if rows else ""
|
||||||
|
))
|
||||||
|
start = time.time()
|
||||||
|
last_save = 0
|
||||||
|
|
||||||
|
def maybe_save(n_done_periods: int):
|
||||||
|
nonlocal last_save
|
||||||
|
if ckpt_path and meta_path and meta and n_done_periods > 0:
|
||||||
|
if n_done_periods - last_save >= checkpoint_interval:
|
||||||
|
save_checkpoint(ckpt_path, meta_path, meta, rows)
|
||||||
|
last_save = n_done_periods
|
||||||
|
|
||||||
|
if workers <= 1:
|
||||||
|
_init_worker(df_path, df_1m_path, use_1m, step_min)
|
||||||
|
done_periods = 0
|
||||||
|
done_combos = 0
|
||||||
|
for task in tasks:
|
||||||
|
res = _eval_period_task(task)
|
||||||
|
rows.extend(res)
|
||||||
|
done_periods += 1
|
||||||
|
done_combos += len(task[1])
|
||||||
|
maybe_save(done_periods)
|
||||||
|
if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods:
|
||||||
|
elapsed = time.time() - start
|
||||||
|
print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s")
|
||||||
|
else:
|
||||||
|
done_periods = 0
|
||||||
|
done_combos = 0
|
||||||
|
try:
|
||||||
|
with ProcessPoolExecutor(
|
||||||
|
max_workers=workers,
|
||||||
|
initializer=_init_worker,
|
||||||
|
initargs=(df_path, df_1m_path, use_1m, step_min),
|
||||||
|
) as ex:
|
||||||
|
future_map = {ex.submit(_eval_period_task, task): task for task in tasks}
|
||||||
|
for fut in as_completed(future_map):
|
||||||
|
period, stds = future_map[fut]
|
||||||
|
res = fut.result()
|
||||||
|
rows.extend(res)
|
||||||
|
done_periods += 1
|
||||||
|
done_combos += len(stds)
|
||||||
|
maybe_save(done_periods)
|
||||||
|
if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods:
|
||||||
|
elapsed = time.time() - start
|
||||||
|
print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s")
|
||||||
|
except (PermissionError, OSError) as e:
|
||||||
|
print(f"多进程不可用 ({e}),改用单进程...")
|
||||||
|
_init_worker(df_path, df_1m_path, use_1m, step_min)
|
||||||
|
done_periods = 0
|
||||||
|
done_combos = 0
|
||||||
|
for task in tasks:
|
||||||
|
res = _eval_period_task(task)
|
||||||
|
rows.extend(res)
|
||||||
|
done_periods += 1
|
||||||
|
done_combos += len(task[1])
|
||||||
|
maybe_save(done_periods)
|
||||||
|
if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods:
|
||||||
|
elapsed = time.time() - start
|
||||||
|
print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s")
|
||||||
|
|
||||||
|
if ckpt_path and meta_path and meta and rows:
|
||||||
|
save_checkpoint(ckpt_path, meta_path, meta, rows)
|
||||||
|
|
||||||
|
df = pd.DataFrame(rows)
|
||||||
|
print(f"完成, 总用时 {time.time() - start:.1f}s")
|
||||||
|
return df
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
parser = argparse.ArgumentParser(description="布林带全参数网格搜索 (1-1000, 0.5-1000)")
|
||||||
|
parser.add_argument("-p", "--period", default="5m", choices=["5m", "15m", "30m"])
|
||||||
|
parser.add_argument("--start", default="2020-01-01")
|
||||||
|
parser.add_argument("--end", default="2026-01-01")
|
||||||
|
parser.add_argument("-j", "--workers", type=int, default=max(1, (os.cpu_count() or 4) - 1))
|
||||||
|
parser.add_argument("--no-1m", action="store_true", help="禁用 1m 触及方向过滤")
|
||||||
|
parser.add_argument("--p-step", type=float, default=5, help="period 步长 (默认5, 全量用1)")
|
||||||
|
parser.add_argument("--s-step", type=float, default=5, help="std 步长 (默认5, 全量用0.5或1)")
|
||||||
|
parser.add_argument("--quick", action="store_true", help="快速模式: p-step=20, s-step=20")
|
||||||
|
parser.add_argument("--sample", action="store_true", help="采样模式: 仅用2022-2024两年加速")
|
||||||
|
parser.add_argument("--focus", action="store_true", help="聚焦模式: 仅在period 50-400, std 100-800 细搜")
|
||||||
|
parser.add_argument("--fine", action="store_true", help="精细模式: 在period 280-310, std 450-550 细搜")
|
||||||
|
parser.add_argument("--no-resume", action="store_true", help="禁用断点续跑,重新开始")
|
||||||
|
parser.add_argument("--checkpoint-interval", type=int, default=10,
|
||||||
|
help="每完成 N 个 period 组保存一次断点 (默认 10)")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
use_1m = not args.no_1m
|
||||||
|
step_min = int(args.period.replace("m", ""))
|
||||||
|
if args.sample:
|
||||||
|
args.start, args.end = "2022-01-01", "2024-01-01"
|
||||||
|
print("采样模式: 使用 2022-2024 数据加速")
|
||||||
|
|
||||||
|
if args.quick:
|
||||||
|
p_step, s_step = 20.0, 20.0
|
||||||
|
else:
|
||||||
|
p_step, s_step = args.p_step, args.s_step
|
||||||
|
|
||||||
|
if args.fine:
|
||||||
|
params = build_full_grid(p_start=280, p_end=300, p_step=2, s_start=480, s_end=510, s_step=2)
|
||||||
|
print("精细模式: period 280-300 step=2, std 480-510 step=2 (~176组合)")
|
||||||
|
elif args.focus:
|
||||||
|
params = build_full_grid(p_start=50, p_end=400, p_step=25, s_start=100, s_end=800, s_step=50)
|
||||||
|
print("聚焦模式: period 50-400 step=25, std 100-800 step=50 (~225组合)")
|
||||||
|
else:
|
||||||
|
params = build_full_grid(p_step=p_step, s_step=s_step)
|
||||||
|
print(f"网格参数: period 1-1000 step={p_step}, std 0.5-1000 step={s_step} → {len(params)} 组合")
|
||||||
|
|
||||||
|
out_dir = Path(__file__).resolve().parent / "strategy" / "results"
|
||||||
|
out_dir.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
|
meta = _checkpoint_meta(
|
||||||
|
args.period, args.start, args.end, p_step, s_step,
|
||||||
|
args.sample, args.focus, args.fine,
|
||||||
|
)
|
||||||
|
ckpt_path, meta_path = _checkpoint_path(out_dir, meta)
|
||||||
|
existing_rows: list[dict] = []
|
||||||
|
params_to_run = params
|
||||||
|
|
||||||
|
if not args.no_resume:
|
||||||
|
ckpt_df, done_set = load_checkpoint(ckpt_path, meta_path, meta)
|
||||||
|
if len(done_set) > 0:
|
||||||
|
existing_rows = ckpt_df.to_dict("records")
|
||||||
|
params_to_run = [(p, s) for p, s in params if (int(p), round(float(s), 2)) not in done_set]
|
||||||
|
print(f"断点续跑: 已完成 {len(done_set)} 组合,剩余 {len(params_to_run)} 组合")
|
||||||
|
|
||||||
|
if not params_to_run:
|
||||||
|
print("无待运行组合,直接使用断点结果")
|
||||||
|
all_df = pd.DataFrame(existing_rows)
|
||||||
|
else:
|
||||||
|
print(f"\n加载数据: {args.period} + 1m, {args.start} ~ {args.end}")
|
||||||
|
t0 = time.time()
|
||||||
|
df = load_klines(args.period, args.start, args.end)
|
||||||
|
df_1m = load_klines("1m", args.start, args.end) if use_1m else None
|
||||||
|
print(f" {args.period}: {len(df):,} 条" + (f", 1m: {len(df_1m):,} 条" if df_1m is not None else "") + f", {time.time()-t0:.1f}s\n")
|
||||||
|
|
||||||
|
with tempfile.NamedTemporaryFile(suffix=".pkl", delete=False) as f_df:
|
||||||
|
df.to_pickle(f_df.name)
|
||||||
|
df_path = f_df.name
|
||||||
|
df_1m_path = None
|
||||||
|
if df_1m is not None:
|
||||||
|
with tempfile.NamedTemporaryFile(suffix=".pkl", delete=False) as f_1m:
|
||||||
|
df_1m.to_pickle(f_1m.name)
|
||||||
|
df_1m_path = f_1m.name
|
||||||
|
|
||||||
|
try:
|
||||||
|
all_df = run_grid_search(
|
||||||
|
params_to_run,
|
||||||
|
workers=args.workers,
|
||||||
|
df_path=df_path,
|
||||||
|
df_1m_path=df_1m_path,
|
||||||
|
use_1m=use_1m,
|
||||||
|
step_min=step_min,
|
||||||
|
existing_rows=existing_rows,
|
||||||
|
ckpt_path=ckpt_path,
|
||||||
|
meta_path=meta_path,
|
||||||
|
meta=meta,
|
||||||
|
checkpoint_interval=args.checkpoint_interval,
|
||||||
|
)
|
||||||
|
finally:
|
||||||
|
Path(df_path).unlink(missing_ok=True)
|
||||||
|
if df_1m_path:
|
||||||
|
Path(df_1m_path).unlink(missing_ok=True)
|
||||||
|
|
||||||
|
all_df = all_df.drop_duplicates(subset=["period", "std"], keep="last")
|
||||||
|
|
||||||
|
best_stable = all_df.sort_values("stable_score", ascending=False).iloc[0]
|
||||||
|
best_return = all_df.sort_values("ret_pct", ascending=False).iloc[0]
|
||||||
|
|
||||||
|
stamp = time.strftime("%Y%m%d_%H%M%S")
|
||||||
|
out_path = out_dir / f"bb_full_grid_{args.period}_{stamp}.csv"
|
||||||
|
all_df.sort_values("stable_score", ascending=False).to_csv(out_path, index=False)
|
||||||
|
|
||||||
|
print("\n" + "=" * 80)
|
||||||
|
print("全参数网格搜索完成")
|
||||||
|
print(f"最佳稳定参数: period={int(best_stable['period'])}, std={float(best_stable['std']):.2f}")
|
||||||
|
print(f" 最终权益: {best_stable['final_eq']:.2f} U | 收益: {best_stable['ret_pct']:+.2f}%")
|
||||||
|
print(f" 最大回撤: {best_stable['max_dd_pct']:.2f}% | 夏普: {best_stable['sharpe']:.3f} | 交易数: {int(best_stable['n_trades'])}")
|
||||||
|
print()
|
||||||
|
print(f"最高收益参数: period={int(best_return['period'])}, std={float(best_return['std']):.2f}")
|
||||||
|
print(f" 最终权益: {best_return['final_eq']:.2f} U | 收益: {best_return['ret_pct']:+.2f}%")
|
||||||
|
print(f" 最大回撤: {best_return['max_dd_pct']:.2f}% | 夏普: {best_return['sharpe']:.3f} | 交易数: {int(best_return['n_trades'])}")
|
||||||
|
print(f"\n结果已保存: {out_path}")
|
||||||
|
print(f"断点文件: {ckpt_path.name} (可用 --no-resume 重新开始)")
|
||||||
|
print("=" * 80)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
26
strategy/results/bb_full_grid_5m_20260226_214834.csv
Normal file
26
strategy/results/bb_full_grid_5m_20260226_214834.csv
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832
|
||||||
|
401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248
|
||||||
|
201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145
|
||||||
|
1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773
|
||||||
|
601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
26
strategy/results/bb_full_grid_5m_20260226_215016.csv
Normal file
26
strategy/results/bb_full_grid_5m_20260226_215016.csv
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
801,0.5,181.43296931677935,-9.283515341610325,4050,30.0,-0.09570947529404288,-101.50183051832926,50.75091525916463,-51.03276125247054
|
||||||
|
601,0.5,93.62899070862777,-53.18550464568612,4692,31.60699062233589,-0.5815001553833595,-197.11225415652723,98.55612707826361,-139.00840817289733
|
||||||
|
401,0.5,62.32779858408545,-68.83610070795727,5759,33.79058864386178,-1.4213594190051202,-161.96245274664543,80.98122637332271,-150.67739483467687
|
||||||
|
201,0.5,89.02955479967403,-55.485222600162984,8469,35.48234738457906,-0.5773758988733515,-241.43620122699747,120.71810061349872,-158.98821387744218
|
||||||
|
401,400.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692
|
||||||
|
401,200.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692
|
||||||
|
401,800.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692
|
||||||
|
401,600.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692
|
||||||
|
801,600.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865
|
||||||
|
801,400.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865
|
||||||
|
801,200.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865
|
||||||
|
801,800.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865
|
||||||
|
1,200.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078
|
||||||
|
1,800.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078
|
||||||
|
1,600.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078
|
||||||
|
1,400.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078
|
||||||
|
1,0.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078
|
||||||
|
601,200.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367
|
||||||
|
601,400.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367
|
||||||
|
601,600.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367
|
||||||
|
601,800.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367
|
||||||
|
201,800.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712
|
||||||
|
201,600.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712
|
||||||
|
201,400.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712
|
||||||
|
201,200.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712
|
||||||
|
101
strategy/results/bb_full_grid_5m_20260226_220149.csv
Normal file
101
strategy/results/bb_full_grid_5m_20260226_220149.csv
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598
|
||||||
|
801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832
|
||||||
|
501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172
|
||||||
|
701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428
|
||||||
|
101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705
|
||||||
|
401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248
|
||||||
|
201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585
|
||||||
|
201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145
|
||||||
|
1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773
|
||||||
|
501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
17
strategy/results/bb_full_grid_5m_20260226_220319.csv
Normal file
17
strategy/results/bb_full_grid_5m_20260226_220319.csv
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
751,250.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,500.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,750.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172
|
||||||
|
751,0.5,6.787536497792063,-96.60623175110396,11769,31.701928795989463,-0.8973785204314527,-208.02359739762167,104.01179869881084,-190.58421295533006
|
||||||
|
251,0.5,1.2582263129595197,-99.37088684352024,21094,37.47985209064189,-1.1405413234039807,-199.63192120071835,99.81596060035918,-192.91015120465536
|
||||||
|
251,250.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,500.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,750.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,250.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,750.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
501,250.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,750.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
401
strategy/results/bb_full_grid_5m_20260226_222227.csv
Normal file
401
strategy/results/bb_full_grid_5m_20260226_222227.csv
Normal file
@@ -0,0 +1,401 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,350.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,450.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,550.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,650.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,750.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,850.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,950.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,50.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,250.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
301,150.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427
|
||||||
|
751,350.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,800.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,300.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,150.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,100.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,50.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,950.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,900.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,250.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,850.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,750.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,700.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,650.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,600.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,550.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,500.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,450.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,400.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
751,200.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604
|
||||||
|
901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598
|
||||||
|
851,0.5,13.139093314987317,-93.43045334250634,10724,31.90041029466617,-0.8457807204487175,-197.00597073746417,98.50298536873208,-182.38221028287663
|
||||||
|
351,550.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,800.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,600.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,650.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,700.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,750.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,450.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,850.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,500.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,200.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,400.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,950.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,350.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,300.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,250.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,150.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,100.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,50.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
351,900.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095
|
||||||
|
801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832
|
||||||
|
551,0.5,4.519023184638675,-97.74048840768066,14150,33.36395759717314,-0.9378467165440548,-198.0691055074856,99.0345527537428,-188.22229120920355
|
||||||
|
501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172
|
||||||
|
701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428
|
||||||
|
551,350.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,600.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,300.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,950.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,900.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,850.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,800.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,700.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,650.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,750.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,550.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,450.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,400.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,50.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,100.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,150.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,200.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,250.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
551,500.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108
|
||||||
|
751,0.5,6.787536497792063,-96.60623175110396,11769,31.701928795989463,-0.8973785204314527,-208.02359739762167,104.01179869881084,-190.58421295533006
|
||||||
|
101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705
|
||||||
|
401,750.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,650.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,950.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,850.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,550.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,450.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,350.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,250.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,150.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
401,50.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151
|
||||||
|
351,0.5,3.361096585733224,-98.31945170713338,17810,36.27175743964065,-1.2209929603510115,-197.10747569782964,98.55373784891482,-191.8143575104774
|
||||||
|
451,0.5,2.329711769566727,-98.83514411521664,16156,34.27209705372617,-1.1239876151275339,-199.45433646360712,99.72716823180356,-192.1047300821899
|
||||||
|
401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248
|
||||||
|
251,0.5,1.2582263129595197,-99.37088684352024,21094,37.47985209064189,-1.1405413234039807,-199.63192120071835,99.81596060035918,-192.91015120465536
|
||||||
|
201,750.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,250.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,850.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,650.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,550.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,450.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,950.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,350.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,150.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
201,50.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279
|
||||||
|
301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585
|
||||||
|
201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145
|
||||||
|
151,0.5,0.447147524480946,-99.77642623775952,28965,38.933195235629206,-1.118503991656886,-203.0492986206653,101.52464931033265,-194.41819358590828
|
||||||
|
51,0.5,0.2647932025146436,-99.86760339874267,50009,41.39054970105381,-1.3185573829105623,-200.91043500058367,100.45521750029182,-196.05446599390288
|
||||||
|
51,550.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,250.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,300.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,350.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,400.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,450.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,500.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,100.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,600.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,700.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,750.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,50.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,800.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,850.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,900.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,950.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,650.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,200.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
51,150.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184
|
||||||
|
251,250.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,300.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,500.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,550.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,600.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,650.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,700.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,750.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,800.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,850.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,900.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,950.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,350.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,400.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,450.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,200.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,150.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,100.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
251,50.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995
|
||||||
|
451,400.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,50.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,100.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,150.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,200.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,250.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,300.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,350.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,600.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,950.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,900.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,850.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,800.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,750.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,700.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,650.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,550.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,500.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
451,450.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008
|
||||||
|
651,0.5,8.018313005737676,-95.99084349713117,13136,32.14068209500609,-0.8122633291075041,-232.77203302005913,116.38601651002955,-198.84681665444486
|
||||||
|
951,0.5,2.5894181323552834,-98.70529093382235,9665,30.17071908949819,-0.8040188151074918,-230.08606629610864,115.04303314805433,-200.38794323355572
|
||||||
|
1,50.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,750.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,650.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,550.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,450.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,250.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,850.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,950.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,150.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
1,350.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663
|
||||||
|
601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773
|
||||||
|
501,750.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,950.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,850.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,650.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,350.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,50.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,150.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,250.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,450.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,550.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338
|
||||||
|
101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,350.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,450.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,550.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,150.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,650.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,750.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,850.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,950.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,50.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,250.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004
|
||||||
|
151,900.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,950.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,100.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,500.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,400.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,50.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,350.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,300.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,250.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,200.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,450.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,150.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,550.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,600.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,650.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,700.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,750.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,800.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
151,850.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077
|
||||||
|
651,650.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,950.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,900.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,800.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,750.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,700.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,850.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,600.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,550.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,500.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,450.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,350.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,300.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,250.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,200.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,150.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,100.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,50.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
651,400.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369
|
||||||
|
951,450.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,900.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,50.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,350.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,300.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,250.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,200.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,150.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,100.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,500.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,850.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,550.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,400.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,650.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,700.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,750.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,800.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,600.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
951,950.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083
|
||||||
|
601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,950.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,850.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,750.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,650.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,550.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,450.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,350.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,250.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,150.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,50.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043
|
||||||
|
701,50.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,950.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,750.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,550.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,350.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,650.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,850.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,450.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,250.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
701,150.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569
|
||||||
|
801,50.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,150.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,350.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,450.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,950.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,850.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,750.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,650.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,550.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
801,250.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557
|
||||||
|
851,600.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,950.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,900.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,800.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,750.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,700.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,650.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,550.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,500.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,450.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,400.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,350.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,300.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,250.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,200.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,150.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,100.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,50.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
851,850.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297
|
||||||
|
901,150.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,50.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,250.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,350.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,450.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,550.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,650.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,750.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,850.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,950.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374
|
||||||
|
226
strategy/results/bb_full_grid_5m_20260226_222638.csv
Normal file
226
strategy/results/bb_full_grid_5m_20260226_222638.csv
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
275,800.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,750.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,150.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,200.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,250.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,300.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,350.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,400.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,450.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,500.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,550.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,600.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,650.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,700.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
275,100.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021
|
||||||
|
300,150.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,800.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,750.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,700.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,650.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,600.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,550.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,100.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,450.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,400.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,350.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,300.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,250.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,500.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,200.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
350,100.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,550.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,200.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,800.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,750.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,700.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,650.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,600.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,150.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,500.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,400.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,350.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,300.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,250.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
350,450.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298
|
||||||
|
225,350.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,100.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,150.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,200.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,250.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,300.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,550.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,400.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,500.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,600.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,650.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,700.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,750.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,800.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
225,450.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494
|
||||||
|
200,800.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,100.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,700.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,650.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,600.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,550.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,500.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,450.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,400.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,350.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,300.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,250.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,200.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,150.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
200,750.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422
|
||||||
|
325,800.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,750.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,150.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,200.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,250.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,300.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,350.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,100.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,400.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,450.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,500.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,550.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,600.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,650.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
325,700.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955
|
||||||
|
400,750.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,100.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,700.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,650.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,600.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,550.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,500.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,450.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,350.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,300.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,250.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,200.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,150.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,400.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
400,800.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582
|
||||||
|
75,750.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,400.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,800.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,100.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,150.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,200.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,300.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,350.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,250.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,450.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,500.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,550.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,600.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,650.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
75,700.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815
|
||||||
|
250,500.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,800.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,750.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,700.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,650.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,600.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,550.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,450.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,350.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,300.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,250.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,200.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,150.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,100.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
250,400.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729
|
||||||
|
375,150.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,500.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,250.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,300.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,350.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,400.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,450.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,700.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,550.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,600.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,650.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,750.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,800.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,100.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
375,200.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796
|
||||||
|
50,100.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,750.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,700.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,650.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,600.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,550.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,500.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,450.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,150.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,400.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,350.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,300.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,250.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,200.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
50,800.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144
|
||||||
|
125,100.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,800.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,150.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,700.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,650.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,600.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,550.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,500.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,450.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,400.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,350.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,300.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,250.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,200.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
125,750.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116
|
||||||
|
150,100.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,150.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,250.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,300.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,350.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,400.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,450.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,500.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,550.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,600.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,650.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,700.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,750.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,800.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
150,200.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055
|
||||||
|
100,800.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,750.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,400.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,650.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,600.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,550.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,500.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,450.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,700.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,350.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,250.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,200.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,150.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,100.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
100,300.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704
|
||||||
|
175,400.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,700.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,650.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,600.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,550.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,500.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,450.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,250.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,350.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,300.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,200.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,150.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,100.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,750.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
175,800.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136
|
||||||
|
177
strategy/results/bb_full_grid_5m_20260226_224709.csv
Normal file
177
strategy/results/bb_full_grid_5m_20260226_224709.csv
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score
|
||||||
|
290,496.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,510.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,482.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,484.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,486.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,488.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,490.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,492.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,494.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,498.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,500.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,502.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,504.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,506.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,508.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
290,480.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306
|
||||||
|
294,510.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,492.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,508.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,482.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,484.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,486.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,488.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,490.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,480.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,494.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,506.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,498.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,500.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,502.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,504.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
294,496.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927
|
||||||
|
292,480.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,482.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,484.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,488.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,490.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,492.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,494.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,486.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,498.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,508.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,500.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,510.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,496.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,506.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,502.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
292,504.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689
|
||||||
|
296,494.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,506.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,504.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,502.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,500.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,498.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,496.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,492.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,490.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,488.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,484.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,482.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,480.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,510.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,486.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
296,508.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747
|
||||||
|
288,480.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,498.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,482.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,510.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,508.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,506.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,504.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,502.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,500.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,494.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,496.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,484.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,492.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,490.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,488.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
288,486.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232
|
||||||
|
298,486.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,488.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,490.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,492.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,494.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,502.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,498.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,500.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,482.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,504.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,508.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,510.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,484.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,506.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,496.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
298,480.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299
|
||||||
|
282,492.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,506.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,504.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,502.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,500.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,496.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,494.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,490.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,510.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,488.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,486.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,484.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,482.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,480.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,508.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
282,498.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912
|
||||||
|
286,484.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,496.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,508.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,486.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,488.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,490.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,492.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,494.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,482.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,498.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,480.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,502.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,504.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,510.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,506.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
286,500.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342
|
||||||
|
300,496.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,508.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,506.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,504.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,502.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,500.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,498.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,490.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,494.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,492.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,488.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,486.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,484.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,482.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,480.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
300,510.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324
|
||||||
|
280,482.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,510.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,484.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,486.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,488.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,490.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,492.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,494.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,496.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,498.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,500.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,502.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,504.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,506.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,508.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
280,480.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868
|
||||||
|
284,510.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,482.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,484.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,486.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,488.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,490.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,492.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,494.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,496.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,498.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,500.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,502.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,504.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,506.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,508.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
284,480.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688
|
||||||
|
2501
strategy/results/bb_full_grid_5m_20260227_011737.csv
Normal file
2501
strategy/results/bb_full_grid_5m_20260227_011737.csv
Normal file
File diff suppressed because it is too large
Load Diff
2501
strategy/results/bb_full_grid_5m_20260227_115332.csv
Normal file
2501
strategy/results/bb_full_grid_5m_20260227_115332.csv
Normal file
File diff suppressed because it is too large
Load Diff
2501
strategy/results/bb_full_grid_5m_20260227_150421.csv
Normal file
2501
strategy/results/bb_full_grid_5m_20260227_150421.csv
Normal file
File diff suppressed because it is too large
Load Diff
2409
strategy/results/bb_midline_hier_search_5m_20260226_192735.csv
Normal file
2409
strategy/results/bb_midline_hier_search_5m_20260226_192735.csv
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
|||||||
|
year,year_end_equity,year_return_pct
|
||||||
|
2020,54.050106322289274,-72.97494683885536
|
||||||
|
2021,94.65774624824195,75.12962080743739
|
||||||
|
2022,200.96942517386574,112.31165238903867
|
||||||
|
2023,141.40095297115792,-29.64056455412212
|
||||||
|
2024,192.12283166096822,35.87095958268133
|
||||||
|
2025,243.61657139606652,26.802509254062695
|
||||||
|
Reference in New Issue
Block a user