AI-Funding / AI_Funding_FE

0 stars 4 forks source link

Feat/#52 계좌 페이지 수익 비교 탭 차트 구현 #97

Closed chb09876 closed 2 years ago

chb09876 commented 2 years ago

받아야 할 데이터

[
    {
      model: "aquamarine", // ai 모델 식별 값
      accountName: "blueblue", // 사용자가 지정한 계좌 이름
      profits: { // 일일 누적 수익률
        "2021-09-09": 8, // %값
        "2021-09-10": 7,
        "2021-09-11": 8,
        "2021-09-12": 14.5,
        "2021-09-13": 8,
        "2021-09-14": 7,
        "2021-09-15": 8,
        "2021-09-16": 7,
        "2021-09-17": 8,
        "2021-09-18": 7,
        "2021-09-19": 8,
        "2021-09-20": 7,
        "2021-09-21": 8,
        "2021-09-22": 7,
      },
    },
    {
      model: "ruby",
      accountName: "pinkpink",
      profits: {
        "2021-09-17": -8,
        "2021-09-18": 7,
        "2021-09-19": 8,
        "2021-09-20": -4,
        "2021-09-21": 8,
        "2021-09-22": 3,
      },
    },
  ]

api 주소

/api/dailyprofit

image