from datetime import datetime, timedelta import pandas as pd from freqtrade.exchange import timeframe_to_minutes, timeframe_to_prev_date from freqtrade.persistence import Trade def merge_informative_pair(dataframe: pd.DataFrame, informative: pd.DataFrame, timeframe: str, timeframe_inf: str, ffill: bool = True) -> pd.DataFrame: """ Correctly merge informative samples to the original dataframe, avoiding lookahead bias. Since dates are candle open dates, merging a 15m candle that starts at 15:00, and a 1h candle that starts at 15:00 will result in all candles to know the close at 16:00 which they should not know. Moves the date of the informative pair by 1 time interval forward. This way, the 14:00 1h candle is merged to 15:00 15m candle, since the 14:00 1h candle is the last candle that's closed at 15:00, 15:15, 15:30 or 15:45. Assuming inf_tf = '1d' - then the resulting columns will be: date_1d, open_1d, high_1d, low_1d, close_1d, rsi_1d :param dataframe: Original dataframe :param informative: Informative pair, most likely loaded via dp.get_pair_dataframe :param timeframe: Timeframe of the original pair sample. :param timeframe_inf: Timeframe of the informative pair sample. :param ffill: Forwardfill missing values - optional but usually required :return: Merged dataframe :raise: ValueError if the secondary timeframe is shorter than the dataframe timeframe """ minutes_inf = timeframe_to_minutes(timeframe_inf) minutes = timeframe_to_minutes(timeframe) if minutes == minutes_inf: # No need to forwardshift if the timeframes are identical informative['date_merge'] = informative["date"] elif minutes < minutes_inf: # Subtract "small" timeframe so merging is not delayed by 1 small candle # Detailed explanation in https://github.com/freqtrade/freqtrade/issues/4073 informative['date_merge'] = ( informative["date"] + pd.to_timedelta(minutes_inf, 'm') - pd.to_timedelta(minutes, 'm') ) else: raise ValueError("Tried to merge a faster timeframe to a slower timeframe." "This would create new rows, and can throw off your regular indicators.") # Rename columns to be unique informative.columns = [f"{col}_{timeframe_inf}" for col in informative.columns] # Combine the 2 dataframes # all indicators on the informative sample MUST be calculated before this point dataframe = pd.merge(dataframe, informative, left_on='date', right_on=f'date_merge_{timeframe_inf}', how='left') dataframe = dataframe.drop(f'date_merge_{timeframe_inf}', axis=1) if ffill: dataframe = dataframe.ffill() return dataframe def stoploss_from_open(open_relative_stop: float, current_profit: float) -> float: """ Given the current profit, and a desired stop loss value relative to the open price, return a stop loss value that is relative to the current price, and which can be returned from `custom_stoploss`. The requested stop can be positive for a stop above the open price, or negative for a stop below the open price. The return value is always >= 0. Returns 0 if the resulting stop price would be above the current price. :param open_relative_stop: Desired stop loss percentage relative to open price :param current_profit: The current profit percentage :return: Positive stop loss value relative to current price """ # formula is undefined for current_profit -1, return maximum value if current_profit == -1: return 1 stoploss = 1-((1+open_relative_stop)/(1+current_profit)) # negative stoploss values indicate the requested stop price is higher than the current price return max(stoploss, 0.0) def get_trade_candle(dataframe, trade: Trade, timeframe: str, now: datetime = None): """ search for nearest row of trade.open_date """ trade_candle = find_candle_datetime(dataframe, timeframe, query_date=trade.open_date_utc, pair=trade.pair, now=now) return trade_candle def get_buy_candle(dataframe, trade: Trade, timeframe: str, now: datetime = None): """ search for nearest row of trade.open_date minus 1 candle (the buy decision candle) """ trade_open = trade.open_date_utc one_frame = timedelta(minutes=timeframe_to_minutes(timeframe)) buy_candle = find_candle_datetime(dataframe, timeframe, query_date=trade_open - one_frame, pair=trade.pair, now=now) return buy_candle def find_candle_datetime(dataframe: pd.DataFrame, timeframe: str, query_date: datetime, pair: str, now: datetime = None): result = None candle = find_candle_datetime_safer(dataframe, query_date) # candle = find_candle_datetime_faster(dataframe, timeframe, query_date, now) result = candle if candle.empty else candle.squeeze() return result def find_candle_datetime_faster(dataframe: pd.DataFrame, timeframe: str, query_date: datetime, now: datetime = None): if(now and now == query_date): candle = dataframe.iloc[-1] else: candle_date = timeframe_to_prev_date(self.timeframe, query_date) candle = dataframe.loc[dataframe.date == candle_date] return candle def find_candle_datetime_safer(dataframe: pd.DataFrame, query_date: datetime): df = dataframe[['date']].set_index('date') try: date_mask = df.index.unique().get_loc(query_date, method='ffill') candle = dataframe.iloc[date_mask] # use iloc because date_mask maybe :int except KeyError: # trade.open_date may not exist yet candle = pd.DataFrame(index=dataframe.index) return candle