Skip to content

Commit

Permalink
change default chart time bucket to 1d
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkunz committed Sep 13, 2023
1 parent ceee74c commit 58225e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ for the same hovered date. Also displays a time-bucket selector.
return candles ? candles.map(candleToQuote) : [];
}
$: timeBucket = ($page.url.hash.slice(1) || '4h') as TimeBucket;
$: timeBucket = ($page.url.hash.slice(1) || '1d') as TimeBucket;
</script>

<div class="chart-header">
Expand Down

0 comments on commit 58225e5

Please sign in to comment.