forked from Chavithra/degiro-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transactions_history.py
65 lines (55 loc) · 1.45 KB
/
transactions_history.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# IMPORTATIONS
import datetime
import json
import logging
from degiro_connector.trading.api import API as TradingAPI
from degiro_connector.trading.models.trading_pb2 import (
Credentials,
TransactionsHistory,
)
# SETUP LOGGING LEVEL
logging.basicConfig(level=logging.DEBUG)
# SETUP CONFIG DICT
with open("config/config.json") as config_file:
config_dict = json.load(config_file)
# SETUP CREDENTIALS
int_account = config_dict.get("int_account")
username = config_dict.get("username")
password = config_dict.get("password")
totp_secret_key = config_dict.get("totp_secret_key")
one_time_password = config_dict.get("one_time_password")
credentials = Credentials(
int_account=int_account,
username=username,
password=password,
totp_secret_key=totp_secret_key,
one_time_password=one_time_password,
)
# SETUP TRADING API
trading_api = TradingAPI(credentials=credentials)
# CONNECT
trading_api.connect()
# SETUP REQUEST
today = datetime.date.today()
from_date = TransactionsHistory.Request.Date(
year=today.year,
month=1,
day=1,
)
to_date = TransactionsHistory.Request.Date(
year=today.year,
month=today.month,
day=today.day,
)
request = TransactionsHistory.Request(
from_date=from_date,
to_date=to_date,
)
# FETCH DATA
transactions_history = trading_api.get_transactions_history(
request=request,
raw=False,
)
# DISPLAY TRANSACTIONS
for transaction in transactions_history.values:
print(dict(transaction))