From 115b08acfaa7302b5be30ebba6aa694fa3aa7585 Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Thu, 1 Jan 2026 22:51:34 +0600 Subject: [PATCH] Adjust ask prices by reducing them by 0.01 for trade placement --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 746c9f3..3017b01 100644 --- a/main.py +++ b/main.py @@ -87,7 +87,7 @@ async def main(): up_token, down_token, "UP", - up_ask_price, + up_ask_price - 0.01, size=5, ) trades += 1 @@ -101,7 +101,7 @@ async def main(): up_token, down_token, "DOWN", - down_ask_price, + down_ask_price - 0.01, size=5, ) trades += 1