I have 2 trends lines, that is generate automatically with candlestick date (high, low, close, open). When this is generated I store the trend line values. When I load this data I need that the lines continues on future. For exemple: I had a Dataframe:
At 10:00 -> df.iloc[0]['TrendLine'] = 100
At 11:00 -> df.iloc[1]['TrendLine'] = 130
At 12:00 -> df.iloc[2]['TrendLine'] = ?
(I need a continuation plot value of trend.)