You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
target_odd=3, # Target odd for SMART_HIGH_ODDS strategy
219
219
max_points=50000, # If the x percentage of your channel points is gt bet_max_points set this value
220
220
stealth_mode=True, # If the calculated amount of channel points is GT the highest bet, place the highest value minus 1-2 points #33
221
-
filter_condition=FilterCondition(
221
+
delay_mode=DelayMode.FROM_END, # When placing a bet, we will wait until `delay` seconds before the end of the timer
222
+
delay=6,
223
+
filter_condition=FilterCondition(
222
224
by=OutcomeKeys.TOTAL_USERS, # Where apply the filter. Allowed [PERCENTAGE_USERS, ODDS_PERCENTAGE, ODDS, TOP_POINTS, TOTAL_USERS, TOTAL_POINTS]
223
225
where=Condition.LTE, # 'by' must be [GT, LT, GTE, LTE] than value
224
226
value=800
@@ -279,6 +281,7 @@ You can watch only two streamers per time. With `priority` settings, you can sel
279
281
Available values are the following:
280
282
-`STREAK` - Catch the watch streak from all streamers
281
283
-`DROPS` - Claim all drops from streamers with drops tags enabled
284
+
-`SUBSCRIBED` - Prioritize streamers you're subscribed to (higher subscription tiers are mined first)
282
285
-`ORDER` - Following the order of the list
283
286
-`POINTS_ASCENDING` - On top the streamers with the lowest points
284
287
-`POINTS_DESCEDING` - On top the streamers with the highest points
@@ -340,7 +343,6 @@ ColorPalette(
340
343
|`claim_drops`| bool | True | If this value is True, the script will increase the watch-time for the current game. With this, you can claim the drops from Twitch Inventory [#21](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/21)|
341
344
|`watch_streak`| bool | True | Choose if you want to change a priority for these streamers and try to catch the Watch Streak event [#11](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/11)|
342
345
|`bet`| BetSettings || Rules to follow for the bet |
343
-
|`follow_raid`| bool | True | Choose if you want to follow raid +250 points |
|`max_points`| int | 50000 | If the x percentage of your channel points is GT bet_max_points set this value |
352
354
|`stealth_mode`| bool | False | If the calculated amount of channel points is GT the highest bet, place the highest value minus 1-2 points [#33](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/33)|
353
-
|`join_chat`| bool | True | Join IRC-Chat to appear online in chat and attempt to get StreamElements channel points and increase view-time [#47](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/47)|
355
+
|`join_chat`| bool | True | Join IRC-Chat to appear online in chat and attempt to get StreamElements channel points and increase view-time [#47](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/47)|
356
+
|`delay_mode`| DelayMode | FROM_END | Define how is calculating the waiting time before placing a bet |
357
+
|`delay`| float | 6 | Value to be used to calculate bet delay depending on `delay_mode` value |
-**FROM_START**: Will wait `delay` seconds from when the bet was opened
408
+
-**FROM_END**: Will until there is `delay` seconds left to place the bet
409
+
-**PERCENTAGE**: Will place the bet when `delay` percent of the set timer is elapsed
410
+
411
+
Here's a concrete example. Let's suppose we have a bet that is opened with a timer of 10 minutes:
412
+
413
+
-**FROM_START** with `delay=20`: The bet will be placed 20s after the bet is opened
414
+
-**FROM_END** with `delay=20`: The bet will be placed 20s before the end of the bet (so 9mins 40s after the bet is opened)
415
+
-**PERCENTAGE** with `delay=0.2`: The bet will be placed when the timer went down by 20% (so 2mins after the bet is opened)
416
+
401
417
## Analytics
402
418
We have recently introduced a little frontend where you can show with a chart you points trend. The script will spawn a Flask web-server on your machine where you can select binding address and port.
403
419
The chart provides some annotation to handle the prediction and watch strike events. Usually annotation are used to notice big increase / decrease of points. If you want to can disable annotations.
0 commit comments