All Projects → SaifRehman → algorithmic-market-prediction

SaifRehman / algorithmic-market-prediction

Licence: other
Implementation of Algorthmic Prediction of Candle Patterns

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to algorithmic-market-prediction

TradeBot
Crypto trading bot using Binance API (Java)
Stars: ✭ 292 (+1290.48%)
Mutual labels:  market, technical-analysis, rsi, macd
Yykline
iOS YYKline:Kline、Chart、Volume、Scroll、Scale、MACD、KDJ、K线图、分时图...
Stars: ✭ 2,318 (+10938.1%)
Mutual labels:  stock, rsi, macd
MyTT
MyTT将通达信,同花顺,文华麦语言等指标公式,最简移植到Python中,核心库单个文件,仅百行代码,十几个核心函数,神奇的实现所有常见技术指标算法(不依赖talib库)的纯python实现和转换通达信MACD,RSI,BOLL,ATR,KDJ,CCI,PSY等公式,全部基于pandas函数计算方法封装,简洁且高性能,能非常方便的应用在股票指标公式,股市期货量化框架分析,自动程序化交易,数字货币量化等领域,它是您最精练的股市量化工具。Python library with most stock market indicators.
Stars: ✭ 888 (+4128.57%)
Mutual labels:  stock, rsi, macd
StockChart
StockChart是一款适用于Android的高扩展性、高性能股票图开发库,轻松完成各种子图的组合,还能灵活的定制自己的子图满足复杂的业务需求。
Stars: ✭ 62 (+195.24%)
Mutual labels:  stock, macd
Fooltrader
quant framework for stock
Stars: ✭ 960 (+4471.43%)
Mutual labels:  stock, technical-analysis
Gekko Strategies
Strategies to Gekko trading bot with backtests results and some useful tools.
Stars: ✭ 1,022 (+4766.67%)
Mutual labels:  stock, technical-analysis
MSTA
Multi Strategy Trading Algorithm
Stars: ✭ 34 (+61.9%)
Mutual labels:  prediction, technical-analysis
markets-react
📈 Check the stock market, from your phone!
Stars: ✭ 47 (+123.81%)
Mutual labels:  market, stock
StockPricePredictor
An S&P500 Stock Index Movement Predictor built with Machine Learning models
Stars: ✭ 29 (+38.1%)
Mutual labels:  market, stock
R-code-for-finance
R code for finance
Stars: ✭ 19 (-9.52%)
Mutual labels:  market, stock
stock-forecast
Simple stock & cryptocurrency price forecasting console application, using PHP Machine Learning library (https://github.com/php-ai/php-ml)
Stars: ✭ 76 (+261.9%)
Mutual labels:  prediction, stock
Finance4py
股市技術分析小工具
Stars: ✭ 8 (-61.9%)
Mutual labels:  stock, technical-analysis
Techan
Technical Analysis Library for Golang
Stars: ✭ 404 (+1823.81%)
Mutual labels:  stock, technical-analysis
Zvt
modular quant framework.
Stars: ✭ 1,801 (+8476.19%)
Mutual labels:  stock, technical-analysis
technical-indicators
Finance package written in Golang, mainly with TA indicators.
Stars: ✭ 56 (+166.67%)
Mutual labels:  stock, technical-analysis
STOCK-RETURN-PREDICTION-USING-KNN-SVM-GUASSIAN-PROCESS-ADABOOST-TREE-REGRESSION-AND-QDA
Forecast stock prices using machine learning approach. A time series analysis. Employ the Use of Predictive Modeling in Machine Learning to Forecast Stock Return. Approach Used by Hedge Funds to Select Tradeable Stocks
Stars: ✭ 94 (+347.62%)
Mutual labels:  prediction, stock
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+323.81%)
Mutual labels:  market, rsi
Base-On-Relation-Method-Extract-News-DA-RNN-Model-For-Stock-Prediction--Pytorch
基於關聯式新聞提取方法之雙階段注意力機制模型用於股票預測
Stars: ✭ 33 (+57.14%)
Mutual labels:  prediction, stock
indicado
Technical indicator library for Elixir with no dependencies.
Stars: ✭ 15 (-28.57%)
Mutual labels:  technical-analysis
stock-news-sentiment-analysis
This program uses Vader SentimentIntensityAnalyzer to calculate the news headline overall sentiment for a stock
Stars: ✭ 21 (+0%)
Mutual labels:  stock

Algorithmic-market-prediction



Algorthmic Prediction

Implementation of Algorthmic Prediction of Candle Patterns

Travis Build


Implemantions

  • Twilio Support
  • Heikin Ashi
  • Backtesting
  • Bullish Harami
  • Bearish Harami
  • Hammer Reversal
  • Doji Candlestick
  • Golang support

Heikin Ashi

What is Heikin Ashi?

Heikin-Ashi Candlesticks are an offshoot from Japanese candlesticks. Heikin-Ashi Candlesticks use the open-close data from the prior period and the open-high-low-close data from the current period to create a combo candlestick. The resulting candlestick filters out some noise in an effort to better capture the trend. In Japanese, Heikin means “average” and ashi means “pace” (EUDict.com).

Difference between normal candles and Heikin Ashi candles

1

Heiken Ashi candlestick filters out some noise in an effort to better capture the trend. For those that use trailing stops and are trend traders, flipping back between the two candlestick charts is quintessential for traders. In the chart I showed how a trader could use trailing stops to profit from the biggest trends. He or she would set stops with long or short positions and use the previous Heiken Ashi candlestick (green or red - lower or higher) as a gauge to stay in a trade or to get out of a trade. Overal Heiken Ashi is a chart I will look at often to know if I'm on the right side of the trade.

Implementation of Heikin Ashi Prediction to Alert you with SMS to bid for buy or sell

This is a Twilio SMS app with background cron jobs for every day 2 hours, inorder to alert for buy or sell

2

  1. Create a Account in Twilio
  2. Create a Account in IBM Cloud
  3. Create a Account in xignite
  4. Get account_sid and auth_token
  5. Regitser you sms number in twilio
  6. Give a unique name in manifest.yml
  7. Navigate to Heikin-Ashi/python
  8. Place in number you want to send the sms to, and from will be default number from Twilio
message = client.messages.create(
                                        body="Buy/Sell",
                                        from_="****",
                                        to="****"
                                    )
  1. Push the app to IBM Cloud
$ cf push

Work in progress :)

PR Welcome ^^

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].