Reputation: 15
Is there a way I can use the barssince function to return the number of bars since a specific time occurring each day?
Upvotes: 1
Views: 1201
Reputation: 177
Code:
//@version=4
study("Time test")
specificTime = hour == 14 and minute == 0
plot(barssince(specificTime))
Upvotes: 1