From 27ca5de11279619c2e10981f2cf7e2cb6c5fe263 Mon Sep 17 00:00:00 2001 From: Evgeny Pogrebnyak Date: Fri, 3 Jun 2022 00:21:54 +0300 Subject: [PATCH] placeholder for #8 --- finec/moex.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/finec/moex.py b/finec/moex.py index d5578b1..21ce257 100644 --- a/finec/moex.py +++ b/finec/moex.py @@ -361,6 +361,11 @@ def get_history_json(self, columns=[], start="", end=""): def get_history(self, columns=[], start="", end=""): return dataframe(self.get_history_json(columns, start, end)) + def get_candles(self, interval=24, columns=[], start="", end=""): + # "https://iss.moex.com/iss/engines/{engine}/markets/{market}/" + # f"boards/{board}/securities/{security}/candles.json" + pass + @dataclass class Stock(Security):