Add new callback to advanced template.

This commit is contained in:
eSeR1805 2022-04-16 15:08:09 +03:00
parent bf5799ef9e
commit 452f44206a
No known key found for this signature in database
GPG Key ID: BA53686259B46936

View File

@ -30,6 +30,27 @@ def custom_entry_price(self, pair: str, current_time: 'datetime', proposed_rate:
"""
return proposed_rate
def readjust_entry_price(self, trade: Trade, pair: str, current_time: datetime,
proposed_rate: float, entry_tag: Optional[str],
side: str, **kwargs) -> float:
"""
Entry price readjustment logic, returning the readjusted entry price.
For full documentation please go to https://www.freqtrade.io/en/latest/strategy-callbacks/
When not implemented by a strategy, returns proposed_rate and orders are not replaced.
:param pair: Pair that's currently analyzed
:param trade: Trade object.
:param current_time: datetime object, containing the current datetime
:param proposed_rate: Rate, calculated based on pricing settings in entry_pricing.
:param entry_tag: Optional entry_tag (buy_tag) if provided with the buy signal.
:param side: 'long' or 'short' - indicating the direction of the proposed trade
:param **kwargs: Ensure to keep this here so updates to this won't break your strategy.
:return float: New entry price value if provided
"""
return proposed_rate
def custom_exit_price(self, pair: str, trade: 'Trade',
current_time: 'datetime', proposed_rate: float,
current_profit: float, **kwargs) -> float: