Advertisement
3VFF3H_MONS

find chart time

Jul 27th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. teeimec = (time(period)/60000) - ((time(period)[1])/60000)
  2. teeime = teeimec > teeimec[1] ? teeimec : teeimec[1]
  3. hourly_teeime = ((teeime-(teeime%60)) / 60)
  4. daily_teeime = ((teeime-(teeime%1440)) / 1440)
  5. weekly_teeime = ((teeime-(teeime%10080)) / 10080)
  6. monthly_teeime = ((teeime-(teeime%44640)) / 44640)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement