This is an unnoficial Node.js API client for DeGiro's trading platform. Using this module you can easily automate your orders (buy and sell) and get information about orders, funds or products.
DeGiro is Europe's fastest growing online stockbroker. DeGiro distinguishes itself by offering institutional fees to retail investors.
# using npm
npm install --save degiro
# using yarn
yarn add degiroconst DeGiro = require('degiro');
const degiro = DeGiro.create({username: 'johndoe', password: '1234'});You can also provide your user and pass via environment variables:
// run as:
// DEGIRO_USER=johndow DEGIRO_PASS=1234 node app.js
const DeGiro = require('degiro');
// now you don't need to provide your credentials
const degiro = DeGiro.create();Performs the login to DeGiro using the username and password and gets a new session id and the account number.
degiro.login().then(session => console.log(session));
// prints session info (session id and account number)You can reuse your sessions if you provide the id and account number
via environment variables (DEGIRO_SID and DEGIRO_ACCOUNT), direct assignment
or constructor parameters.
// set session info via constructor
const degiro = DeGiro.create({sessionId: '', account: 123456})
// set session assigning session variables
degiro.session.id = 'your-session-id' ;
degiro.session.account = 'your-account-number';degiro.getCashFunds().then(console.log);
// {
// cashFunds: [
// {id: '2', name: 'EUR', value: 1935.8, valueBaseCurr: 1935.8, rate: 1},
// {id: '9885', name: 'USD', value: 0, valueBaseCurr: 0, rate: 0.9102},
// ...
// ]
// }degiro.getPortfolio().then(console.log);
// {
// "portfolio": [
// {
// "name": "positionrow",
// "id": 1156604,
// "value": [
// {
// "name": "id",
// "value": "1156604",
// "isAdded": true
// },
// {
// "name": "product",
// "value": "DEUTSCHE BANK AG COMMO",
// "isAdded": true
// },
// ...This example sets a permanent buy order 10 Apple shares at a fixed price of $110
degiro.buy({
orderType: DeGiro.OrderTypes.limited,
productSymbol: 'AAPL',
productType: DeGiro.ProductTypes.shares,
timeType: DeGiro.TimeTypes.permanent,
size: 10,
price: 110,
}).then(console.log); // prints the order idorderType: number- DeGiro.OrderTypes.limited
- DeGiro.OrderTypes.marketOrder
- DeGiro.OrderTypes.stopLoss
- DeGiro.OrderTypes.stopLimited
productSymbol: stringproductType: number- DeGiro.ProductTypes.shares
- DeGiro.ProductTypes.bonds
- DeGiro.ProductTypes.futures
- DeGiro.ProductTypes.options
- DeGiro.ProductTypes.investmendFunds
- DeGiro.ProductTypes.leveragedProducts
- DeGiro.ProductTypes.etfs
- DeGiro.ProductTypes.cfds
- DeGiro.ProductTypes.warrants
timeType: number- DeGiro.TimeTypes.day
- DeGiro.TimeTypes.permanent
price: number - Required forlimitedandstopLimitedordersstopPrice: number - Required forstopLossandstopLimitedorders
This example sets a permanent buy order 10 Apple shares from NASDAQ exchange by productId at a fixed price of $110
degiro.buyByProductId({
orderType: DeGiro.OrderTypes.limited,
productId: '331868',
timeType: DeGiro.TimeTypes.permanent,
size: 10,
price: 110,
}).then(console.log); // prints the order idorderType: number- DeGiro.OrderTypes.limited
- DeGiro.OrderTypes.marketOrder
- DeGiro.OrderTypes.stopLoss
- DeGiro.OrderTypes.stopLimited
productId: stringtimeType: number- DeGiro.TimeTypes.day
- DeGiro.TimeTypes.permanent
price: number - Required forlimitedandstopLimitedordersstopPrice: number - Required forstopLossandstopLimitedorders
This example sets a sell order of 15 Apple shares at market price
degiro.sell({
orderType: DeGiro.OrderTypes.marketOrder,
productSymbol: 'AAPL',
productType: DeGiro.ProductTypes.shares,
size: 15,
}).then(console.log); // prints the order idSame options as buy.
This example sets a sell order of 15 Apple shares from NASDAQ exchange at market price by its DeGiro productId
degiro.sell({
orderType: DeGiro.OrderTypes.marketOrder,
productId: '331868',
size: 15,
}).then(console.log); // prints the order idSame options as buyByProductId.
degiro.searchProduct({text: 'GOOG'})).then(console.log);
/*
{ offset: 0,
products:
[ { vwdIdentifierType: 'issueid',
productTypeId: 1,
symbol: 'GOOGL',
tradable: true,
marketAllowed: true,
sellAmountAllowed: true,
orderBookDepth: 0,
joinOrderAllowed: false,
vwdId: '350009261',
contractSize: 1,
isFund: false,
stopLimitOrderAllowed: true,
putCall: '0',
currency: 'USD',
id: '8066561',
category: 'A',
limitHitOrderAllowed: false,
feedQuality: 'D15',
stoplossAllowed: true,
name: 'ALPHABET INC. - CLASS',
gtcAllowed: true,
exchangeId: '663',
isin: 'US02079K3059' },
...
*/textstring - Search term. For example: "Netflix" or "NFLX"productTypenumber - SeeDeGiro.ProductTypes. Defaults toallsortColumnnumber - Column to sory by. For example:'name'.sortTypenumber- DeGiro.SortTypes.asc
- DeGiro.SortTypes.desc
limitnumber - Results limit. Defaults to 7offsetnumber - Results offset. Defaults to 0
degiro.getAskBidPrice('350009261').then(console.log);degiro.getProductsByIds(['8066561', '350009261'])).then(console.log);
// displays product detailsRequests client info (name, email, address, role, etc) to the server and updates the session information
degiro.getClientInfo().then(console.log);
// displays client informationYou can also access this information in degiro.session.clientInfo after a successful login
See examples
MIT