Hierarchical ML Pipeline for trading predictions:
- Level 0: Attention Models (volatility/flow classification)
- Level 1: Base Models (XGBoost per symbol/timeframe)
- Level 2: Metamodels (XGBoost Stacking + Neural Gating)
Key components:
- src/pipelines/hierarchical_pipeline.py - Main prediction pipeline
- src/models/ - All ML model classes
- src/training/ - Training utilities
- src/api/ - FastAPI endpoints
- scripts/ - Training and evaluation scripts
- config/ - YAML configurations
Note: Trained models (*.joblib, *.pt) are gitignored.
Regenerate with training scripts.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1424 lines
37 KiB
JSON
1424 lines
37 KiB
JSON
{
|
|
"config": {
|
|
"symbol": "XAUUSD",
|
|
"timeframe": "15m",
|
|
"horizon": "scalping",
|
|
"tp_factor": 0.8,
|
|
"sl_factor": 2.0,
|
|
"min_range_pct": 0.0001,
|
|
"direction_bias": 1.2,
|
|
"signal_every_n": 8
|
|
},
|
|
"metrics": {
|
|
"total_trades": 100,
|
|
"win_rate": 0.73,
|
|
"n_wins": "73",
|
|
"n_losses": "27",
|
|
"n_timeouts": "0",
|
|
"total_pnl": 202.61007871188528,
|
|
"final_capital": 10202.610078711885,
|
|
"max_drawdown": 0.05904905979005373
|
|
},
|
|
"trades": [
|
|
{
|
|
"bar": 120,
|
|
"time": "2025-01-02 04:35:00",
|
|
"direction": "long",
|
|
"entry": 2644.01,
|
|
"tp": 2645.456857142857,
|
|
"sl": 2640.3928571428573,
|
|
"exit": 2640.3928571428573,
|
|
"result": "sl",
|
|
"pnl": -100.00000000000034,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0006840259411164987,
|
|
"pred_low": 0.0006840259411164987
|
|
},
|
|
{
|
|
"bar": 152,
|
|
"time": "2025-01-02 07:15:00",
|
|
"direction": "short",
|
|
"entry": 2637.66,
|
|
"tp": 2636.5514285714285,
|
|
"sl": 2640.4314285714286,
|
|
"exit": 2636.5514285714285,
|
|
"result": "tp",
|
|
"pnl": 39.59999999999954,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0005253574326161294,
|
|
"pred_low": 0.0005253574326161294
|
|
},
|
|
{
|
|
"bar": 656,
|
|
"time": "2025-01-06 03:05:00",
|
|
"direction": "long",
|
|
"entry": 2634.16,
|
|
"tp": 2635.248457142857,
|
|
"sl": 2631.438857142857,
|
|
"exit": 2635.248457142857,
|
|
"result": "tp",
|
|
"pnl": 39.75840000000693,
|
|
"bars_held": 3,
|
|
"pred_high": 0.000516510549310388,
|
|
"pred_low": 0.000516510549310388
|
|
},
|
|
{
|
|
"bar": 712,
|
|
"time": "2025-01-06 07:45:00",
|
|
"direction": "short",
|
|
"entry": 2624.54,
|
|
"tp": 2622.112114285714,
|
|
"sl": 2630.6097142857143,
|
|
"exit": 2622.112114285714,
|
|
"result": "tp",
|
|
"pnl": 39.917433600002035,
|
|
"bars_held": 6,
|
|
"pred_high": 0.0011563386890110741,
|
|
"pred_low": 0.0011563386890110741
|
|
},
|
|
{
|
|
"bar": 728,
|
|
"time": "2025-01-06 09:05:00",
|
|
"direction": "long",
|
|
"entry": 2632.9,
|
|
"tp": 2635.7768,
|
|
"sl": 2625.708,
|
|
"exit": 2635.7768,
|
|
"result": "tp",
|
|
"pnl": 40.0771033343996,
|
|
"bars_held": 4,
|
|
"pred_high": 0.001365794371225661,
|
|
"pred_low": 0.001365794371225661
|
|
},
|
|
{
|
|
"bar": 984,
|
|
"time": "2025-01-07 07:20:00",
|
|
"direction": "long",
|
|
"entry": 2659.94,
|
|
"tp": 2661.200342857143,
|
|
"sl": 2656.789142857143,
|
|
"exit": 2661.200342857143,
|
|
"result": "tp",
|
|
"pnl": 40.23741174773878,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005922797399296709,
|
|
"pred_low": 0.0005922797399296709
|
|
},
|
|
{
|
|
"bar": 1008,
|
|
"time": "2025-01-07 09:20:00",
|
|
"direction": "short",
|
|
"entry": 2651.94,
|
|
"tp": 2649.8312,
|
|
"sl": 2657.212,
|
|
"exit": 2649.8312,
|
|
"result": "tp",
|
|
"pnl": 40.398361394729186,
|
|
"bars_held": 2,
|
|
"pred_high": 0.000993989305942038,
|
|
"pred_low": 0.000993989305942038
|
|
},
|
|
{
|
|
"bar": 1312,
|
|
"time": "2025-01-08 11:35:00",
|
|
"direction": "short",
|
|
"entry": 2652.19,
|
|
"tp": 2650.472057142857,
|
|
"sl": 2656.4848571428574,
|
|
"exit": 2656.4848571428574,
|
|
"result": "sl",
|
|
"pnl": -101.39988710077213,
|
|
"bars_held": 5,
|
|
"pred_high": 0.0008096812714883245,
|
|
"pred_low": 0.0008096812714883245
|
|
},
|
|
{
|
|
"bar": 1840,
|
|
"time": "2025-01-10 09:25:00",
|
|
"direction": "long",
|
|
"entry": 2694.82,
|
|
"tp": 2697.0984000000003,
|
|
"sl": 2689.1240000000003,
|
|
"exit": 2697.0984000000003,
|
|
"result": "tp",
|
|
"pnl": 40.15435529190652,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0010568423865044917,
|
|
"pred_low": 0.0010568423865044917
|
|
},
|
|
{
|
|
"bar": 2056,
|
|
"time": "2025-01-13 04:20:00",
|
|
"direction": "short",
|
|
"entry": 2679.04,
|
|
"tp": 2677.5602285714285,
|
|
"sl": 2682.7394285714286,
|
|
"exit": 2677.5602285714285,
|
|
"result": "tp",
|
|
"pnl": 40.31497271307075,
|
|
"bars_held": 15,
|
|
"pred_high": 0.0006904392191659542,
|
|
"pred_low": 0.0006904392191659542
|
|
},
|
|
{
|
|
"bar": 2136,
|
|
"time": "2025-01-13 11:00:00",
|
|
"direction": "short",
|
|
"entry": 2660.17,
|
|
"tp": 2658.9828,
|
|
"sl": 2663.138,
|
|
"exit": 2663.138,
|
|
"result": "sl",
|
|
"pnl": -101.19058150980638,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0005578590841938631,
|
|
"pred_low": 0.0005578590841938631
|
|
},
|
|
{
|
|
"bar": 2392,
|
|
"time": "2025-01-14 09:15:00",
|
|
"direction": "long",
|
|
"entry": 2671.22,
|
|
"tp": 2672.813142857143,
|
|
"sl": 2667.2371428571428,
|
|
"exit": 2672.813142857143,
|
|
"result": "tp",
|
|
"pnl": 40.07147027788862,
|
|
"bars_held": 12,
|
|
"pred_high": 0.000745512751262931,
|
|
"pred_low": 0.000745512751262931
|
|
},
|
|
{
|
|
"bar": 2664,
|
|
"time": "2025-01-15 08:50:00",
|
|
"direction": "short",
|
|
"entry": 2683.08,
|
|
"tp": 2680.6310857142857,
|
|
"sl": 2689.2022857142856,
|
|
"exit": 2680.6310857142857,
|
|
"result": "tp",
|
|
"pnl": 40.23175615899482,
|
|
"bars_held": 2,
|
|
"pred_high": 0.001140906293193966,
|
|
"pred_low": 0.001140906293193966
|
|
},
|
|
{
|
|
"bar": 2688,
|
|
"time": "2025-01-15 10:50:00",
|
|
"direction": "long",
|
|
"entry": 2688.55,
|
|
"tp": 2689.8469142857143,
|
|
"sl": 2685.3077142857146,
|
|
"exit": 2689.8469142857143,
|
|
"result": "tp",
|
|
"pnl": 40.39268318362817,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0006029803638179878,
|
|
"pred_low": 0.0006029803638179878
|
|
},
|
|
{
|
|
"bar": 3280,
|
|
"time": "2025-01-17 14:00:00",
|
|
"direction": "short",
|
|
"entry": 2700.7,
|
|
"tp": 2699.9530285714286,
|
|
"sl": 2702.5674285714285,
|
|
"exit": 2702.5674285714285,
|
|
"result": "sl",
|
|
"pnl": -101.38563479092493,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0003457304719940364,
|
|
"pred_low": 0.0003457304719940364
|
|
},
|
|
{
|
|
"bar": 3312,
|
|
"time": "2025-01-19 17:35:00",
|
|
"direction": "short",
|
|
"entry": 2696.5,
|
|
"tp": 2695.376342857143,
|
|
"sl": 2699.3091428571424,
|
|
"exit": 2695.376342857143,
|
|
"result": "tp",
|
|
"pnl": 40.14871137720698,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005208868639240944,
|
|
"pred_low": 0.0005208868639240944
|
|
},
|
|
{
|
|
"bar": 3488,
|
|
"time": "2025-01-20 08:15:00",
|
|
"direction": "long",
|
|
"entry": 2711.16,
|
|
"tp": 2712.7019428571425,
|
|
"sl": 2707.3051428571425,
|
|
"exit": 2707.3051428571425,
|
|
"result": "sl",
|
|
"pnl": -100.77326555678545,
|
|
"bars_held": 9,
|
|
"pred_high": 0.0007109239482098337,
|
|
"pred_low": 0.0007109239482098337
|
|
},
|
|
{
|
|
"bar": 3584,
|
|
"time": "2025-01-20 19:40:00",
|
|
"direction": "long",
|
|
"entry": 2715.94,
|
|
"tp": 2717.3896,
|
|
"sl": 2712.3160000000003,
|
|
"exit": 2717.3896,
|
|
"result": "tp",
|
|
"pnl": 39.906213160483425,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0006671723233944697,
|
|
"pred_low": 0.0006671723233944697
|
|
},
|
|
{
|
|
"bar": 3656,
|
|
"time": "2025-01-21 01:40:00",
|
|
"direction": "long",
|
|
"entry": 2731.24,
|
|
"tp": 2732.4239999999995,
|
|
"sl": 2728.2799999999997,
|
|
"exit": 2728.2799999999997,
|
|
"result": "sl",
|
|
"pnl": -100.16459503282385,
|
|
"bars_held": 4,
|
|
"pred_high": 0.0005418784142001169,
|
|
"pred_low": 0.0005418784142001169
|
|
},
|
|
{
|
|
"bar": 3736,
|
|
"time": "2025-01-21 08:20:00",
|
|
"direction": "long",
|
|
"entry": 2731.11,
|
|
"tp": 2732.5664571428574,
|
|
"sl": 2727.4688571428574,
|
|
"exit": 2732.5664571428574,
|
|
"result": "tp",
|
|
"pnl": 39.665179633000164,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0006666049439866611,
|
|
"pred_low": 0.0006666049439866611
|
|
},
|
|
{
|
|
"bar": 4232,
|
|
"time": "2025-01-23 03:30:00",
|
|
"direction": "short",
|
|
"entry": 2742.44,
|
|
"tp": 2741.5174857142856,
|
|
"sl": 2744.7462857142855,
|
|
"exit": 2741.5174857142856,
|
|
"result": "tp",
|
|
"pnl": 39.823840351536646,
|
|
"bars_held": 1,
|
|
"pred_high": 0.00042048061476013905,
|
|
"pred_low": 0.00042048061476013905
|
|
},
|
|
{
|
|
"bar": 4568,
|
|
"time": "2025-01-24 08:25:00",
|
|
"direction": "short",
|
|
"entry": 2774.13,
|
|
"tp": 2772.7617714285716,
|
|
"sl": 2777.5505714285714,
|
|
"exit": 2777.5505714285714,
|
|
"result": "sl",
|
|
"pnl": -99.95783928232987,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0006165124613070516,
|
|
"pred_low": 0.0006165124613070516
|
|
},
|
|
{
|
|
"bar": 4856,
|
|
"time": "2025-01-27 09:20:00",
|
|
"direction": "short",
|
|
"entry": 2744.54,
|
|
"tp": 2742.3384,
|
|
"sl": 2750.044,
|
|
"exit": 2742.3384,
|
|
"result": "tp",
|
|
"pnl": 39.58330435580204,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0010027181239843535,
|
|
"pred_low": 0.0010027181239843535
|
|
},
|
|
{
|
|
"bar": 5056,
|
|
"time": "2025-01-28 02:55:00",
|
|
"direction": "long",
|
|
"entry": 2740.92,
|
|
"tp": 2741.874057142857,
|
|
"sl": 2738.534857142857,
|
|
"exit": 2741.874057142857,
|
|
"result": "tp",
|
|
"pnl": 39.741637573221325,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0004350989553038478,
|
|
"pred_low": 0.0004350989553038478
|
|
},
|
|
{
|
|
"bar": 5456,
|
|
"time": "2025-01-29 13:10:00",
|
|
"direction": "short",
|
|
"entry": 2746.0,
|
|
"tp": 2744.9371428571426,
|
|
"sl": 2748.657142857143,
|
|
"exit": 2744.9371428571426,
|
|
"result": "tp",
|
|
"pnl": 39.900604123529185,
|
|
"bars_held": 3,
|
|
"pred_high": 0.00048382062220374386,
|
|
"pred_low": 0.00048382062220374386
|
|
},
|
|
{
|
|
"bar": 5464,
|
|
"time": "2025-01-29 13:50:00",
|
|
"direction": "long",
|
|
"entry": 2756.16,
|
|
"tp": 2758.1458285714284,
|
|
"sl": 2751.1954285714282,
|
|
"exit": 2758.1458285714284,
|
|
"result": "tp",
|
|
"pnl": 40.060206540014455,
|
|
"bars_held": 6,
|
|
"pred_high": 0.0009006319351146949,
|
|
"pred_low": 0.0009006319351146949
|
|
},
|
|
{
|
|
"bar": 5696,
|
|
"time": "2025-01-30 10:05:00",
|
|
"direction": "long",
|
|
"entry": 2797.1,
|
|
"tp": 2798.537257142857,
|
|
"sl": 2793.506857142857,
|
|
"exit": 2793.506857142857,
|
|
"result": "sl",
|
|
"pnl": -100.55111841544084,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006422978901617503,
|
|
"pred_low": 0.0006422978901617503
|
|
},
|
|
{
|
|
"bar": 5760,
|
|
"time": "2025-01-30 15:25:00",
|
|
"direction": "short",
|
|
"entry": 2792.16,
|
|
"tp": 2790.6592,
|
|
"sl": 2795.912,
|
|
"exit": 2790.6592,
|
|
"result": "tp",
|
|
"pnl": 39.81824289250843,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006718812675491269,
|
|
"pred_low": 0.0006718812675491269
|
|
},
|
|
{
|
|
"bar": 6000,
|
|
"time": "2025-01-31 12:20:00",
|
|
"direction": "short",
|
|
"entry": 2799.8,
|
|
"tp": 2797.6212571428573,
|
|
"sl": 2805.246857142857,
|
|
"exit": 2797.6212571428573,
|
|
"result": "tp",
|
|
"pnl": 39.97751586408329,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0009727225414060251,
|
|
"pred_low": 0.0009727225414060251
|
|
},
|
|
{
|
|
"bar": 6072,
|
|
"time": "2025-02-02 19:15:00",
|
|
"direction": "short",
|
|
"entry": 2782.56,
|
|
"tp": 2780.7035428571426,
|
|
"sl": 2787.2011428571427,
|
|
"exit": 2780.7035428571426,
|
|
"result": "tp",
|
|
"pnl": 40.13742592754404,
|
|
"bars_held": 8,
|
|
"pred_high": 0.0008339699516170224,
|
|
"pred_low": 0.0008339699516170224
|
|
},
|
|
{
|
|
"bar": 6208,
|
|
"time": "2025-02-03 06:35:00",
|
|
"direction": "long",
|
|
"entry": 2807.8,
|
|
"tp": 2808.808457142857,
|
|
"sl": 2805.2788571428573,
|
|
"exit": 2808.808457142857,
|
|
"result": "tp",
|
|
"pnl": 40.29797563124364,
|
|
"bars_held": 2,
|
|
"pred_high": 0.000448953425661158,
|
|
"pred_low": 0.000448953425661158
|
|
},
|
|
{
|
|
"bar": 6240,
|
|
"time": "2025-02-03 09:15:00",
|
|
"direction": "short",
|
|
"entry": 2822.0,
|
|
"tp": 2819.964342857143,
|
|
"sl": 2827.0891428571426,
|
|
"exit": 2819.964342857143,
|
|
"result": "tp",
|
|
"pnl": 40.45916753377127,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0009016907968006428,
|
|
"pred_low": 0.0009016907968006428
|
|
},
|
|
{
|
|
"bar": 6496,
|
|
"time": "2025-02-04 07:30:00",
|
|
"direction": "long",
|
|
"entry": 2835.74,
|
|
"tp": 2837.0679999999998,
|
|
"sl": 2832.4199999999996,
|
|
"exit": 2832.4199999999996,
|
|
"result": "sl",
|
|
"pnl": -101.55251050977867,
|
|
"bars_held": 4,
|
|
"pred_high": 0.000585385119933425,
|
|
"pred_low": 0.000585385119933425
|
|
},
|
|
{
|
|
"bar": 6776,
|
|
"time": "2025-02-05 07:45:00",
|
|
"direction": "short",
|
|
"entry": 2859.37,
|
|
"tp": 2857.8998285714283,
|
|
"sl": 2863.0454285714286,
|
|
"exit": 2863.0454285714286,
|
|
"result": "sl",
|
|
"pnl": -100.53698540468075,
|
|
"bars_held": 4,
|
|
"pred_high": 0.0006426990161169341,
|
|
"pred_low": 0.0006426990161169341
|
|
},
|
|
{
|
|
"bar": 6792,
|
|
"time": "2025-02-05 09:05:00",
|
|
"direction": "long",
|
|
"entry": 2873.6,
|
|
"tp": 2875.1158857142855,
|
|
"sl": 2869.810285714286,
|
|
"exit": 2875.1158857142855,
|
|
"result": "tp",
|
|
"pnl": 39.81264622024908,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0006594018453706441,
|
|
"pred_low": 0.0006594018453706441
|
|
},
|
|
{
|
|
"bar": 6808,
|
|
"time": "2025-02-05 10:25:00",
|
|
"direction": "short",
|
|
"entry": 2868.94,
|
|
"tp": 2866.6890285714285,
|
|
"sl": 2874.5674285714285,
|
|
"exit": 2874.5674285714285,
|
|
"result": "sl",
|
|
"pnl": -99.92974201282827,
|
|
"bars_held": 6,
|
|
"pred_high": 0.0009807504812628885,
|
|
"pred_low": 0.0009807504812628885
|
|
},
|
|
{
|
|
"bar": 6984,
|
|
"time": "2025-02-06 02:00:00",
|
|
"direction": "short",
|
|
"entry": 2854.79,
|
|
"tp": 2853.6233714285713,
|
|
"sl": 2857.7065714285714,
|
|
"exit": 2853.6233714285713,
|
|
"result": "tp",
|
|
"pnl": 39.57217783708483,
|
|
"bars_held": 4,
|
|
"pred_high": 0.000510820660814171,
|
|
"pred_low": 0.000510820660814171
|
|
},
|
|
{
|
|
"bar": 7336,
|
|
"time": "2025-02-07 08:15:00",
|
|
"direction": "long",
|
|
"entry": 2869.19,
|
|
"tp": 2872.230457142857,
|
|
"sl": 2861.5888571428573,
|
|
"exit": 2872.230457142857,
|
|
"result": "tp",
|
|
"pnl": 39.7304665484295,
|
|
"bars_held": 2,
|
|
"pred_high": 0.001324614761856636,
|
|
"pred_low": 0.001324614761856636
|
|
},
|
|
{
|
|
"bar": 7352,
|
|
"time": "2025-02-07 09:35:00",
|
|
"direction": "long",
|
|
"entry": 2885.68,
|
|
"tp": 2887.5456,
|
|
"sl": 2881.016,
|
|
"exit": 2881.016,
|
|
"result": "sl",
|
|
"pnl": -99.72347103655515,
|
|
"bars_held": 3,
|
|
"pred_high": 0.000808128413406882,
|
|
"pred_low": 0.000808128413406882
|
|
},
|
|
{
|
|
"bar": 7360,
|
|
"time": "2025-02-07 10:15:00",
|
|
"direction": "short",
|
|
"entry": 2871.32,
|
|
"tp": 2868.8368,
|
|
"sl": 2877.5280000000002,
|
|
"exit": 2868.8368,
|
|
"result": "tp",
|
|
"pnl": 39.49049453048025,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0010810358998648466,
|
|
"pred_low": 0.0010810358998648466
|
|
},
|
|
{
|
|
"bar": 7384,
|
|
"time": "2025-02-07 12:15:00",
|
|
"direction": "long",
|
|
"entry": 2864.7,
|
|
"tp": 2866.1262857142856,
|
|
"sl": 2861.1342857142854,
|
|
"exit": 2861.1342857142854,
|
|
"result": "sl",
|
|
"pnl": -99.1211412715012,
|
|
"bars_held": 6,
|
|
"pred_high": 0.0006223538740032669,
|
|
"pred_low": 0.0006223538740032669
|
|
},
|
|
{
|
|
"bar": 7736,
|
|
"time": "2025-02-10 19:25:00",
|
|
"direction": "long",
|
|
"entry": 2928.26,
|
|
"tp": 2929.8289142857143,
|
|
"sl": 2924.3377142857144,
|
|
"exit": 2929.8289142857143,
|
|
"result": "tp",
|
|
"pnl": 39.25197194350831,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0006697297566277722,
|
|
"pred_low": 0.0006697297566277722
|
|
},
|
|
{
|
|
"bar": 7744,
|
|
"time": "2025-02-10 20:05:00",
|
|
"direction": "long",
|
|
"entry": 2936.44,
|
|
"tp": 2938.5428571428574,
|
|
"sl": 2931.1828571428573,
|
|
"exit": 2938.5428571428574,
|
|
"result": "tp",
|
|
"pnl": 39.4089798312913,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0008951558446865778,
|
|
"pred_low": 0.0008951558446865778
|
|
},
|
|
{
|
|
"bar": 7752,
|
|
"time": "2025-02-10 20:45:00",
|
|
"direction": "short",
|
|
"entry": 2917.14,
|
|
"tp": 2913.7978285714285,
|
|
"sl": 2925.4954285714284,
|
|
"exit": 2913.7978285714285,
|
|
"result": "tp",
|
|
"pnl": 39.56661575061232,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0014321267699576616,
|
|
"pred_low": 0.0014321267699576616
|
|
},
|
|
{
|
|
"bar": 7760,
|
|
"time": "2025-02-10 21:25:00",
|
|
"direction": "long",
|
|
"entry": 2921.46,
|
|
"tp": 2925.2012571428572,
|
|
"sl": 2912.1068571428573,
|
|
"exit": 2925.2012571428572,
|
|
"result": "tp",
|
|
"pnl": 39.7248822136152,
|
|
"bars_held": 2,
|
|
"pred_high": 0.001600765175142382,
|
|
"pred_low": 0.001600765175142382
|
|
},
|
|
{
|
|
"bar": 7792,
|
|
"time": "2025-02-11 00:05:00",
|
|
"direction": "long",
|
|
"entry": 2928.22,
|
|
"tp": 2929.465257142857,
|
|
"sl": 2925.106857142857,
|
|
"exit": 2925.106857142857,
|
|
"result": "sl",
|
|
"pnl": -99.70945435617811,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005315759842400558,
|
|
"pred_low": 0.0005315759842400558
|
|
},
|
|
{
|
|
"bar": 7800,
|
|
"time": "2025-02-11 00:45:00",
|
|
"direction": "short",
|
|
"entry": 2917.15,
|
|
"tp": 2915.5472571428572,
|
|
"sl": 2921.156857142857,
|
|
"exit": 2915.5472571428572,
|
|
"result": "tp",
|
|
"pnl": 39.484943925044774,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0006867759873261808,
|
|
"pred_low": 0.0006867759873261808
|
|
},
|
|
{
|
|
"bar": 8160,
|
|
"time": "2025-02-12 07:40:00",
|
|
"direction": "short",
|
|
"entry": 2867.96,
|
|
"tp": 2865.6779428571426,
|
|
"sl": 2873.665142857143,
|
|
"exit": 2873.665142857143,
|
|
"result": "sl",
|
|
"pnl": -99.10720925186405,
|
|
"bars_held": 1,
|
|
"pred_high": 0.000994634314485378,
|
|
"pred_low": 0.000994634314485378
|
|
},
|
|
{
|
|
"bar": 8168,
|
|
"time": "2025-02-12 08:25:00",
|
|
"direction": "long",
|
|
"entry": 2894.74,
|
|
"tp": 2897.9793142857143,
|
|
"sl": 2886.641714285714,
|
|
"exit": 2897.9793142857143,
|
|
"result": "tp",
|
|
"pnl": 39.24645486373969,
|
|
"bars_held": 28,
|
|
"pred_high": 0.0013987932792385123,
|
|
"pred_low": 0.0013987932792385123
|
|
},
|
|
{
|
|
"bar": 8200,
|
|
"time": "2025-02-12 11:05:00",
|
|
"direction": "long",
|
|
"entry": 2903.8,
|
|
"tp": 2905.1220571428576,
|
|
"sl": 2900.494857142857,
|
|
"exit": 2905.1220571428576,
|
|
"result": "tp",
|
|
"pnl": 39.403440683198575,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0005691064910019488,
|
|
"pred_low": 0.0005691064910019488
|
|
},
|
|
{
|
|
"bar": 8712,
|
|
"time": "2025-02-14 07:40:00",
|
|
"direction": "short",
|
|
"entry": 2918.31,
|
|
"tp": 2916.3881714285712,
|
|
"sl": 2923.1145714285713,
|
|
"exit": 2916.3881714285712,
|
|
"result": "tp",
|
|
"pnl": 39.561054445927965,
|
|
"bars_held": 4,
|
|
"pred_high": 0.000823177014877005,
|
|
"pred_low": 0.000823177014877005
|
|
},
|
|
{
|
|
"bar": 8720,
|
|
"time": "2025-02-14 08:20:00",
|
|
"direction": "long",
|
|
"entry": 2925.72,
|
|
"tp": 2928.5478857142857,
|
|
"sl": 2918.6502857142855,
|
|
"exit": 2918.6502857142855,
|
|
"result": "sl",
|
|
"pnl": -99.29824665927114,
|
|
"bars_held": 8,
|
|
"pred_high": 0.001208200765232901,
|
|
"pred_low": 0.001208200765232901
|
|
},
|
|
{
|
|
"bar": 8744,
|
|
"time": "2025-02-14 10:20:00",
|
|
"direction": "short",
|
|
"entry": 2894.81,
|
|
"tp": 2892.122,
|
|
"sl": 2901.5299999999997,
|
|
"exit": 2892.122,
|
|
"result": "tp",
|
|
"pnl": 39.32210567707318,
|
|
"bars_held": 2,
|
|
"pred_high": 0.001160697938724825,
|
|
"pred_low": 0.001160697938724825
|
|
},
|
|
{
|
|
"bar": 8760,
|
|
"time": "2025-02-14 11:40:00",
|
|
"direction": "short",
|
|
"entry": 2887.72,
|
|
"tp": 2886.0715428571425,
|
|
"sl": 2891.8411428571426,
|
|
"exit": 2886.0715428571425,
|
|
"result": "tp",
|
|
"pnl": 39.47939409978384,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0007135634440220747,
|
|
"pred_low": 0.0007135634440220747
|
|
},
|
|
{
|
|
"bar": 8816,
|
|
"time": "2025-02-16 17:15:00",
|
|
"direction": "long",
|
|
"entry": 2892.13,
|
|
"tp": 2893.0525142857146,
|
|
"sl": 2889.8237142857142,
|
|
"exit": 2889.8237142857142,
|
|
"result": "sl",
|
|
"pnl": -99.0932791904559,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0003987175047950292,
|
|
"pred_low": 0.0003987175047950292
|
|
},
|
|
{
|
|
"bar": 8840,
|
|
"time": "2025-02-16 19:15:00",
|
|
"direction": "long",
|
|
"entry": 2889.52,
|
|
"tp": 2891.143771428571,
|
|
"sl": 2885.4605714285713,
|
|
"exit": 2891.143771428571,
|
|
"result": "tp",
|
|
"pnl": 39.24093855941283,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0007024399504811383,
|
|
"pred_low": 0.0007024399504811383
|
|
},
|
|
{
|
|
"bar": 9384,
|
|
"time": "2025-02-18 20:50:00",
|
|
"direction": "short",
|
|
"entry": 2927.23,
|
|
"tp": 2925.9641714285713,
|
|
"sl": 2930.3945714285715,
|
|
"exit": 2925.9641714285713,
|
|
"result": "tp",
|
|
"pnl": 39.39790231366203,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0005405402767413785,
|
|
"pred_low": 0.0005405402767413785
|
|
},
|
|
{
|
|
"bar": 9528,
|
|
"time": "2025-02-19 08:50:00",
|
|
"direction": "long",
|
|
"entry": 2939.33,
|
|
"tp": 2941.4164,
|
|
"sl": 2934.114,
|
|
"exit": 2934.114,
|
|
"result": "sl",
|
|
"pnl": -98.8887348072755,
|
|
"bars_held": 5,
|
|
"pred_high": 0.0008872770325209879,
|
|
"pred_low": 0.0008872770325209879
|
|
},
|
|
{
|
|
"bar": 9544,
|
|
"time": "2025-02-19 10:10:00",
|
|
"direction": "short",
|
|
"entry": 2928.02,
|
|
"tp": 2926.0035428571427,
|
|
"sl": 2933.061142857143,
|
|
"exit": 2926.0035428571427,
|
|
"result": "tp",
|
|
"pnl": 39.159938983682274,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0008608450176472278,
|
|
"pred_low": 0.0008608450176472278
|
|
},
|
|
{
|
|
"bar": 9776,
|
|
"time": "2025-02-20 06:25:00",
|
|
"direction": "short",
|
|
"entry": 2941.43,
|
|
"tp": 2940.1787999999997,
|
|
"sl": 2944.558,
|
|
"exit": 2944.558,
|
|
"result": "sl",
|
|
"pnl": -98.2914468490404,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0005317141662388858,
|
|
"pred_low": 0.0005317141662388858
|
|
},
|
|
{
|
|
"bar": 9792,
|
|
"time": "2025-02-20 07:45:00",
|
|
"direction": "short",
|
|
"entry": 2935.89,
|
|
"tp": 2934.1542285714286,
|
|
"sl": 2940.2294285714283,
|
|
"exit": 2934.1542285714286,
|
|
"result": "tp",
|
|
"pnl": 38.92341295221598,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0007390311918070161,
|
|
"pred_low": 0.0007390311918070161
|
|
},
|
|
{
|
|
"bar": 9920,
|
|
"time": "2025-02-20 19:20:00",
|
|
"direction": "long",
|
|
"entry": 2947.34,
|
|
"tp": 2948.5912000000003,
|
|
"sl": 2944.212,
|
|
"exit": 2944.212,
|
|
"result": "sl",
|
|
"pnl": -97.69776651007214,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0005306479741054802,
|
|
"pred_low": 0.0005306479741054802
|
|
},
|
|
{
|
|
"bar": 9928,
|
|
"time": "2025-02-20 20:00:00",
|
|
"direction": "short",
|
|
"entry": 2930.95,
|
|
"tp": 2928.709542857143,
|
|
"sl": 2936.5511428571426,
|
|
"exit": 2936.5511428571426,
|
|
"result": "sl",
|
|
"pnl": -96.72078884496891,
|
|
"bars_held": 1,
|
|
"pred_high": 0.000955516616991561,
|
|
"pred_low": 0.000955516616991561
|
|
},
|
|
{
|
|
"bar": 9944,
|
|
"time": "2025-02-20 21:20:00",
|
|
"direction": "short",
|
|
"entry": 2931.02,
|
|
"tp": 2929.7290285714284,
|
|
"sl": 2934.2474285714284,
|
|
"exit": 2929.7290285714284,
|
|
"result": "tp",
|
|
"pnl": 38.30143238261081,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0005505640649720232,
|
|
"pred_low": 0.0005505640649720232
|
|
},
|
|
{
|
|
"bar": 10088,
|
|
"time": "2025-02-21 09:20:00",
|
|
"direction": "short",
|
|
"entry": 2924.62,
|
|
"tp": 2922.6826285714283,
|
|
"sl": 2929.4634285714283,
|
|
"exit": 2922.6826285714283,
|
|
"result": "tp",
|
|
"pnl": 38.4546381121425,
|
|
"bars_held": 1,
|
|
"pred_high": 0.000828044082894279,
|
|
"pred_low": 0.000828044082894279
|
|
},
|
|
{
|
|
"bar": 10200,
|
|
"time": "2025-02-23 19:35:00",
|
|
"direction": "long",
|
|
"entry": 2929.99,
|
|
"tp": 2931.6338857142855,
|
|
"sl": 2925.8802857142855,
|
|
"exit": 2925.8802857142855,
|
|
"result": "sl",
|
|
"pnl": -96.52114166146478,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0007013188245888883,
|
|
"pred_low": 0.0007013188245888883
|
|
},
|
|
{
|
|
"bar": 10216,
|
|
"time": "2025-02-23 20:55:00",
|
|
"direction": "long",
|
|
"entry": 2940.7,
|
|
"tp": 2942.114857142857,
|
|
"sl": 2937.162857142857,
|
|
"exit": 2942.114857142857,
|
|
"result": "tp",
|
|
"pnl": 38.22237209794362,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006014117144120348,
|
|
"pred_low": 0.0006014117144120348
|
|
},
|
|
{
|
|
"bar": 10552,
|
|
"time": "2025-02-25 01:50:00",
|
|
"direction": "short",
|
|
"entry": 2931.63,
|
|
"tp": 2930.4441714285717,
|
|
"sl": 2934.5945714285717,
|
|
"exit": 2930.4441714285717,
|
|
"result": "tp",
|
|
"pnl": 38.37526158632633,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005056182786660382,
|
|
"pred_low": 0.0005056182786660382
|
|
},
|
|
{
|
|
"bar": 10608,
|
|
"time": "2025-02-25 06:30:00",
|
|
"direction": "short",
|
|
"entry": 2925.56,
|
|
"tp": 2924.209142857143,
|
|
"sl": 2928.9371428571426,
|
|
"exit": 2924.209142857143,
|
|
"result": "tp",
|
|
"pnl": 38.52876263267344,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0005771788746672135,
|
|
"pred_low": 0.0005771788746672135
|
|
},
|
|
{
|
|
"bar": 10624,
|
|
"time": "2025-02-25 07:50:00",
|
|
"direction": "long",
|
|
"entry": 2936.93,
|
|
"tp": 2938.6022285714284,
|
|
"sl": 2932.7494285714283,
|
|
"exit": 2938.6022285714284,
|
|
"result": "tp",
|
|
"pnl": 38.68287768320772,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0007117247310238291,
|
|
"pred_low": 0.0007117247310238291
|
|
},
|
|
{
|
|
"bar": 10640,
|
|
"time": "2025-02-25 09:10:00",
|
|
"direction": "short",
|
|
"entry": 2927.82,
|
|
"tp": 2926.1912,
|
|
"sl": 2931.8920000000003,
|
|
"exit": 2926.1912,
|
|
"result": "tp",
|
|
"pnl": 38.83760919393996,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006953979411302717,
|
|
"pred_low": 0.0006953979411302717
|
|
},
|
|
{
|
|
"bar": 10696,
|
|
"time": "2025-02-25 13:50:00",
|
|
"direction": "long",
|
|
"entry": 2912.89,
|
|
"tp": 2913.760857142857,
|
|
"sl": 2910.712857142857,
|
|
"exit": 2913.760857142857,
|
|
"result": "tp",
|
|
"pnl": 38.99295963070833,
|
|
"bars_held": 14,
|
|
"pred_high": 0.0003737083887724696,
|
|
"pred_low": 0.0003737083887724696
|
|
},
|
|
{
|
|
"bar": 10760,
|
|
"time": "2025-02-25 20:05:00",
|
|
"direction": "short",
|
|
"entry": 2916.84,
|
|
"tp": 2915.1933714285715,
|
|
"sl": 2920.9565714285714,
|
|
"exit": 2915.1933714285715,
|
|
"result": "tp",
|
|
"pnl": 39.148931469242456,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0007056560230543031,
|
|
"pred_low": 0.0007056560230543031
|
|
},
|
|
{
|
|
"bar": 10904,
|
|
"time": "2025-02-26 08:05:00",
|
|
"direction": "short",
|
|
"entry": 2899.25,
|
|
"tp": 2897.6330857142857,
|
|
"sl": 2903.2922857142858,
|
|
"exit": 2897.6330857142857,
|
|
"result": "tp",
|
|
"pnl": 39.3055271951172,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006971261040416925,
|
|
"pred_low": 0.0006971261040416925
|
|
},
|
|
{
|
|
"bar": 10912,
|
|
"time": "2025-02-26 08:45:00",
|
|
"direction": "long",
|
|
"entry": 2902.9,
|
|
"tp": 2905.5262857142857,
|
|
"sl": 2896.3342857142857,
|
|
"exit": 2905.5262857142857,
|
|
"result": "tp",
|
|
"pnl": 39.46274930389556,
|
|
"bars_held": 5,
|
|
"pred_high": 0.0011308888156178851,
|
|
"pred_low": 0.0011308888156178851
|
|
},
|
|
{
|
|
"bar": 10920,
|
|
"time": "2025-02-26 09:25:00",
|
|
"direction": "long",
|
|
"entry": 2911.13,
|
|
"tp": 2913.882,
|
|
"sl": 2904.25,
|
|
"exit": 2913.882,
|
|
"result": "tp",
|
|
"pnl": 39.62060030111269,
|
|
"bars_held": 6,
|
|
"pred_high": 0.001181671721977373,
|
|
"pred_low": 0.001181671721977373
|
|
},
|
|
{
|
|
"bar": 11112,
|
|
"time": "2025-02-27 02:20:00",
|
|
"direction": "short",
|
|
"entry": 2885.02,
|
|
"tp": 2882.9587428571426,
|
|
"sl": 2890.173142857143,
|
|
"exit": 2882.9587428571426,
|
|
"result": "tp",
|
|
"pnl": 39.77908270232131,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0008930861583529622,
|
|
"pred_low": 0.0008930861583529622
|
|
},
|
|
{
|
|
"bar": 11192,
|
|
"time": "2025-02-27 09:00:00",
|
|
"direction": "short",
|
|
"entry": 2880.07,
|
|
"tp": 2877.4396,
|
|
"sl": 2886.6459999999997,
|
|
"exit": 2877.4396,
|
|
"result": "tp",
|
|
"pnl": 39.93819903312841,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0011416389184984719,
|
|
"pred_low": 0.0011416389184984719
|
|
},
|
|
{
|
|
"bar": 11400,
|
|
"time": "2025-02-28 03:15:00",
|
|
"direction": "long",
|
|
"entry": 2861.57,
|
|
"tp": 2862.972971428572,
|
|
"sl": 2858.0625714285716,
|
|
"exit": 2862.972971428572,
|
|
"result": "tp",
|
|
"pnl": 40.09795182926485,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006128503883232942,
|
|
"pred_low": 0.0006128503883232942
|
|
},
|
|
{
|
|
"bar": 11456,
|
|
"time": "2025-02-28 07:55:00",
|
|
"direction": "short",
|
|
"entry": 2848.93,
|
|
"tp": 2847.068057142857,
|
|
"sl": 2853.584857142857,
|
|
"exit": 2847.068057142857,
|
|
"result": "tp",
|
|
"pnl": 40.25834363657531,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0008169483179399279,
|
|
"pred_low": 0.0008169483179399279
|
|
},
|
|
{
|
|
"bar": 11672,
|
|
"time": "2025-03-03 02:50:00",
|
|
"direction": "long",
|
|
"entry": 2868.01,
|
|
"tp": 2869.2950285714287,
|
|
"sl": 2864.7974285714286,
|
|
"exit": 2869.2950285714287,
|
|
"result": "tp",
|
|
"pnl": 40.419377011119266,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005600697746122738,
|
|
"pred_low": 0.0005600697746122738
|
|
},
|
|
{
|
|
"bar": 11752,
|
|
"time": "2025-03-03 09:30:00",
|
|
"direction": "long",
|
|
"entry": 2888.01,
|
|
"tp": 2890.1165142857144,
|
|
"sl": 2882.7437142857148,
|
|
"exit": 2890.1165142857144,
|
|
"result": "tp",
|
|
"pnl": 40.58105451916583,
|
|
"bars_held": 13,
|
|
"pred_high": 0.0009117499098489364,
|
|
"pred_low": 0.0009117499098489364
|
|
},
|
|
{
|
|
"bar": 11944,
|
|
"time": "2025-03-04 02:25:00",
|
|
"direction": "long",
|
|
"entry": 2912.38,
|
|
"tp": 2914.453142857143,
|
|
"sl": 2907.197142857143,
|
|
"exit": 2914.453142857143,
|
|
"result": "tp",
|
|
"pnl": 40.74337873724711,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0008897975440802938,
|
|
"pred_low": 0.0008897975440802938
|
|
},
|
|
{
|
|
"bar": 12136,
|
|
"time": "2025-03-04 19:20:00",
|
|
"direction": "short",
|
|
"entry": 2907.63,
|
|
"tp": 2906.1662285714287,
|
|
"sl": 2911.2894285714287,
|
|
"exit": 2911.2894285714287,
|
|
"result": "sl",
|
|
"pnl": -102.2658806304828,
|
|
"bars_held": 11,
|
|
"pred_high": 0.000629280302416164,
|
|
"pred_low": 0.000629280302416164
|
|
},
|
|
{
|
|
"bar": 12152,
|
|
"time": "2025-03-04 20:40:00",
|
|
"direction": "short",
|
|
"entry": 2907.05,
|
|
"tp": 2905.272628571429,
|
|
"sl": 2911.493428571429,
|
|
"exit": 2905.272628571429,
|
|
"result": "tp",
|
|
"pnl": 40.49728872966833,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0007642504551742461,
|
|
"pred_low": 0.0007642504551742461
|
|
},
|
|
{
|
|
"bar": 12192,
|
|
"time": "2025-03-05 00:00:00",
|
|
"direction": "long",
|
|
"entry": 2918.0,
|
|
"tp": 2918.9243428571426,
|
|
"sl": 2915.689142857143,
|
|
"exit": 2918.9243428571426,
|
|
"result": "tp",
|
|
"pnl": 40.659277884580575,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0003959659257808547,
|
|
"pred_low": 0.0003959659257808547
|
|
},
|
|
{
|
|
"bar": 12296,
|
|
"time": "2025-03-05 08:40:00",
|
|
"direction": "long",
|
|
"entry": 2914.35,
|
|
"tp": 2917.1481714285715,
|
|
"sl": 2907.3545714285715,
|
|
"exit": 2907.3545714285715,
|
|
"result": "sl",
|
|
"pnl": -102.0547874903171,
|
|
"bars_held": 4,
|
|
"pred_high": 0.00120016960410188,
|
|
"pred_low": 0.00120016960410188
|
|
},
|
|
{
|
|
"bar": 12304,
|
|
"time": "2025-03-05 09:20:00",
|
|
"direction": "long",
|
|
"entry": 2918.29,
|
|
"tp": 2920.770457142857,
|
|
"sl": 2912.0888571428573,
|
|
"exit": 2920.770457142857,
|
|
"result": "tp",
|
|
"pnl": 40.41369584616716,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0010624617253841946,
|
|
"pred_low": 0.0010624617253841946
|
|
},
|
|
{
|
|
"bar": 12488,
|
|
"time": "2025-03-06 01:35:00",
|
|
"direction": "short",
|
|
"entry": 2914.53,
|
|
"tp": 2913.398571428572,
|
|
"sl": 2917.358571428572,
|
|
"exit": 2913.398571428572,
|
|
"result": "tp",
|
|
"pnl": 40.57535062954483,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0004852534419908919,
|
|
"pred_low": 0.0004852534419908919
|
|
},
|
|
{
|
|
"bar": 12512,
|
|
"time": "2025-03-06 03:35:00",
|
|
"direction": "short",
|
|
"entry": 2897.33,
|
|
"tp": 2895.8346857142856,
|
|
"sl": 2901.0682857142856,
|
|
"exit": 2895.8346857142856,
|
|
"result": "tp",
|
|
"pnl": 40.73765203207267,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0006451259805209651,
|
|
"pred_low": 0.0006451259805209651
|
|
},
|
|
{
|
|
"bar": 12536,
|
|
"time": "2025-03-06 05:35:00",
|
|
"direction": "long",
|
|
"entry": 2905.43,
|
|
"tp": 2907.098114285714,
|
|
"sl": 2901.259714285714,
|
|
"exit": 2901.259714285714,
|
|
"result": "sl",
|
|
"pnl": -102.25150660049893,
|
|
"bars_held": 11,
|
|
"pred_high": 0.0007176710012434893,
|
|
"pred_low": 0.0007176710012434893
|
|
},
|
|
{
|
|
"bar": 12856,
|
|
"time": "2025-03-07 09:10:00",
|
|
"direction": "long",
|
|
"entry": 2926.68,
|
|
"tp": 2928.8482285714285,
|
|
"sl": 2921.2594285714285,
|
|
"exit": 2921.2594285714285,
|
|
"result": "sl",
|
|
"pnl": -101.22899153448958,
|
|
"bars_held": 5,
|
|
"pred_high": 0.0009260615148515223,
|
|
"pred_low": 0.0009260615148515223
|
|
},
|
|
{
|
|
"bar": 12864,
|
|
"time": "2025-03-07 09:50:00",
|
|
"direction": "short",
|
|
"entry": 2915.79,
|
|
"tp": 2913.2958285714285,
|
|
"sl": 2922.0254285714286,
|
|
"exit": 2913.2958285714285,
|
|
"result": "tp",
|
|
"pnl": 40.08668064765887,
|
|
"bars_held": 3,
|
|
"pred_high": 0.0010692519988456841,
|
|
"pred_low": 0.0010692519988456841
|
|
},
|
|
{
|
|
"bar": 12880,
|
|
"time": "2025-03-07 11:10:00",
|
|
"direction": "short",
|
|
"entry": 2910.72,
|
|
"tp": 2909.0070857142855,
|
|
"sl": 2915.0022857142853,
|
|
"exit": 2909.0070857142855,
|
|
"result": "tp",
|
|
"pnl": 40.24702737024928,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0007356059178288691,
|
|
"pred_low": 0.0007356059178288691
|
|
},
|
|
{
|
|
"bar": 13168,
|
|
"time": "2025-03-10 11:00:00",
|
|
"direction": "short",
|
|
"entry": 2894.98,
|
|
"tp": 2893.7365714285716,
|
|
"sl": 2898.0885714285714,
|
|
"exit": 2893.7365714285716,
|
|
"result": "tp",
|
|
"pnl": 40.408015479728505,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0005368899661778755,
|
|
"pred_low": 0.0005368899661778755
|
|
},
|
|
{
|
|
"bar": 13176,
|
|
"time": "2025-03-10 11:40:00",
|
|
"direction": "short",
|
|
"entry": 2885.84,
|
|
"tp": 2884.093714285714,
|
|
"sl": 2890.2057142857143,
|
|
"exit": 2884.093714285714,
|
|
"result": "tp",
|
|
"pnl": 40.56964754165376,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0007564026913678973,
|
|
"pred_low": 0.0007564026913678973
|
|
},
|
|
{
|
|
"bar": 13896,
|
|
"time": "2025-03-13 02:25:00",
|
|
"direction": "long",
|
|
"entry": 2941.63,
|
|
"tp": 2942.651714285714,
|
|
"sl": 2939.0757142857146,
|
|
"exit": 2942.651714285714,
|
|
"result": "tp",
|
|
"pnl": 40.73192613181026,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0004341616237061676,
|
|
"pred_low": 0.0004341616237061676
|
|
},
|
|
{
|
|
"bar": 14000,
|
|
"time": "2025-03-13 11:05:00",
|
|
"direction": "short",
|
|
"entry": 2977.63,
|
|
"tp": 2976.0985714285716,
|
|
"sl": 2981.4585714285718,
|
|
"exit": 2981.4585714285718,
|
|
"result": "sl",
|
|
"pnl": -102.23713459086042,
|
|
"bars_held": 5,
|
|
"pred_high": 0.0006428890474255499,
|
|
"pred_low": 0.0006428890474255499
|
|
},
|
|
{
|
|
"bar": 14200,
|
|
"time": "2025-03-14 04:40:00",
|
|
"direction": "short",
|
|
"entry": 2989.84,
|
|
"tp": 2988.3021714285715,
|
|
"sl": 2993.6845714285714,
|
|
"exit": 2988.3021714285715,
|
|
"result": "tp",
|
|
"pnl": 40.4859052979833,
|
|
"bars_held": 1,
|
|
"pred_high": 0.0006429393259457547,
|
|
"pred_low": 0.0006429393259457547
|
|
},
|
|
{
|
|
"bar": 14432,
|
|
"time": "2025-03-17 19:10:00",
|
|
"direction": "long",
|
|
"entry": 3001.17,
|
|
"tp": 3001.868057142857,
|
|
"sl": 2999.4248571428575,
|
|
"exit": 3001.868057142857,
|
|
"result": "tp",
|
|
"pnl": 40.647848919171004,
|
|
"bars_held": 2,
|
|
"pred_high": 0.0002907437527935444,
|
|
"pred_low": 0.0002907437527935444
|
|
}
|
|
]
|
|
} |