Skip to content

Commit

Permalink
X5: grinding: fine tune the stakes.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Jan 31, 2025
1 parent 6ae1b5f commit 072e5e5
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions NostalgiaForInfinityX5.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class NostalgiaForInfinityX5(IStrategy):
INTERFACE_VERSION = 3

def version(self) -> str:
return "v15.1.358"
return "v15.1.359"

stoploss = -0.99

Expand Down Expand Up @@ -209,52 +209,52 @@ def version(self) -> str:

grind_1_stop_grinds_spot = -0.50
grind_1_profit_threshold_spot = 0.018
grind_1_stakes_spot = [0.30, 0.32, 0.34]
grind_1_stakes_spot = [0.24, 0.26, 0.28]
grind_1_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_1_stop_grinds_futures = -0.50
grind_1_profit_threshold_futures = 0.018
grind_1_stakes_futures = [0.30, 0.32, 0.34]
grind_1_stakes_futures = [0.24, 0.26, 0.28]
grind_1_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_2_stop_grinds_spot = -0.50
grind_2_profit_threshold_spot = 0.018
grind_2_stakes_spot = [0.22, 0.32, 0.38]
grind_2_stakes_spot = [0.20, 0.24, 0.28]
grind_2_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_2_stop_grinds_futures = -0.50
grind_2_profit_threshold_futures = 0.018
grind_2_stakes_futures = [0.22, 0.32, 0.38]
grind_2_stakes_futures = [0.20, 0.24, 0.28]
grind_2_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_3_stop_grinds_spot = -0.50
grind_3_profit_threshold_spot = 0.018
grind_3_stakes_spot = [0.26, 0.28, 0.30]
grind_3_stakes_spot = [0.20, 0.22, 0.24]
grind_3_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_3_stop_grinds_futures = -0.50
grind_3_profit_threshold_futures = 0.018
grind_3_stakes_futures = [0.26, 0.28, 0.30]
grind_3_stakes_futures = [0.20, 0.22, 0.24]
grind_3_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_4_stop_grinds_spot = -0.50
grind_4_profit_threshold_spot = 0.018
grind_4_stakes_spot = [0.26, 0.28, 0.30]
grind_4_stakes_spot = [0.20, 0.22, 0.24]
grind_4_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_4_stop_grinds_futures = -0.50
grind_4_profit_threshold_futures = 0.018
grind_4_stakes_futures = [0.26, 0.28, 0.30]
grind_4_stakes_futures = [0.20, 0.22, 0.24]
grind_4_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_5_stop_grinds_spot = -0.50
grind_5_profit_threshold_spot = 0.048
grind_5_stakes_spot = [0.26, 0.28, 0.30]
grind_5_stakes_spot = [0.20, 0.22, 0.24]
grind_5_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_5_stop_grinds_futures = -0.50
grind_5_profit_threshold_futures = 0.048
grind_5_stakes_futures = [0.26, 0.28, 0.30]
grind_5_stakes_futures = [0.20, 0.22, 0.24]
grind_5_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_6_stop_grinds_spot = -0.50
Expand All @@ -269,22 +269,22 @@ def version(self) -> str:

grind_1_derisk_1_stop_grinds_spot = -0.50
grind_1_derisk_1_profit_threshold_spot = 0.018
grind_1_derisk_1_stakes_spot = [0.25, 0.30, 0.35]
grind_1_derisk_1_stakes_spot = [0.20, 0.24, 0.28]
grind_1_derisk_1_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_1_derisk_1_stop_grinds_futures = -0.50
grind_1_derisk_1_profit_threshold_futures = 0.018
grind_1_derisk_1_stakes_futures = [0.25, 0.30, 0.35]
grind_1_derisk_1_stakes_futures = [0.20, 0.24, 0.28]
grind_1_derisk_1_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grind_2_derisk_1_stop_grinds_spot = -0.50
grind_2_derisk_1_profit_threshold_spot = 0.018
grind_2_derisk_1_stakes_spot = [0.20, 0.26, 0.32]
grind_2_derisk_1_stakes_spot = [0.20, 0.24, 0.28]
grind_2_derisk_1_sub_thresholds_spot = [-0.12, -0.16, -0.20]

grind_2_derisk_1_stop_grinds_futures = -0.50
grind_2_derisk_1_profit_threshold_futures = 0.018
grind_2_derisk_1_stakes_futures = [0.20, 0.26, 0.32]
grind_2_derisk_1_stakes_futures = [0.20, 0.24, 0.28]
grind_2_derisk_1_sub_thresholds_futures = [-0.12, -0.16, -0.20]

grinds_stop_spot = -0.12
Expand Down

0 comments on commit 072e5e5

Please sign in to comment.