From 1f2b679e0cbfddacd6e29e762da34252c9e83b2e Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Sat, 3 Jan 2026 15:19:27 +0600 Subject: [PATCH] Remove price adjustment in order placement for UP and DOWN trades --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 795f79c..8140946 100644 --- a/main.py +++ b/main.py @@ -90,7 +90,7 @@ async def main(): up_token, down_token, "UP", - up_ask_price - 0.01, + up_ask_price, size=5, ) trades += 1 @@ -103,7 +103,7 @@ async def main(): up_token, down_token, "DOWN", - down_ask_price - 0.01, + down_ask_price, size=5, ) trades += 1