From 52576dbfaba67842cdb2a8c86c4810bb8ca2d74a Mon Sep 17 00:00:00 2001 From: crueltytanya <135027177+crueltytanya@users.noreply.github.com> Date: Thu, 11 Jan 2024 14:36:30 +0800 Subject: [PATCH] Update requests.py Added the "volume" column when downloading quotes in the functions: get_market_candles, get_board_candles --- apimoex/requests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apimoex/requests.py b/apimoex/requests.py index c1b2b31..6339ae5 100755 --- a/apimoex/requests.py +++ b/apimoex/requests.py @@ -286,6 +286,7 @@ def get_market_candles( "high", "low", "value", + "volume", ), market: str = "shares", engine: str = "stock", @@ -340,6 +341,7 @@ def get_board_candles( "high", "low", "value", + "volume", ), board: str = "TQBR", market: str = "shares",