Skip to content

Commit 5748ee0

Browse files
authored
Merge pull request #133 from InserToken/feat/35-pracMain/minseon
[modify] 툴팁색, 보조지표
2 parents 14f21cb + 268fb8d commit 5748ee0

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

src/components/blocks/PracticePage/PracticePage.client.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,19 @@ export default function PracticeClient() {
312312
>
313313
{showIndicators ? "– 보조지표 접기" : "+ 보조지표 설정"}
314314
</span>
315+
<span className="relative group cursor-pointer text-gray-400">
316+
317+
<div className="absolute bottom-full mb-2 left-0 w-max max-w-xs bg-black text-sm px-3 py-2 rounded-md shadow-md opacity-0 group-hover:opacity-100 transition-opacity duration-200 z-50 pointer-events-none">
318+
<b className="text-[#f4f4f4]">이동평균선: </b> 주가
319+
흐름의 평균 경로를 나타내는 선.
320+
<br />
321+
<b className="text-[#f4f4f4]">볼린저밴드: </b>주가의
322+
변동 범위(위험도)를 띠 형태로 보여주는 지표.
323+
<br />
324+
<b className="text-[#f4f4f4]">RSI: </b>예주가의
325+
과열(과매수)이나 침체(과매도) 상태를 알려주는 지표.
326+
</div>
327+
</span>
315328
</div>
316329
</div>
317330
)}

src/components/charts/InvestCandleChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ export default function InvestCandleChart({
10131013
: {todayPrice.toLocaleString()}
10141014
</div>
10151015
<div style={{ marginTop: 4 }}>
1016-
<span style={{ color: "#10B981", fontWeight: 600 }}>
1016+
<span style={{ color: "#396FFB", fontWeight: 600 }}>
10171017
예측값
10181018
</span>
10191019
: {dot.close.toLocaleString()}

0 commit comments

Comments
 (0)