You can use a code for your “problem”
for example:
CODE:
TZone = GetTimeFrame
if TZone = 60 then //1 Minute
‘your Code what you will see’
elsif TZone = 300 then //5 Minute
‘your Code what you will see’
elsif TZone = 900 then // 15 Minute
‘your Code what you will see’
elsif TZone = 1800 then // 30 Minute
‘your Code what you will see’
elsif TZone = 3600 then // 1 Hour
‘your Code what you will see’
elsif TZone = 14400 then // 4 Hour
‘your Code what you will see’
elsif TZone = 86400 then // 1 Day
‘your Code what you will see’
elsif TZone = 604800 then // 1 Week
‘your Code what you will see’
elsif TZone = 2592000 then // 1 Month
‘your Code what you will see’
endif
Return
2 users thanked author for this post.