Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

client.py comment fix #84

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions jquantsapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def _get_prices_prices_am_raw(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
pagination_key: ページングキー

Expand All @@ -648,7 +648,7 @@ def get_prices_prices_am(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
Returns: pd.DataFrame: the morning session's OHLC data
"""
Expand Down Expand Up @@ -761,7 +761,7 @@ def _get_markets_weekly_margin_interest_raw(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down Expand Up @@ -799,7 +799,7 @@ def get_markets_weekly_margin_interest(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down Expand Up @@ -992,7 +992,7 @@ def _get_markets_breakdown_raw(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down Expand Up @@ -1030,7 +1030,7 @@ def get_markets_breakdown(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down Expand Up @@ -1441,7 +1441,7 @@ def _get_fins_dividend_raw(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down Expand Up @@ -1479,7 +1479,7 @@ def get_fins_dividend(

Args:
code: issue code (e.g. 27800 or 2780)
If a 4-digit issue code is specified, only the data of common stock will be obtained
If a 4-character issue code is specified, only the data of common stock will be obtained
for the issue on which both common and preferred stocks are listed.
from_yyyymmdd: starting point of data period (e.g. 20210901 or 2021-09-01)
to_yyyymmdd: end point of data period (e.g. 20210907 or 2021-09-07)
Expand Down
Loading