HOW TO CONVER WEEKLY DATA ..bcz im trying but data didn't match
weekly timeframe = indi ST 10/3 IF GREEN THEN CHECK
DAILY TIMEFRAME = INDI 10/2 IF GREEN THEN CHECK
75MIN TIMEFRAME = INDI 10/1 CROSSOVER THEN BUY FUTURE .....im trying but data didn't match ..how to conver 1min to 75min
tell me how to do backtest and live
Hi @7350982949 ,
- You can resample the data from one timeframe to another timeframe using
resample_timeframe() function from Dhan_Tradehull codebase
# Example for 75 minutes resampling
data = tsl.get_historical_data("NIFTY", "INDEX", "1")
resampled_data = tsl.resample_timeframe(data, '75T')
For monthly_resample_data, hourly_resample_data, check the below code-
- For backtesting and live you can refer Imran sir’s videos–
https://youtu.be/Roe023WtrPI?si=QLI9vsMek71zBDbu
Thasnks a lot for support
1 Like
