Couple tweaks for docs.
This commit is contained in:
parent
09b6923e50
commit
330fb538a9
@ -62,7 +62,7 @@ class AwesomeStrategy(IStrategy):
|
|||||||
|
|
||||||
# In dry/live runs trade open date will not match candle open date therefore it must be
|
# In dry/live runs trade open date will not match candle open date therefore it must be
|
||||||
# rounded.
|
# rounded.
|
||||||
trade_date = timeframe_to_prev_date(trade.open_date_utc)
|
trade_date = timeframe_to_prev_date(self.timeframe, trade.open_date_utc)
|
||||||
# Look up trade candle.
|
# Look up trade candle.
|
||||||
trade_candle = dataframe.loc[dataframe['date'] == trade_date]
|
trade_candle = dataframe.loc[dataframe['date'] == trade_date]
|
||||||
# trade_candle may be None for trades that just opened as it is still incomplete.
|
# trade_candle may be None for trades that just opened as it is still incomplete.
|
||||||
@ -91,8 +91,6 @@ Using custom_sell() signals in place of stoplosses though *is not recommended*.
|
|||||||
An example of how we can use different indicators depending on the current profit and also sell trades that were open longer than one day:
|
An example of how we can use different indicators depending on the current profit and also sell trades that were open longer than one day:
|
||||||
|
|
||||||
``` python
|
``` python
|
||||||
from freqtrade.strategy import IStrategy, timeframe_to_prev_date
|
|
||||||
|
|
||||||
class AwesomeStrategy(IStrategy):
|
class AwesomeStrategy(IStrategy):
|
||||||
def custom_sell(self, pair: str, trade: 'Trade', current_time: 'datetime', current_rate: float,
|
def custom_sell(self, pair: str, trade: 'Trade', current_time: 'datetime', current_rate: float,
|
||||||
current_profit: float, **kwargs):
|
current_profit: float, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user