All Projects → rubenafo → Trendyways

rubenafo / Trendyways

Licence: apache-2.0
Simple javascript library containing methods for financial technical analysis

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Trendyways

Ta Rs
Technical analysis library for Rust language
Stars: ✭ 248 (+104.96%)
Mutual labels:  trading, finance, stock-market, technical-analysis
Pandas Ta
Technical Analysis Indicators - Pandas TA is an easy to use Python 3 Pandas Extension with 130+ Indicators
Stars: ✭ 962 (+695.04%)
Mutual labels:  trading, finance, stock-market, technical-analysis
Tradestation
EasyLanguage indicators and systems for TradeStation
Stars: ✭ 65 (-46.28%)
Mutual labels:  trading, finance, stock-market, technical-analysis
tuneta
Intelligently optimizes technical indicators and optionally selects the least intercorrelated for use in machine learning models
Stars: ✭ 77 (-36.36%)
Mutual labels:  finance, trading, stock-market, technical-analysis
Alpaca Backtrader Api
Alpaca Trading API integrated with backtrader
Stars: ✭ 246 (+103.31%)
Mutual labels:  trading, finance, stock-market
Turingtrader
The Open-Source Backtesting Engine/ Market Simulator by Bertram Solutions.
Stars: ✭ 132 (+9.09%)
Mutual labels:  trading, finance, technical-analysis
Jhtalib
Technical Analysis Library Time-Series
Stars: ✭ 131 (+8.26%)
Mutual labels:  series, trading, technical-analysis
Mop
Stock market tracker for hackers.
Stars: ✭ 1,534 (+1167.77%)
Mutual labels:  finance, trading, stock-market
web trader
📊 Python Flask game that consolidates data from Nasdaq, allowing the user to practice buying and selling stocks.
Stars: ✭ 21 (-82.64%)
Mutual labels:  finance, trading, stock-market
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 (-47.11%)
Mutual labels:  finance, trading, technical-analysis
AutoTrader
A Python-based development platform for automated trading systems - from backtesting to optimisation to livetrading.
Stars: ✭ 227 (+87.6%)
Mutual labels:  finance, trading, technical-analysis
cira
Cira algorithmic trading made easy. A Façade library for simpler interaction with alpaca-trade-API from Alpaca Markets.
Stars: ✭ 21 (-82.64%)
Mutual labels:  finance, trading, stock-market
trading sim
📈📆 Backtest trading strategies concurrently using historical chart data from various financial exchanges.
Stars: ✭ 21 (-82.64%)
Mutual labels:  finance, trading, stock-market
Quantdom
Python-based framework for backtesting trading strategies & analyzing financial markets [GUI ]
Stars: ✭ 449 (+271.07%)
Mutual labels:  trading, finance, stock-market
Sibyl
Platform for backtesting and live-trading intraday Stock/ETF/ELW using recurrent neural networks
Stars: ✭ 32 (-73.55%)
Mutual labels:  trading, stock-market
Robin stocks
This is a library to use with Robinhood Financial App. It currently supports trading crypto-currencies, options, and stocks. In addition, it can be used to get real time ticker information, assess the performance of your portfolio, and can also get tax documents, total dividends paid, and more. More info at
Stars: ✭ 967 (+699.17%)
Mutual labels:  trading, stock-market
Bulbea
🐗 🐻 Deep Learning based Python Library for Stock Market Prediction and Modelling
Stars: ✭ 1,585 (+1209.92%)
Mutual labels:  finance, stock-market
Fooltrader
quant framework for stock
Stars: ✭ 960 (+693.39%)
Mutual labels:  stock-market, technical-analysis
Trading Signals
Technical indicators to run technical analysis with JavaScript / TypeScript. 📈
Stars: ✭ 118 (-2.48%)
Mutual labels:  trading, technical-analysis
Aat
Asynchronous, event-driven algorithmic trading in Python and C++
Stars: ✭ 109 (-9.92%)
Mutual labels:  trading, stock-market

Build Status Coverage Status npm version

Trendyways

Small javascript library containing methods to be used in financial technical analysis of stock time series. It is intended to be a simple library, suitable to be inserted in any visulization workflow to generate results on the fly.

Compatibily: IE[7,8,9,...], Chrome and Firefox.

Install

npm install trendyways

How to use it

From NPM, load the module to access the methods:

let tw = require ("trendyways")
console.log(tw.ma([1.1, 2.2, 3.4, 2.1], 2)

If you use the module in a browser as a JS dependency, trendyways.js or trendyways.min.js just include the file:
<script src="trendyways.min.js" />
and the file will be available as the tw module: e.g. tw.max([4,5,6])

Documentation

Please refer to the wiki of the project to access the latest documentation: https://github.com/rubenafo/trendyways/wiki

General purpose functions:

  • series min.
  • series max.
  • series mean.
  • series standar deviation.

Averages and Intervals:

  • MA: simple moving average.
  • EMA: exponential moving average.
  • WMA: weighted moving average.
  • Bollinger bands (window n, k value).

Error methods:

  • series MSE
  • series RMSE
  • series MAE

Support and Resistance methods:

  • Floor pivot points (resistances R1, R2 and R3; and supports S1, S2 and S3).
  • Tom Demarks Points (low:high values prediction).
  • Woodies Points (resistances R1,R2; and supports S1 and S2).
  • Camarilla Points (resistances R1,R2,R3 and R4; supports S1,S2,S3 and S4).
  • Fibonacci Retracements (for both uptrend and downtrend series).

Technical Indicators:

  • On-Balance Volume (obv)
  • Price and Volume Trend (pvt)
  • Money Flow Index (mfi)
  • MACD indicator (macd)
  • Momentum (n-th order momentum)
  • Rate of Change (ROC) (n-th order)
  • RSI (Relative Strength Index) (n-th order)
  • Average True Range (ATR)
  • Average Directional Index (ADV)

Tests

At the top of this README there is a link to the coverage and test results from Travis and CoverAll. If you want to run your tests locally, use mocha to run the /tests files:

mocha ./tests
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].