All Projects → ntftrader → nordnet

ntftrader / nordnet

Licence: other
Uonfficial wrapper for financial data api from the Scandinavian broker Nordnet

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to nordnet

Algotrader
Simple algorithmic stock and option trading for Node.js.
Stars: ✭ 468 (+3500%)
Mutual labels:  trading, stock, stock-market
TradingView-Machine-Learning-GUI
Let Python optimize the best stop loss and take profits for your TradingView strategy.
Stars: ✭ 396 (+2946.15%)
Mutual labels:  trading, stock, stock-market
trading sim
📈📆 Backtest trading strategies concurrently using historical chart data from various financial exchanges.
Stars: ✭ 21 (+61.54%)
Mutual labels:  trading, stock, stock-market
Deep Rl Trading
playing idealized trading games with deep reinforcement learning
Stars: ✭ 228 (+1653.85%)
Mutual labels:  trading, stock, stock-market
Mida
The open-source and cross-platform trading framework
Stars: ✭ 263 (+1923.08%)
Mutual labels:  trading, forex, commodities
web trader
📊 Python Flask game that consolidates data from Nasdaq, allowing the user to practice buying and selling stocks.
Stars: ✭ 21 (+61.54%)
Mutual labels:  trading, stock, stock-market
dukascopy-tools
✨ Download historical price tick data for Crypto, Stocks, ETFs, CFDs, Forex via CLI and Node.js ✨
Stars: ✭ 128 (+884.62%)
Mutual labels:  trading, stock, forex
TerminalStocks
Pure terminal stock ticker for Windows.
Stars: ✭ 88 (+576.92%)
Mutual labels:  trading, stock, stock-market
getbhavcopy
Free NSE and BSE data downloader
Stars: ✭ 93 (+615.38%)
Mutual labels:  stock, stock-market
ChartTheStockMarket
🔥 📈 💸 Chart the Stock Market - FCC Challenge
Stars: ✭ 39 (+200%)
Mutual labels:  stock, stock-market
xapi-node
xStation5 Trading API for NodeJS/JS
Stars: ✭ 36 (+176.92%)
Mutual labels:  trading, forex
EA31337-classes
📦📈 EA31337 framework (MQL library for writing trading Expert Advisors, indicators and scripts)
Stars: ✭ 103 (+692.31%)
Mutual labels:  trading, forex
Steward
A stock portfolio manager that provides neural net based short-term predictions for stocks and natural language processing based analysis on community sentiments.
Stars: ✭ 25 (+92.31%)
Mutual labels:  stock, stock-market
Option-Trading-Backend
Option trading platform on NSE (India) for Upstox
Stars: ✭ 33 (+153.85%)
Mutual labels:  trading, derivatives
mt4-mql
MetaTrader MQL4 framework
Stars: ✭ 205 (+1476.92%)
Mutual labels:  trading, forex
open-climate-investing
Application and data for analyzing and structuring portfolios for climate investing.
Stars: ✭ 20 (+53.85%)
Mutual labels:  stock, stock-market
Beibo
🤖 Predict the stock market with AI 用AI预测股票市场
Stars: ✭ 46 (+253.85%)
Mutual labels:  stock, stock-market
ig-markets
IG Markets API wrapper for Node.js
Stars: ✭ 23 (+76.92%)
Mutual labels:  stock, forex
Sequence-to-Sequence-Learning-of-Financial-Time-Series-in-Algorithmic-Trading
My bachelor's thesis—analyzing the application of LSTM-based RNNs on financial markets. 🤓
Stars: ✭ 64 (+392.31%)
Mutual labels:  trading, forex
RoboBull
A HackRU winner project. a user-friendly web-interface robo-adviser for novice traders that want to focus on day and short term trading. Project is using candlestick and moving average algorithms to predict suggestions (buy, sell, hold) for users. Product is also notifying users via SMS when the suggestion is changed; users are able to subscribe…
Stars: ✭ 12 (-7.69%)
Mutual labels:  trading, stock

Nordnet

A python wrapper around Scandinavian broker Nordnet's external REST api.

Install

pip install git+https://github.com/ntftrader/nordnet.git

Or a specific version (tag):

pip install git+https://github.com/ntftrader/[email protected]

Requirements are requests, pandas, numpy and simplejson.

Simple

from nordnet import Nordnet
nn = Nordnet()
nn.main_search("DNB")
(True, [{'instrument_id': 16105640, 'symbol': 'DNB', 'name': 'DNB', 'exchange_country': 'NO'},
        {'instrument_id': 16121046, 'symbol': 'DNB', 'name': 'Dun & Bradstreet Corporation (The)', 'exchange_country': 'US'},
        {'instrument_id': 16117764, 'symbol': 'DNBF', 'name': 'DNB Financial Corp', 'exchange_country': 'US'}])

Data structures

Methods calling the REST api will return a tuple (status, results) where status is a boolean and results a list.

The status boolean is True if the GET request returns http 200.

All methods with name ending with *_pd returns a pandas Dataframe.

df = nn.get_trades_pd(instrument_id=16117764, vwap=True, turnover=False)
df.tail()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].