Add additional test scenarios

This commit is contained in:
Matthias
2020-06-14 10:49:15 +02:00
parent 1c1a7150ae
commit 8b186dbe0e
6 changed files with 43 additions and 9 deletions

View File

@@ -204,7 +204,7 @@ class IStrategy(ABC):
"""
Called right before placing a buy order.
Timing for this function is critical, so avoid doing heavy computations or
network reqeusts in this method.
network requests in this method.
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
@@ -226,7 +226,7 @@ class IStrategy(ABC):
"""
Called right before placing a regular sell order.
Timing for this function is critical, so avoid doing heavy computations or
network reqeusts in this method.
network requests in this method.
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/

View File

@@ -17,7 +17,7 @@ def confirm_trade_entry(self, pair: str, order_type: str, amount: float, rate: f
"""
Called right before placing a buy order.
Timing for this function is critical, so avoid doing heavy computations or
network reqeusts in this method.
network requests in this method.
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/
@@ -39,7 +39,7 @@ def confirm_trade_exit(self, pair: str, trade: 'Trade', order_type: str, amount:
"""
Called right before placing a regular sell order.
Timing for this function is critical, so avoid doing heavy computations or
network reqeusts in this method.
network requests in this method.
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-advanced/