commit
0f499469fc
@ -1,5 +1,5 @@
|
|||||||
# flake8: noqa: F401
|
# flake8: noqa: F401
|
||||||
|
|
||||||
from freqtrade.persistence.models import (LocalTrade, Order, Trade, clean_dry_run_db, cleanup_db,
|
from freqtrade.persistence.models import clean_dry_run_db, cleanup_db, init_db
|
||||||
init_db)
|
|
||||||
from freqtrade.persistence.pairlock_middleware import PairLocks
|
from freqtrade.persistence.pairlock_middleware import PairLocks
|
||||||
|
from freqtrade.persistence.trade_model import LocalTrade, Order, Trade
|
||||||
|
7
freqtrade/persistence/base.py
Normal file
7
freqtrade/persistence/base.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from sqlalchemy.orm import declarative_base
|
||||||
|
|
||||||
|
|
||||||
|
_DECL_BASE: Any = declarative_base()
|
File diff suppressed because it is too large
Load Diff
70
freqtrade/persistence/pairlock.py
Normal file
70
freqtrade/persistence/pairlock.py
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
from datetime import datetime, timezone
|
||||||
|
from typing import Any, Dict, Optional
|
||||||
|
|
||||||
|
from sqlalchemy import Boolean, Column, DateTime, Integer, String, or_
|
||||||
|
from sqlalchemy.orm import Query
|
||||||
|
|
||||||
|
from freqtrade.constants import DATETIME_PRINT_FORMAT
|
||||||
|
from freqtrade.persistence.base import _DECL_BASE
|
||||||
|
|
||||||
|
|
||||||
|
class PairLock(_DECL_BASE):
|
||||||
|
"""
|
||||||
|
Pair Locks database model.
|
||||||
|
"""
|
||||||
|
__tablename__ = 'pairlocks'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
|
||||||
|
pair = Column(String(25), nullable=False, index=True)
|
||||||
|
# lock direction - long, short or * (for both)
|
||||||
|
side = Column(String(25), nullable=False, default="*")
|
||||||
|
reason = Column(String(255), nullable=True)
|
||||||
|
# Time the pair was locked (start time)
|
||||||
|
lock_time = Column(DateTime, nullable=False)
|
||||||
|
# Time until the pair is locked (end time)
|
||||||
|
lock_end_time = Column(DateTime, nullable=False, index=True)
|
||||||
|
|
||||||
|
active = Column(Boolean, nullable=False, default=True, index=True)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
lock_time = self.lock_time.strftime(DATETIME_PRINT_FORMAT)
|
||||||
|
lock_end_time = self.lock_end_time.strftime(DATETIME_PRINT_FORMAT)
|
||||||
|
return (
|
||||||
|
f'PairLock(id={self.id}, pair={self.pair}, side={self.side}, lock_time={lock_time}, '
|
||||||
|
f'lock_end_time={lock_end_time}, reason={self.reason}, active={self.active})')
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def query_pair_locks(pair: Optional[str], now: datetime, side: str = '*') -> Query:
|
||||||
|
"""
|
||||||
|
Get all currently active locks for this pair
|
||||||
|
:param pair: Pair to check for. Returns all current locks if pair is empty
|
||||||
|
:param now: Datetime object (generated via datetime.now(timezone.utc)).
|
||||||
|
"""
|
||||||
|
filters = [PairLock.lock_end_time > now,
|
||||||
|
# Only active locks
|
||||||
|
PairLock.active.is_(True), ]
|
||||||
|
if pair:
|
||||||
|
filters.append(PairLock.pair == pair)
|
||||||
|
if side != '*':
|
||||||
|
filters.append(or_(PairLock.side == side, PairLock.side == '*'))
|
||||||
|
else:
|
||||||
|
filters.append(PairLock.side == '*')
|
||||||
|
|
||||||
|
return PairLock.query.filter(
|
||||||
|
*filters
|
||||||
|
)
|
||||||
|
|
||||||
|
def to_json(self) -> Dict[str, Any]:
|
||||||
|
return {
|
||||||
|
'id': self.id,
|
||||||
|
'pair': self.pair,
|
||||||
|
'lock_time': self.lock_time.strftime(DATETIME_PRINT_FORMAT),
|
||||||
|
'lock_timestamp': int(self.lock_time.replace(tzinfo=timezone.utc).timestamp() * 1000),
|
||||||
|
'lock_end_time': self.lock_end_time.strftime(DATETIME_PRINT_FORMAT),
|
||||||
|
'lock_end_timestamp': int(self.lock_end_time.replace(tzinfo=timezone.utc
|
||||||
|
).timestamp() * 1000),
|
||||||
|
'reason': self.reason,
|
||||||
|
'side': self.side,
|
||||||
|
'active': self.active,
|
||||||
|
}
|
1346
freqtrade/persistence/trade_model.py
Normal file
1346
freqtrade/persistence/trade_model.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,10 +15,8 @@ from freqtrade.data.dataprovider import DataProvider
|
|||||||
from freqtrade.enums import (CandleType, ExitCheckTuple, ExitType, SignalDirection, SignalTagType,
|
from freqtrade.enums import (CandleType, ExitCheckTuple, ExitType, SignalDirection, SignalTagType,
|
||||||
SignalType, TradingMode)
|
SignalType, TradingMode)
|
||||||
from freqtrade.exceptions import OperationalException, StrategyError
|
from freqtrade.exceptions import OperationalException, StrategyError
|
||||||
from freqtrade.exchange import timeframe_to_minutes, timeframe_to_seconds
|
from freqtrade.exchange import timeframe_to_minutes, timeframe_to_next_date, timeframe_to_seconds
|
||||||
from freqtrade.exchange.exchange import timeframe_to_next_date
|
from freqtrade.persistence import LocalTrade, Order, PairLocks, Trade
|
||||||
from freqtrade.persistence import PairLocks, Trade
|
|
||||||
from freqtrade.persistence.models import LocalTrade, Order
|
|
||||||
from freqtrade.strategy.hyper import HyperStrategyMixin
|
from freqtrade.strategy.hyper import HyperStrategyMixin
|
||||||
from freqtrade.strategy.informative_decorator import (InformativeData, PopulateIndicators,
|
from freqtrade.strategy.informative_decorator import (InformativeData, PopulateIndicators,
|
||||||
_create_and_merge_informative_pair,
|
_create_and_merge_informative_pair,
|
||||||
|
Loading…
Reference in New Issue
Block a user