Index
Trading App

Welcome to the Trading App

This app provides various endpoints for trading operations.

Go to Stock Management

Portfolio
Portfolio

Portfolio

{% if data %}

Portfolio Data

{% for item in data.output1 %} {% endfor %}
종목번호 종목명 매수매도구분 수량 평균단가 현재가 평가금액 평가손익금액 평가손익율
{{ item.pdno }} {{ item.prdt_name }} {{ item.trad_dvsn_name }} {{ item.hldg_qty }} {{ item.pchs_avg_pric }} {{ item.prpr }} {{ item.evlu_amt }} {{ item.evlu_pfls_amt }} {{ item.evlu_pfls_rt }}
{% else %}

Portfolio 데이터가 없습니다.

{% endif %} {% if error %}

{{ error }}

{% endif %}
Stock_management
Portfolio

Portfolio

{% if data %}

Portfolio Data

{% for item in data.portfolio %} {% endfor %}
종목번호 종목명 매수매도구분 수량 평균단가 현재가 평가금액 평가손익금액 평가손익율
{{ item.pdno }} {{ item.prdt_name }} {{ item.trad_dvsn_name }} {{ item.quantity }} {{ item.avg_price }} {{ item.current_price }} {{ item.evaluation_amount }} {{ item.evaluation_profit_loss }} {{ item.evaluation_profit_loss_rate }}
{% else %}

Portfolio 데이터가 없습니다.

{% endif %} {% if error %}

{{ error }}

{% endif %}
Transactions
Transactions

Transactions

{% if data %}

Transaction Data

{% for item in data.transactions %} {% endfor %}
종목번호 종목명 거래일자 매매구분 수량 가격 금액
{{ item.pdno }} {{ item.prdt_name }} {{ item.tr_date }} {{ item.tr_type }} {{ item.quantity }} {{ item.price }} {{ item.amount }}
{% else %}

Transaction 데이터가 없습니다.

{% endif %} {% if error %}

{{ error }}

{% endif %}