Skip to content

Commit

Permalink
hotfix: refac stock intervals
Browse files Browse the repository at this point in the history
  • Loading branch information
hikasap committed Dec 15, 2024
1 parent c4600c5 commit dd7e386
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/markets/stocks/StockChartSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import { createChart } from "lightweight-charts";
import "../../../styles/markets/stocks/StockOverviewPage.css";
import { StockService } from "../../../service/stockService";


const periods = ['1d', '5d', '1mo', '3mo', '1y', '5y'];
const intervals = ['15m', '1h', '1d', '1d', '1wk', '1mo'];
const intervals = ['5m', '15m', '90m', '1d', '1d', '1wk'];
const periodLabels = ['1D', '5D', '1M', '3M', '1Y', '5Y'];

const StockChartSection = ({ indexId }) => {
Expand Down

0 comments on commit dd7e386

Please sign in to comment.