33 lines
1009 B
Python
33 lines
1009 B
Python
import logging
|
|
import os
|
|
from datetime import timedelta
|
|
from pathlib import Path
|
|
|
|
from t_tech.invest import CandleInterval, Client
|
|
from t_tech.invest.caching.market_data_cache.cache import MarketDataCache
|
|
from t_tech.invest.caching.market_data_cache.cache_settings import (
|
|
MarketDataCacheSettings,
|
|
)
|
|
from t_tech.invest.utils import now
|
|
|
|
TOKEN = os.environ["INVEST_TOKEN"]
|
|
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.DEBUG)
|
|
|
|
|
|
def main():
|
|
with Client(TOKEN) as client:
|
|
settings = MarketDataCacheSettings(base_cache_dir=Path("market_data_cache"))
|
|
market_data_cache = MarketDataCache(settings=settings, services=client)
|
|
for candle in market_data_cache.get_all_candles(
|
|
figi="BBG004730N88",
|
|
from_=now() - timedelta(days=1),
|
|
interval=CandleInterval.CANDLE_INTERVAL_HOUR,
|
|
):
|
|
print(candle.time, candle.is_complete)
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|