@ashxos

Thank you Chad! Your video has translated into my fully functional backtesting system. Cheers!

@davidberry8511

Thanks for your great tutorials

@fiftyghoststrading8500

Thank you for this tutorial, it's helpful!

Is there a way to check for a signal on the daily, but then use 1-min, 5-min, whatever for the actual entry? Both would be based on price action, not an indicator

@tessalittle2411

Awesome video - I am curious - what approach would you suggest if I were to screen for Highest time frame in range where K% of stochastic RSI is above/or just crossing 80 - I need the Time frame to be returned. I have seen some people using vectorization. I will be doing this for 4 different time frame sets.

@MrBradleykong

Hi Chad, is there any way to draw two or more data series on one single plot?(overlay = False)

@ghazanferali366

Thanks very much, solved a long lasting problem. I am having another problem. I have backtested a strategy in which I haven't provided the size of strategy to keep every signal using 100% of cash.
But when I am checking the trades, there are lot of very small unwarranted trades of around 1$ value. How can I exclude these trades

@anilmm2005

Thank you for wonderful help @chad

@datascientistaspirants4540

Does it work for multi timeframe where the timeframes are 3h and 4h? The data for these two timeframes will be combined and and provided as input to the backtesting. The problem I am facing is in every 12h timestamp there are duplicate entry of OHLC data (coming from both 3h and 4h). Backtesting framework take input data having unique datetime index. Hence it shows error.

@mgarciabarua

Hi Chad, Thanks for your amazing videos. 
    
    I have a 1Min timeframe but I'm try to get the ATR for 5Min:
    
    self.atr5m = resample_apply('5Min', ta.atr, self.data.High.s, self.data.Low, self.data.Close, length=14)
    
    but I'm getting this:

    -> 129     raise RuntimeError(f'Indicator "{name}" errored with exception: {e}')
        131 if isinstance(value, pd.DataFrame):
        132     value = value.values.T

    RuntimeError: Indicator "atr(H[5Min],L,C,14)" errored with exception: input array lengths are different

@drcesarvarela

Genious!

@iiii05

Hi @chad. I’m having a problem using resampling_apply with the Adx, as I have to pass the high, low, close and the time period from ta lib. It works fine when using I() but when using resampling_i think because there are more than one series, it’s not liking it. Any ideas of the statement I’d use please?

@danielfenollfreire3022

anyone having the TypeError(
TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'RangeIndex' 
error when using the resampler despite having formatted the index of the data to DateTimeIndex?

@mssafy2592

How to know how many time the price crossed a certain level of price ?

@bryan-9742

very good chad

@ghazanferali366

Actually I only want the trade to be executed if there's no active trade in place already. Also my strategy can go both long and short.

@ahmetsuatyildiz4836

Could you connect this video with custom indicator video?