kpushp

About

Username
kpushp
Joined
Visits
16
Last Active
Roles
Member

Comments

  • But when I run this program, the data that I get is correct for first few runs but after the 3rd or 4th time I run this it starts to give the candles of Tuesdays. I also tried changing the `from` timestamp to Monday, but still the same result.
  • @rakeshr from = datetime.datetime.now() - datetime.timedelta(days=270*7) to = datetime.datetime.now() data = kite.historical_data(instrument_token=256265, from_date=from, to_date=to, interval='week', continuous=False, oi=False) df = pd.DataFrame…
  • @MAG Thank You!!