Showing 1 changed files with 1 additions and 1 deletions
+1 -1
calc.py
... ...
@@ -17,7 +17,7 @@ def generate_grid_of_prices():
17 17
 # A function for finding the current WINDOW price
18 18
 def find_current_window_price():
19 19
     for price in bot.PRICES_ARR: # Iterate through the array of prices
20
-        if price >= bot.INIT_COIN_PRICE: #  If the the price is larger than the current price
20
+        if price >= bot.INIT_COIN_PRICE: #  If the price is larger than the current price
21 21
             return price
22 22
             break;
23 23
         else: