Code Monkey home page Code Monkey logo

je-suis-tm / quant-trading Goto Github PK

View Code? Open in Web Editor NEW
5.3K 235.0 1.1K 12.79 MB

Python quantitative trading strategies including VIX Calculator, Pattern Recognition, Commodity Trading Advisor, Monte Carlo, Options Straddle, Shooting Star, London Breakout, Heikin-Ashi, Pair Trading, RSI, Bollinger Bands, Parabolic SAR, Dual Thrust, Awesome, MACD

Home Page: https://je-suis-tm.github.io/quant-trading

License: Apache License 2.0

Python 100.00%
trading-strategies quantitative-trading trading-bot quantitative-finance algorithmic-trading macd statistical-arbitrage bollinger-bands momentum-trading-strategy options-trading

quant-trading's Introduction

Quant-trading

 

Intro

 

We’re right 50.75 percent of the time... but we’re 100 percent right 50.75 percent of the time, you can make billions that way.

--- Robert Mercer, co-CEO of Renaissance Technologies

If you trade a lot, you only need to be right 51 percent of the time, we need a smaller edge on each trade.

--- Elwyn Berlekamp, co-Founder of Combinatorial Game Theory

The quotes above come from a book by Gregory Zuckerman, a book every quant must read, THE MAN WHO SOLVED THE MARKET.

 

Most scripts inside this repository are technical indicator automated trading. These scripts include various types of momentum trading, opening range breakout, reversal of support & resistance and statistical arbitrage strategies. Yet, quantitative trading is not only about technical analysis. It can refer to computational finance to exploit derivative price mismatch, pattern recognition on alternative datasets to generate alphas or low latency order execution in the market microstructure. Hence, there are a few ongoing projects inside this repository. These projects are mostly quantamental analysis on some strange ideas I come up with to beat the market (or so I thought). There is no HFT strategy simply because ultra high frequency data are very expensive to acquire (even consider platforms like Quantopian or Quandl). Additionally, please note that, all scripts are historical data backtesting/forward testing (basically via Python, not C++, maybe Julia in the near future). The assumption is that all trades are frictionless. No slippage, no surcharge, no illiquidity. Last but not least, all scripts contain a global function named main so that you can embed the scripts directly into you trading system (although too lazy to write docstring).

Table of Contents

 

Options Strategy

 

Quantamental Analysis

 

Technical Indicators

 

Data Source


Strategies:

1. MACD oscillator

MACD oscillator is trading strategy 101. MACD refers to Moving Average Convergence/Divergence. It is a momentum trading strategy which holds the belief that upward/downward momentum has more impact on short term moving average than long term moving average. It only takes 5 minutes for any bloke with no background in finance to trade with MACD signals. Regarding the simplicity of MACD oscillator, it is the most common strategy among the non-professionals in the market. In behavioral economics, the more people believe in the strategy, the more effective the strategy becomes (not always true, e.g. 2008). Therefore, we should not underestimate the power of MACD oscillator.

For the strategy itself, we compute long term moving average and short term moving average on the close price of a given stock. To generate the trading signal, we implement a comparison between the moving averages of different time horizons. When short term moving average is above long term moving average, we long the given stock accordingly. Vice versa.

Click here to be redirected to the script.

alt text

alt text

2. Pair trading

Pair trading is the basic form of statistics arbitrage. It relies on the assumption that two cointegrated stocks would not drift too far away from each other. First step, we select two stocks and run Engle-Granger two step analysis. Once the criteria of cointegration is met, we standardize the residual and set one sigma away (two tailed) as the threshold. After that, we compute the current standardized residual of the selected stocks accordingly. When the standardized residual exceeds the threshold, it generates the trading signal. The simple rule is we always long the cheap stock and short the expensive stock.

The core idea of pair trading is cointegration. Metaphorically speaking, cointegration is like a couple in a clingy relationship where two parties are crazy-glued together. Yet, most relationships break sooner or later, and only the very few can make it to the marriage (from a statistics perspective, not being pessimistic). Hence, it is important to frequently check on the status quo of cointegration before any pair trading order execution (the same applies to relationships).

Click here to be redirected to the script.

alt text

alt text

3. Heikin-Ashi candlestick

Heikin-Ashi, the exotic name actually referring to 'Average Bar' in Japanese, is an alternative style of candlestick chart. The sophisticated rules of Heiki-Ashi are designed to filter out the noise for momentum trading. Hence, Heikin-Ashi shows more consecutive bars in contrast to the standard candlestick, which makes price momentum and reverse points more distinguishable in figures. Arguably it should outperform the standard candlestick in sideways and choppy markets.

For the strategy itself, initially we make a few transformations on four vital benchmarks - Open, Close, High, Low. The next step is to apply unique Heikin-Ashi rules on Heikin-Ashi Open, Close, High, Low to generate trading signals. The downside of Heikin-Ashi (or any momentum trading strategies) is the slow response. Thus, we should set up the stop loss position accordingly so that we don't get caught up in any flash crash.

The rules of Heikin-Ashi can be found in Quantiacs.

Click here to be redirected to the script.

alt text

alt text

4. London Breakout

To one of my favourite cities in the world! Proud to be a Londoner!

London Breakout is an intra daily opening range breakout strategy. Basically, it is a fascinating information arbitrage across different markets in different time zones. FX market runs 24/7 globally. For instance, you cannot long the stock of Ford in ASX simply because Ford is listed in NYSE. As FX market is decentralised, you can long any currency pair in any market as long as the market is open. That leaves a door to take a peek at the activity in a closed foreign FX market before the opening of domestic FX market.

Back to London Breakout, London and Tokyo are two of the largest FX markets in the world. Tokyo FX trading hour is GMT 0:00 a.m. - GMT 8:59am. London FX trading hour (no summer daylight saving) begins at GMT 8:00 a.m. Even though there is an hour of overlap, the crucial timeframe of London Breakout is GMT 7:00 a.m. - GMT 7:59 a.m. a.k.a. the last trading hour before the opening of London market. The price movement of the crucial timeframe incorporates the information of all the overnight activities of financial market (from the perspective of the current time zone).

For the strategy itself, we establish upper and lower thresholds prior to the high and low of the crucial timeframe. Once London FX market opens, we spend the first couple of minutes to check if the price would breach the preset boundaries. If it is above threshold, we long the currency pair accordingly. Vice versa. Nevertheless, we should set up a limit to prevent us from trading in the case of abnormal opening volatility. Normally, we clear our positions based on our target stop loss or stop profit respectively. By the end of the trading hour (still from the perspective of the current time zone), if there are any open positions, we clear them out.

Click here to be redirected to the script.

alt text

alt text

5. Awesome oscillator

Awesome oscillator is an upgraded version of MACD oscillator. It is one of those momentum strategies focusing on the game of moving average. Instead of taking simple moving average on close price, awesome moving average is derived from the mean of high and low price. Similar to MACD oscillator, it takes both short term and long term moving averages to construct the oscillator.

There are various strategies for awesome oscillator to generate signals, such as traditional moving average divergence, twin peaks and saucer. Twin peaks is just one of the many names of bottom W pattern. The pattern recognition will be covered in another chapter so the main focus of this chapter is saucer. Saucer is slightly more complex to implement than the traditional divergence. In return, saucer has the power to beat the slow response of the traditional divergence. Generally speaking, a faster response may sound awesome, but it does not guarantee a less risky outcome or a more profitable outcome. Hence, we will take MACD oscillator as a control group, to test if awesome oscillator can actually outperform MACD oscillator.

The rules of awesome oscillator could be found in TradingView.

Click here to be redirected to the script.

alt text

alt text

alt text

alt text

6. Oil Money project

This project is inspired by an article on oil-backed foreign exchange. Amid the bullish outlook for crude oil, the currency exchange of oil producing countries would also bounce back. Does this statement really hold?

According to the article by Bloomberg (or many other similar research), researchers examine the correlation between petrocurrency and oil price, instead of the causality. But correlation does not equal to causality. Correlation could be a coincidence of a math game. We simply cannot draw the conclusion that oil price moves the currency. Some researchers even use bootstrapping which greatly destroys the autocorrelation of a time series. Thus, it is vital to apply academic analysis and computer simulation on some petrocurrencies to test the causality of oil.

For more details, please refer to the read me page of a separate directory or quant trading section on my personal blog.

alt text

7. Dual Thrust

If you search dual thrust on google, you will end up with results of rocket engine. Don't panic yet, you can rest assured that dual thrust strategy is nowhere near rocket science. It is just an opening range breakout strategy developed by the founder of Universal Technical Systems. The mathematics involved in this strategy is merely primary school level.

Initially we establish upper and lower thresholds based on previous days' open, close, high and low. When the market opens and the price exceeds certain thresholds, we would take long/short positions prior to upper/lower thresholds. The strategy is quite useful in intra daily trading. However, there is no stop loss/profit position in this strategy. We reverse our positions when the price goes from one threshold to the other. We need to clear all positions by the end of the day.

Rules of dual thrust can be found in QuantConnect.

Click here to be redirected to the script.

alt text

8. Parabolic SAR

Parabolic SAR is an indicator to identify stop and reverse of a trend. Usually, Parabolic SAR is presented as dotted line either above or below the price in charts. When the price is an uptrend, SAR curve would sit below the price. When the price is downtrend, SAR curve would rise above the price. Parabolic SAR is always considered as a symbol of resistance to the price momentum. When SAR curve and the price curve cross over, it is when trade orders are supposed to be executed.

The building of this strategy seems very simple, but the construction of the indicator is extremely painful due to the involvement of recursive calculation. Illustration on how to compute Parabolic SAR can be found in Wikipedia but it is not very well explained. To get a clear idea of the calculation, my personal recommendation is to take a look at the spreadsheet made by joeu2004.

It is worth mentioning that SAR and RSI (which will be featured in a later chapter) shares the same founder, Welles Wilder. The guy is a real legend who used to work as mechanical engineer and real estate developer and later became a technical analyst. His book on technical trading system is a must-read for anyone that wants to elevate quant trading system to the next level.

Click here to be redirected to the script.

alt text

9. Bollinger Bands Pattern Recognition

Bollinger Bands is a very simple but powerful indicator. There are three bands of this indicator. The mid band is the moving average on the price series (usually takes 20 lags). The upper and lower bands are two moving standard deviations away from the mid band. Bollinger Bands can be used to test for various types of strategies.

For volatility trading, contraction and expansion of the band width are crucial elements. Any distinct momentum clustering (it can take form of either upward or downward) would result in a Bollinger Bands expansion. And the oscillation in a horizontal channel would result in a Bollinger Bands contraction.

For momentum trading, the phenomenon of 'walking the band' indicates the resistance and support level of the underlying asset. In a strong trend, the price constantly attempts to touch or break through the upper/lower band along with Bollinger Bands moving towards the same direction.

For pattern recognition, Bollinger Bands has the capability of testing bottom W, top M, head-shoulder patterns, etc. With upper and lower bands served as an interval, it is easier to identify the hidden pattern in the historical data.

More details of Bollinger Bands can be found in TradingView.

Click here to be redirected to the script.

alt text

10. Relative Strength Index Pattern Recognition

RSI (Relative Strength Index) is also a popular indicator. It reflects the current strength/weakness of the stock price momentum. The calculation is pretty straight forward. We use 14 days of smoothed moving average (or other moving average methods) to separately calculate the intra daily uptrend and downtrend. We denote uptrend moving average divided by downtrend moving average as the relative strength. We normalize the relative strength by 100 which becomes an index called RSI. It is commonly believed that RSI above 70 is overbought and RSI below 30 is oversold. This is the simplest way to trade on RSI (as shown in the pictures below). Nonetheless, there could be divergence between RSI momentum and price momentum which will not be covered in the script. The effectiveness of any divergence strategy on RSI is rather debatable.

alt text

alt text

If you are looking for something slightly more complex, well, we can apply pattern recognition technique to RSI as well. Unlike strategy No.9 Bollinger Bands, we can directly look at the patterns of RSI itself instead of the price. Since we have tested double bottom pattern in Bollinger Bands, we would test head-shoulder pattern on RSI this time.

For details of head-shoulder pattern, please refer to Investopedia.

Click here to be redirected to the script.

alt text

alt text

11. Monte Carlo project

Monte Carlo, my first thought on these two words is the grand casino, where you meet Famke Janssen in tuxedo and introduce yourself, 'Bond, James Bond'. Indeed, the simulation is named after the infamous casino. It actually refers to the computer simulation of massive amount of random events. This unconventional mathematical method is extremely powerful in the study of stochastic process.

Here comes the argument on Linkedin that caught my eyes the other day. "Stock price can be seemed as a Wiener Process. Hence, we can use Monte Carlo simulation to predict the stock price." said a data science blog. Well, in order to be a Wiener Process, we have to assume the stock price is continuous in time. In reality, the market closes. The overnight volatility exists. But that is not the biggest issue here. The biggest issue is, can we really use Monte Carlo simulation to predict the stock price, even a range or its direction?

For more details, please refer to the read me page of a separate directory or quant trading section on my personal blog.

alt text

12. Options Straddle

Here marks the debut of options strategy in this repository. Straddle refers to the shape of compasses in the payoff diagram of the strategy. A long straddle involves buying a call option and a put option at the same strike price, the same expiration date and preferably the same price. In reality, the same price is not always feasible (call options price higher implies higher upside risk, vice versa). It is recommended to trade when the price disparity between call and put options is converging.

Long straddle is commonly seen in event driven strategy, e.g. political referendum, company earning release. It profits from the uncertainty of both-side risk. For upside risk, the potential profit is unlimited. The potential loss does not come from the downside risk (there is limited gain from downside risk). Instead, it comes from the stagnant price due to insufficient volatility. In this case, short straddle is more suitable for sideways choppy market.

The crucial element of options straddle is the selection of the strike price. As the price of options contains the market consensus, the only way to maximize the profit is to find the optimal strike price to shrink the loss bandwidth. This is where the economists kick in and offer base case outlook plus best/worst scenarios. In contrast to the common misunderstanding of quantitative trading, Option Greeks are no silver bullet. Quantitative combined with fundamental in one, so-called quantamental, makes the portfolio impeccable.

Click here to be redirected to the script.

alt text

13. Portfolio Optimization project

Modern portfolio theory was introduced in 1952 by Nobel laureate Harry Markowitz. It is part of investment class 101. But I watched a video by Wolfram recently. It challenged the traditional approach and introduced graph theory to asset diversification. There are plenty of quant shops deploying fancy mathematic tools to solve the market. The real question for us is, as fancy as it sounds, does graph theory work on portfolio optimization?

alt text

This project is documented in the repository of Graph Theory. For more details, please refer to the read me page of a separate directory or graph theory section on my personal blog.

14. Smart Farmers project

I know a lot of you have complained that this repository isn’t quantitative enough. You are yelling for the ultimate weapon of math destruction such as Poisson process or Jensen’s inequality. Well, the objective of quantitative trading is churning out more 💶 rather than deploying an elegant closed form equation. If you crave for intellectual challenge in mathematics, you are always welcome to check out my Graph Theory repository. Nevertheless, I believe the birth of this project will meet your picky demand. Buon appetito 😋

🍊 🍍 🍈 🌽 and 🍠 are something we have been taking for granted. Up until COVID-19, we finally come to senses that farmers are one of our low-paid essential workers. This project is dedicated to the optimal allocation of agricultural resources. By trading agricultural market, we are able to eliminate the inefficiency in the crop market. Ideally no food will be wasted and farmers will be fairly compensated.

The project per se intends to leverage convex optimization to approximate farmers’ plantation planning for different crops. Assuming farmers are Homo Economicus, their end game is to maximize the profit regarding the price impact from supply and demand. Their decision is constrained by arable land area and biological features of crops. We develop this smart model accordingly to acquire a head start in trading 🍚 ☕ and 🍫

alt text

For more details, please refer to the read me page of a separate directory or quant trading section on my personal blog.

15. VIX Calculator

VIX is the fear gauge of S&P 500 index. By using Riemann sum and Taylor series expansion, we are able to convert a continuous fair price variance swap to a discrete options volatility index, which is called VIX. VIX is determined by two components, 3-week-ahead weekly S&P 500 options and one-month-ahead monthly S&P 500 options. It is de facto market anticipated volatility of S&P 500 index in 30 days. So far it has been applied to some stock exchange indices and some forex pairs. Since VIX is such a great risk management tool, why don’t we apply it to any asset with options contract? The objective of this script is to create a VIX calculator for any commodity options within any given length of forecast time horizon.

alt text

Click here to be redirected to the script.

16. Wisdom of Crowds Project

Every now and then, we read some bulge brackets hit the headline, “XXX will reach 99999€ in 20YY”. Some forecasts hit the bull’s eye but most projections are as accurate as astrology. Price prediction can be easily influenced by the cognitive bias. In the financial market, there is merit to the idea that consensus estimate is the best oracle. By harnessing the power of ensemble learning, we are about to leverage Dawid-Skene model and Platt-Burges model to eliminate the idiosyncratic noise associate with each individual judgement. The end game is to reveal the underlying intrinsic value generated by the collective knowledge of research analysts from different investment banks. Is wisdom of crowds a crystal ball for trading?

alt text

This project is documented in the repository of Machine Learning. For more details, please refer to the read me page of a separate directory or machine learning section on my personal blog.

17. Shooting Star

Can we pretend that airplanes in the night sky are like shooting stars? I could really use a wish right now!

--- Hayley Williams, Lead Vocalist of Paramore

Shooting star, such a poetic name, is merely a simple candlestick pattern. It has a long upper shadow, little lower shadow and a small real body, which resonates the shape of a shooting star. Similar to a real comet, shooting star is a jinxed signal. It indicates the beginning of a bearish momentum after a price uptrend. However, the definition of a shooting star in mathematics is sophisticated. Not many candlesticks can suffice the rigid criteria of shooting star. In practice, people relax the constraint on shooting star in order to trigger the signal.

A sibling of shooting star is called hammer which is effectively a vertical flipped shooting star with bullish outlook. The close price of a hammer is supposed to be higher than the open price. Another sibling of shooting star is called inverted hammer. Inverted hammer shares the same shape with shooting star, but inverted hammer comes with higher close price than open price and usually is an omen of price hike. Nonetheless, there is no "inverted shooting star". As malicious as it sounds, the official name is called hanging man...

Click here to be redirected to the script.

alt text


STAY TUNED

quant-trading's People

Contributors

ivigamberdiev avatar je-suis-tm avatar pixeebot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

quant-trading's Issues

what is the gbpusd.csv 's data structure?

I have download the gbp/usd data from the histdata.com, but I can't find the column's name.

could you give a example file?

thanks, this project is awsome, learn a lot.

forced brownian dynamics for stock market crash prediction

Hey Bro,

I love your works on git and want to share my ideas how to predict next market crash.
When you add external term on the brownian dynamic equation like mxdotdot + cxdot + kx = f(x) and solve it, you will get similar pattern. you can do curve fitting and getting c,k and also m and getting market dynamic contents and use this eq to predict next crash.

Check my paper fig.3.2.

https://drive.google.com/file/d/14XCTCn6in6tEab8ZJSCww6ISkawmg5Zq/view?usp=sharing

Jason

Future information issue in pairs trading

When you compute the signal 'z'(line93 in Pair trading backtest.py), the mean and std of residual come from the whole test sample, which introduces future information. I suppose they should be replaced with the mean and std of residuals in training samples.

Jupyter notebooks for a better start

Hi,

your github repo is really great and very clear, so i want to deal more with your tools. However, it takes a little bit of time to get used to it.

But for the beginning I would like to see some exemplary Jupyter notebooks with your explanations from the readme. In this way you were able to get directly into the topic.

Maybe you could create some notebooks, I would really like it!

NameError: name 'ma1' is not defined

When I run MACD Oscillator backtest.py for Apple Inc. (AAPL), I get a NameError.

ma1:11
ma2:29
start date in format yyyy-mm-dd:2019-03-18
end date in format yyyy-mm-dd:2020-03-18
ticker:AAPL
slicing:10
[*********************100%***********************]  1 of 1 completed
Traceback (most recent call last):
  File "C:/Users/25del/PycharmProjects/KrakenBot/MACD.py", line 134, in <module>
    main()
  File "C:/Users/25del/PycharmProjects/KrakenBot/MACD.py", line 124, in main
    new = signal_generation(df, macd)
  File "C:/Users/25del/PycharmProjects/KrakenBot/MACD.py", line 37, in signal_generation
    signals = method(df)
  File "C:/Users/25del/PycharmProjects/KrakenBot/MACD.py", line 21, in macd
    signals['ma1'] = signals['Close'].rolling(window=ma1, min_periods=1, center=False).mean()
NameError: name 'ma1' is not defined

New Day Data

Hi.First, thank you for the code. I am a beginner quant coder. I ve implemented another version of your code written by Sabir Jana.
https://github.com/sabirjana/blog/blob/master/Pair_Trading/sj_pairs_trading.ipynb

Now what I do is add the new daily close price and shift +1 in the notebook and re do the calculations . When I do this, the signals differ from the previous ones. So the problem is, if I do get a signal on that specific day, when I do the calculation again on the next day closing price, the signal from the previous day might not be there.

CTA?

Hi, I have just stumbled upon your project and in the GitHub project description there was mention of a CTA. Perhaps I missed it and that was meant to be the Oil Money Project or Smart Farmers project? Or is there a CTA.py missing? Thanks

Just trying to reach out

Hey I hate doing it like this but your email ([email protected]) listed on the contact section of your website didn't work.

I'm sure you're very busy but still wanted to reach out because you only miss the shots you don't take, as i always say. Would you be interested in contributing to this momentum signal idea I have? Even if you could just grace us with a few hours per week or whenever you have ome downtime to spare. We would greatly appreciate.

We're just a small group of young developers (most high school) age working on a social trading app that mainly operates on Discord right now. I won't go into specifics right now as it's not relevant. But I do want to clarify that we can't compensate you for our time as we don't have the capital or the revenue to offer you a fair rate.

I know this is a long shot but just had to try, you seem to be full of knowledge with technical analysis and indicators so you would be perfect for this project.

Thanks for your time

Possible forward bias in pair trading code

positions1=capital0//max(df1['asset1'])
positions2=capital0//max(df1['asset2'])
Hey, I think there is a possible forward bias in the pair trading code. When you size the positions in accordance to the maximum value an asset takes over the entire duration (including the time which has not been seen by the strategy), then the knowledge of maximum value over the duration peeps in.
A different approach can be to size based on the prices available at time 0.

Question About Pair Trading Code

Pair trading backtest.py Line 89:
signals['fitted']=np.mat(sm.add_constant(signals['asset2']))*np.mat(model.params).reshape(2,1)
Why assets2 became an independent variable at this time?But Can see that it is the dependent variable in regression model.
x=sm.add_constant(train['asset1']) y=train['asset2'] model=sm.OLS(y,x).fit()
I tried to exchange them but got worse results,I know your code is right,but i wanna know more abot this,why such two variable can be exchanged here?
THX!!!!!!!!!!!!!!!!!!!

Not able to generate bollinger band signals

hi,
Thanks for that great work!!
I am trying to generate just the buy/ sell signal (and not the pattern). I took the 5 years stock data however signals[signals['signals']!=0] is always empty irrespective of any stock I take. Appreciate any help.
Thank you!


Empty DataFrame
Columns: [Open, High, Low, Close, Adj Close, Volume, std, mid band, upper band, lower band, signals, cumsum, coordinates]
Index: []
image

Psar problem

Parabolic SAR backtest.py:46: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.