Skip to content

Commit

Permalink
pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
VladKochetov007 committed Sep 17, 2021
1 parent 75ee515 commit 7f890e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions quick_trade/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import re
from functools import wraps
from logging import basicConfig
from logging import getLogger
Expand Down Expand Up @@ -93,7 +94,7 @@
TRADE_MARKER_EXIT_WIDTH: float = 12.0
TRADE_MARKER_EXIT_ALPHA: float = 1.0

TICKER_PATTERN: str = r'[A-Z]+/[A-Z]+'
TICKER_PATTERN: str = r'[A-Z0-9]+/[A-Z0-9]+'

WAIT_SUCCESS_SLEEP: float = 1.0
WAIT_SUCCESS_PRINT: bool = True
Expand Down Expand Up @@ -168,7 +169,7 @@
winrate: {}%
mean deviation: {}%""" # .format(Trader.losses, Trader.trades, Trader.profits, Trader.year_profit, Trader.winrate, Trader.mean_deviation)

__version__: str = "6.6.3"
__version__: str = "6.6.4"
__author__: str = 'Vlad Kochetov'
__credits__: List[str] = [
"Hemerson Tacon -- Stack overflow",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
with open('README.md') as file:
long_desc = file.read()

__version__ = "6.6.3"
__version__ = "6.6.4"

setup(
name='quick_trade',
Expand Down

0 comments on commit 7f890e3

Please sign in to comment.