UNPKG

degiro-api

Version:

Unofficial DeGiro API for Javascript. Buy and sell in the stock market. See your portfolio and much more

11 lines (10 loc) 291 B
import { DeGiroActions, DeGiroMarketOrderTypes, DeGiroTimeTypes } from '../enums/DeGiroEnums' export type OrderType = { buySell: DeGiroActions, orderType: DeGiroMarketOrderTypes, price?: Number, productId: string, size: number, stopPrice?: number, timeType: DeGiroTimeTypes, }