Using the latest advancements in deep learning to predict stock price movements

That is a good question: there are special sections on that later.

We will go into greater details for each step, of course, but the most difficult part is the GAN: very tricky part of successfully training a GAN is getting the right set of hyperparameters.

For that reason we will use Bayesian optimisation (along with Gaussian processes) and Deep Reinforcement learning (DRL) for deciding when and how to change the GAN’s hyper parameters (the exploration vs.

exploitation dilemma).

In creating the reinforcement learning I will use the most recent advancements in the field, such as Rainbow and PPO.

We will use a lot of different types of input data.

Along with the stock’s historical trading data and technical indicators, we will use the newest advancements in NLP (using ‘Bidirectional Embedding Representations from Transformers’, BERT, sort of a transfer learning for NLP) to create sentiment analysis (as a source for fundamental analysis), Fourier transforms for extracting overall trend directions, stacked autoencoders for identifying other high-level features, Eigen portfolios for finding correlated assets, autoregressive integrated moving average (ARIMA) for the stock function approximation, and many more, in order to capture as much information, patterns, dependencies, etc, as possible about the stock.

As we all know, the more (data) the merrier.

Predicting stock price movements is an extremely complex task, so the more we know about the stock (from different perspectives) the higher our changes are.

For the purpose of creating all neural nets we will use MXNet and its high-level API — Gluon, and train them on multiple GPUs.

Note: Although I try to get into details of the math and the mechanisms behind almost all algorithms and techniques, this notebook is not explicitly intended to explain how machine/deep learning, or the stock markets, work.

The purpose is rather to show how we can use different techniques and algorithms for the purpose of accurately predicting stock price movements, and to also give rationale behind the reason and usefulness of using each technique at each step.

Table of Contents1.

Introduction2.

The Data2.

1.

Correlated assets2.

2.

Technical indicators2.

3.

Fundamental analysis2.

3.

1.

Bidirectional Embedding Representations from Transformers — BERT2.

4.

Fourier transforms for trend analysis2.

5.

ARIMA as a feature2.

6.

Statistical checks2.

6.

1.

Heteroskedasticity, multicollinearity, serial correlation2.

7.

Feature Engineering2.

7.

1.

Feature importance with XGBoost2.

8.

Extracting high-level features with Stacked Autoencoders2.

8.

1.

Activation function — GELU (Gaussian Error)3.

Generative Adversarial Network (GAN)3.

1.

Why GAN for stock market prediction3.

2.

Metropolis-Hastings GAN and Wasserstein GAN3.

4.

The Generator — One layer RNN3.

4.

1.

LSTM or GRU3.

4.

2.

The LSTM architecture3.

4.

3.

Learning rate scheduler3.

4.

4.

How to prevent overfitting and the bias-variance trade-off3.

5.

The Discriminator — One Dimentional CNN4.

5.

1.

Why CNN as a discriminator?3.

5.

1.

The CNN Architecture3.

6.

Hyperparameters4.

Hyperparameters optimisation4.

1.

Reinforcement learning for hyperparameters optimization4.

1.

1.

Reinforcement Learning Theory4.

1.

1.

1.

Rainbow4.

1.

1.

2.

PPO4.

1.

2.

Further work on Reinforcement learning4.

2.

Bayesian optimization4.

2.

1.

Gaussian process5.

The Result6.

What is next?7.

Disclaimer1.

IntroductionAccurately predicting the stock markets is a complex task as there are millions of events and pre-conditions for a particular stock to move in a particular direction.

So we need to be able to capture as many of these pre-conditions as possible.

We also need make several important assumptions: 1) markets are not 100% random, 2) history repeats, 3) markets follow people’s rational behavior, and 4) the markets are ‘perfect’.

And, please, do read the Disclaimer at the bottom.

We will try to predict the price movements of Goldman Sachs (NYSE: GS).

For the purpose, we will use the daily closing price from January 1st, 2010 to December 31st, 2018 (seven years for training purposes and two years for validation purposes).

We will use the terms ‘Goldman Sachs’ and ‘GS’ interchangeably.

2.

The DataWe need to understand what affects whether GS’s stock price will move up or down.

It is what people as a whole think.

Hence, we need to incorporate as much information (depicting the stock from different aspects and angles) as possible.

(We will use daily data — 1,585 days to train the various algorithms (70% of the data we have) and predict the next 680 days (test data).

Then we will compare the predicted results with a test (hold-out) data.

Each type of data (we will refer to it as feature) is explained in greater detail in later sections, but, as a high-level overview, the features we will use are:Correlated assets — these are other assets (any type, not necessarily stocks, such as commodities, FX, indices, or even fixed income securities).

A big company, such as Goldman Sachs, obviously doesn’t ‘live’ in an isolated world — it depends on, and interacts with, many external factors, including its competitors, clients, the global economy, the geo-political situation, fiscal and monetary policies, access to capital, etc.

The details are listed later.

Technical indicators — a lot of investors follow technical indicators.

We will include the most popular indicators as independent features.

Among them — 7 and 21 days moving average, exponential moving average, momentum, Bollinger bands, MACD.

Fundamental analysis — A very important feature indicating whether a stock might move up or down.

There are two features that can be used in fundamental analysis: 1) Analysing the company performance using 10-K and 10-Q reports, analysing ROE and P/E, etc (we will not use this), and 2) News — potentially news can indicate upcoming events that can potentially move the stock in certain direction.

We will read all daily news for Goldman Sachs and extract whether the total sentiment about Goldman Sachs on that day is positive, neutral, or negative (as a score from 0 to 1).

As many investors closely read the news and make investment decisions based (partially of course) on news, there is a somewhat high chance that if, say, the news for Goldman Sachs today are extremely positive the stock will surge tomorrow.

One crucial point, we will perform feature importance (meaning how indicative it is for the movement of GS) on absolutely every feature (including this one) later on and decide whether we will use it.

More on that later.

  For the purpose of creating accurate sentiment prediction, we will use Neural Language Processing (NLP).

We will use BERT — Google’s recently announced NLP approach for transfer learning for sentiment classification stock news sentiment extraction.

Fourier transforms — Along with the daily closing price, we will create Fourier transforms in order to generalize several long- and short-term trends.

Using these transforms we will eliminate a lot of noise (random walks) and create approximations of the real stock movement.

Having trend approximations can help the LSTM network pick its prediction trends more accurately.

Autoregressive Integrated Moving Average (ARIMA) — This was one of the most popular techniques for predicting future values of time series data (in the pre-neural networks ages).

Let’s add it and see if it comes off as an important predictive feature.

Stacked autoencoders — most of the aforementioned features (fundamental analysis, technical analysis, etc) were found by people after decades of research.

But maybe we have missed something.

Maybe there are hidden correlations that people cannot comprehend due to the enormous amount of data points, events, assets, charts, etc.

With stacked autoencoders (type of neural networks) we can use the power of computers and probably find new types of features that affect stock movements.

Even though we will not be able to understand these features in human language, we will use them in the GAN.

Deep Unsupervised learning for anomaly detection in options pricing.

We will use one more feature — for every day we will add the price for 90-days call option on Goldman Sachs stock.

Options pricing itself combines a lot of data.

The price for options contract depends on the future value of the stock (analysts try to also predict the price in order to come up with the most accurate price for the call option).

Using deep unsupervised learning (Self-organized Maps) we will try to spot anomalies in every day’s pricing.

Anomaly (such as a drastic change in pricing) might indicate an event that might be useful for the LSTM to learn the overall stock pattern.

Next, having so many features, we need to perform a couple of important steps:Perform statistical checks for the ‘quality’ of the data.

If the data we create is flawed, then no matter how sophisticated our algorithms are, the results will not be positive.

The checks include making sure the data does not suffer from heteroskedasticity, multicollinearity, or serial correlation.

Create feature importance.

If a feature (e.

g.

another stock or a technical indicator) has no explanatory power to the stock we want to predict, then there is no need for us to use it in the training of the neural nets.

We will using XGBoost (eXtreme Gradient Boosting), a type of boosted tree regression algorithms.

As a final step of our data preparation, we will also create Eigen portfolios using Principal Component Analysis (PCA) in order to reduce the dimensionality of the features created from the autoencoders.

print('There are {} number of days in the dataset.

'.

format(dataset_ex_df.

shape[0]))output >>> There are 2265 number of days in the dataset.

Let’s visualize the stock for the last nine years.

The dashed vertical line represents the separation between training and test data.

Goldman Sachs stock price (NYSE:GS)2.

1.

Correlated assetsAs explained earlier we will use other assets as features, not only GS.

So what other assets would affect GS’s stock movements?.Good understanding of the company, its lines of businesses, competitive landscape, dependencies, suppliers and client type, etc is very important for picking the right set of correlated assets:First are the companies similar to GS.

We will add JPMorgan Chase and Morgan Stanley, among others, to the dataset.

As an investment bank, Goldman Sachs depends on the global economy.

Bad or volatile economy means no M&As or IPOs, and possibly limited proprietary trading earnings.

That is why we will include global economy indices.

Also, we will include LIBOR (USD and GBP denominated) rate, as possibly shocks in the economy might be accounted for by analysts to set these rates, and other FI securities.

Daily volatility index (VIX) — for the reason described in the previous point.

Composite indices — such as NASDAQ and NYSE (from USA), FTSE100 (UK), Nikkei225 (Japan), Hang Seng and BSE Sensex (APAC) indices.

Currencies — global trade is many times reflected into how currencies move, ergo we’ll use a basket of currencies (such as USDJPY, GBPUSD, etc) as features.

Overall, we have 72 other assets in the dataset — daily price for every asset.

2.

2.

Technical indicatorsWe already covered what are technical indicators and why we use them so let’s jump straight to the code.

We will create technical indicators only for GS.

""" Function to create the technical indicators """def get_technical_indicators(dataset): # Create 7 and 21 days Moving Average dataset['ma7'] = dataset['price'].

rolling(window=7).

mean() dataset['ma21'] = dataset['price'].

rolling(window=21).

mean() # Create MACD dataset['26ema'] = pd.

ewma(dataset['price'], span=26) dataset['12ema'] = pd.

ewma(dataset['price'], span=12) dataset['MACD'] = (dataset['12ema']-dataset['26ema'])# Create Bollinger Bands dataset['20sd'] = pd.

stats.

moments.

rolling_std(dataset['price'],20) dataset['upper_band'] = dataset['ma21'] + (dataset['20sd']*2) dataset['lower_band'] = dataset['ma21'] – (dataset['20sd']*2) # Create Exponential moving average dataset['ema'] = dataset['price'].

ewm(com=0.

5).

mean() # Create Momentum dataset['momentum'] = dataset['price']-1 return datasetSo we have the technical indicators (including MACD, Bollinger bands, etc) for every trading day.

We have in total 12 technical indicators.

Let’s visualise the last 400 days for these indicators.

Technical indicators for Goldman Sachs — last 400 days.

2.

3.

Fundamental analysisFor fundamental analysis we will perform sentiment analysis on all daily news about GS.

Using sigmoid at the end, result will be between 0 and 1.

The closer the score is to 0 — the more negative the news is (closer to 1 indicates positive sentiment).

For each day, we will create the average daily score (as a number between 0 and 1) and add it as a feature.

2.

3.

1.

Bidirectional Embedding Representations from Transformers — BERTFor the purpose of classifying news as positive or negative (or neutral) we will use BERT, which is a pre-trained language representation.

Pre-trained BERT models are already available in MXNet/Gluon.

We just need to instantiated them and add two (arbitrary number) Dense layers, going to softmax – the score is from 0 to 1.

import bertGoing into the details of BERT and the NLP part is not in the scope of this notebook, but you have interest, do let me know — I will create a new repo only for BERT as it definitely is quite promising when it comes to language processing tasks.

2.

4.

Fourier transforms for trend analysisFourier transforms take a function and create a series of sine waves (with different amplitudes and frames).

When combined, these sine waves approximate the original function.

Mathematically speaking, the transforms look like this:We will use Fourier transforms to extract global and local trends in the GS stock, and to also denoise it a little.

So let’s see how it works.

""" Code to create the Fuorier trasfrom """data_FT = dataset_ex_df[['Date', 'GS']]close_fft = np.

fft.

fft(np.

asarray(data_FT['GS'].

tolist()))fft_df = pd.

DataFrame({'fft':close_fft})fft_df['absolute'] = fft_df['fft'].

apply(lambda x: np.

abs(x))fft_df['angle'] = fft_df['fft'].

apply(lambda x: np.

angle(x))plt.

figure(figsize=(14, 7), dpi=100)fft_list = np.

asarray(fft_df['fft'].

tolist())for num_ in [3, 6, 9, 100]: fft_list_m10= np.

copy(fft_list); fft_list_m10[num_:-num_]=0 plt.

plot(np.

fft.

ifft(fft_list_m10), label='Fourier transform with {} components'.

format(num_))plt.

plot(data_FT['GS'], label='Real')plt.

xlabel('Days')plt.

ylabel('USD')plt.

title('Figure 3: Goldman Sachs (close) stock prices & Fourier transforms')plt.

legend()plt.

show()Figure 3: Fourier transform of Goldman Sachs StockAs you see in Figure 3 the more components from the Fourier transform we use the closer the approximation function is to the real stock price (the 100 components transform is almost identical to the original function — the red and the purple lines almost overlap).

We use Fourier transforms for the purpose of extracting long- and short-term trends so we will use the transforms with 3, 6, and 9 components.

You can infer that the transform with 3 components serves as the long term trend.

Another technique used to denoise data is called wavelets.

Wavelets and Fourier transform gave similar results so we will only use Fourier transforms.

2.

5.

ARIMA as a featureARIMA is a technique for predicting time series data.

We will show how to use it, and althouth ARIMA will not serve as our final prediction, we will use it as a technique to denoise the stock a little and to (possibly) extract some new patters or features.

ARIMA on Goldman Sachs stockerror = mean_squared_error(test, predictions)print('Test MSE: %.

3f' % error)output >>> Test MSE: 10.

151As we can see from Figure 5 ARIMA gives a very good approximation of the real stock price.

We will use the predicted price through ARIMA as an input feature into the LSTM because, as we mentioned before, we want to capture as many features and patterns about Goldman Sachs as possible.

We go test MSE (mean squared error) of 10.

151, which by itself is not a bad result (considering we do have a lot of test data), but still, we will only use it as a feature in the LSTM.

2.

6.

Statistical checksEnsuring that the data has good quality is very important for our models.

In order to make sure our data is suitable we will perform a couple of simple checks in order to ensure that the results we achieve and observe are indeed real, rather than compromised due to the fact that the underlying data distribution suffers from fundamental errors.

2.

6.

1.

Heteroskedasticity, multicollinearity, serial correlationConditional Heteroskedasticity occurs when the error terms (the difference between a predicted value by a regression and the real value) are dependent on the data — for example, the error terms grow when the data point (along the x-axis) grow.

Multicollinearity is when error terms (also called residuals) depend on each other.

Serial correlation is when one data (feature) is a formula (or completely depends) of another feature.

We will not go into the code here as it is straightforward and our focus is more on the deep learning parts, but the data is qualitative.

2.

7.

Feature Engineeringprint('Total dataset has {} samples, and {} features.

'.

format(dataset_total_df.

shape[0], dataset_total_df.

shape[1]))output >>> Total dataset has 2265 samples, and 112 features.

So, after adding all types of data (the correlated assets, technical indicators, fundamental analysis, Fourier, and Arima) we have a total of 112 features for the 2,265 days (as mentioned before, however, only 1,585 days are for training data).

We will also have some more features generated from the autoencoders.

2.

7.

1.

Feature importance with XGBoostHaving so many features we have to consider whether all of them are really indicative of the direction GS stock will take.

For example, we included USD denominated LIBOR rates in the dataset because we think that changes in LIBOR might indicate changes in the economy, that, in turn, might indicate changes in the GS’s stock behavior.

But we need to test.

There are many ways to test feature importance, but the one we will apply uses XGBoost, because it gives one of the best results in both classification and regression problems.

Since the features dataset is quite large, for the purpose of the presentation here we’ll use only the technical indicators.

During the real features importance testing all selected features proved somewhat important so we won’t exclude anything when training the GAN.

regressor = xgb.

XGBRegressor(gamma=0.

0,n_estimators=150,base_score=0.

7,colsample_bytree=1,learning_rate=0.

05)xgbModel = regressor.

fit(X_train_FI,y_train_FI, eval_set = [(X_train_FI, y_train_FI), (X_test_FI, y_test_FI)], verbose=False)fig = plt.

figure(figsize=(8,8))plt.

xticks(rotation='vertical')plt.

bar([i for i in range(len(xgbModel.

feature_importances_))], xgbModel.

feature_importances_.

tolist(), tick_label=X_test_FI.

columns)plt.

title('Figure 6: Feature importance of the technical indicators.

')plt.

show()Feature importance using XGBoostNot surprisingly (for those with experience in stock trading) that MA7, MACD, and BB are among the important features.

I followed the same logic for performing feature importance over the whole dataset — just the training took longer and results were a little more difficult to read, as compared with just a handful of features.

2.

8.

Extracting high-level features with Stacked AutoencodersBefore we proceed to the autoencoders, we’ll explore an alternative activation function.

2.

8.

1.

Activation function — GELU (Gaussian Error)GELU — Gaussian Error Linear Unites was recently proposed — link.

In the paper the authors show several instances in which neural networks using GELU outperform networks using ReLU as an activation.

gelu is also used in BERT, the NLP approach we used for news sentiment analysis.

We will use GELU for the autoencoders.

Note: The cell below shows the logic behind the math of GELU.

It is not the actual implementation as an activation function.

I had to implement GELU inside MXNet.

If you follow the code and change act_type='relu' to act_type='gelu' it will not work, unless you change the implementation of MXNet.

Make a pull request on the whole project to access the MXNet implementation of GELU.

Let’s visualize GELU, ReLU, and LeakyReLU (the last one is mainly used in GANs – we also use it).

def gelu(x): return 0.

5 * x * (1 + math.

tanh(math.

sqrt(2 / math.

pi) * (x + 0.

044715 * math.

pow(x, 3))))def relu(x): return max(x, 0)def lrelu(x): return max(0.

01*x, x)plt.

figure(figsize=(15, 5))plt.

subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=.

5, hspace=None)ranges_ = (-10, 3, .

25)plt.

subplot(1, 2, 1)plt.

plot([i for i in np.

arange(*ranges_)], [relu(i) for i in np.

arange(*ranges_)], label='ReLU', marker='.

')plt.

plot([i for i in np.

arange(*ranges_)], [gelu(i) for i in np.

arange(*ranges_)], label='GELU')plt.

hlines(0, -10, 3, colors='gray', linestyles='–', label='0')plt.

title('Figure 7: GELU as an activation function for autoencoders')plt.

ylabel('f(x) for GELU and ReLU')plt.

xlabel('x')plt.

legend()plt.

subplot(1, 2, 2)plt.

plot([i for i in np.

arange(*ranges_)], [lrelu(i) for i in np.

arange(*ranges_)], label='Leaky ReLU')plt.

hlines(0, -10, 3, colors='gray', linestyles='–', label='0')plt.

ylabel('f(x) for Leaky ReLU')plt.

xlabel('x')plt.

title('Figure 8: LeakyReLU')plt.

legend()plt.

show()Comparison of GELU, ReLU, and LeakyReLUNote: In future versions of this notebook I will experiment using U-Net (link), and try to utilize the convolutional layer and extract (and create) even more features about the stock’s underlying movement patterns.

For now, we will just use a simple autoencoder made only from Dense layers.

Ok, back to the autoencoders, depicted below (the image is only schematic, it doesn’t represent the real number of layers, units, etc.

)Note: One thing that I will explore in a later version is removing the last layer in the decoder.

Normally, in autoencoders the number of encoders == number of decoders.

We want, however, to extract higher level features (rather than creating the same input), so we can skip the last layer in the decoder.

We achieve this creating the encoder and decoder with the same number of layers during the training, but when we create the output we use the layer next to the only one as it would contain the higher level features.

The full code for the autoencoders is available in the accompanying Github — link at top.

We created 112 more features from the autoencoder.

As we want to only have high level features (overall patterns) we will create an Eigen portfolio on the newly created 112 features using Principal Component Analysis (PCA).

This will reduce the dimension (number of columns) of the data.

The descriptive capability of the Eigen portfolio will be the same as the original 112 features.

Note Once again, this is purely experimental.

I am not 100% sure the described logic will hold.

As everything else in AI and deep learning, this is art and needs experiments.

3.

Generative Adversarial Network (GAN)Architecture of GANsHow GANs work?As mentioned before, the purpose of this notebook is not to explain in detail the math behind deep learning but to show its applications.

Of course, thorough and very solid understanding from the fundamentals down to the smallest details, in my opinion, is extremely imperative.

Hence, we will try to balance and give a high-level overview of how GANs work in order for the reader to fully understand the rationale behind using GANs in predicting stock price movements.

Feel free to skip this and the next section if you are experienced with GANs (and do check section 4.

2.

).

A GAN network consists of two models — a Generator (G) and Discriminator (D).

The steps in training a GAN are:The Generator is, using random data (noise denoted z), trying to ‘generate’ data indistinguishable of, or extremely close to, the real data.

Its purpose is to learn the distribution of the real data.

Randomly, real or generated data is fitted into the Discriminator, which acts as a classifier and tries to understand whether the data is coming from the Generator or is the real data.

D estimates the (distributions) probabilities of the incoming sample to the real dataset.

(more info on comparing two distributions in section 3.

2.

below).

Then, the losses from G and D are combined and propagated back through the generator.

Ergo, the generator’s loss depends on both the generator and the discriminator.

This is the step that helps the Generator learn about the real data distribution.

If the generator doesn’t do a good job at generating a realistic data (having the same distribution), the Discriminator’s work will be very easy to distinguish generated from real data sets.

Hence, the Discriminator’s loss will be very small.

Small discriminator loss will result in bigger generator loss (see the equation below for L(D,G)).

This makes creating the discriminator a bit tricky, because too good of a discriminator will always result in a huge generator loss, making the generator unable to learn.

The process goes on until the Discriminator can no longer distinguish generated from real data.

When combined together, D and G as sort of playing a minmax game (the Generator is trying to fool the Discriminator making it increase the probability for on fake examples, i.

e.

minimize ????z∼pz(z)[log(1−D(G(z)))].

The Discriminator wants to separate the data coming from the Generator, D(G(z)), by maximizing ????x∼pr(x)[logD(x)].

Having separated loss functions, however, it is not clear how both can converge together (that is why we use some advancements over the plain GANs, such as Wasserstein GAN).

Overall, the combined loss function looks like:Note: Really useful tips for training GANs can be found here.

Note: I will not include the complete code behind the GAN and the Reinforcement learning parts in this notebook — only the results from the execution (the cell outputs) will be shown.

Make a pull request or contact me for the code.

3.

1.

Why GAN for stock market predictionGenerative Adversarial Networks (GAN) have been recently used mainly in creating realistic images, paintings, and video clips.

There aren’t many applications of GANs being used for predicting time-series data as in our case.

The main idea, however, should be same — we want to predict future stock movements.

In the future, the pattern and behavior of GS’s stock should be more or less the same (unless it starts operating in a totally different way, or the economy drastically changes).

Hence, we want to ‘generate’ data for the future that will have similar (not absolutely the same, of course) distribution as the one we already have — the historical trading data.

So, in theory, it should work.

In our case, we will use LSTM as a time-series generator, and CNN as a discriminator.

3.

2.

Metropolis-Hastings GAN and Wasserstein GANNote: The next couple of sections assume some experience with GANs.

I.

Metropolis-Hastings GANA recent improvement over the traditional GANs came out from Uber’s engineering team and is called Metropolis-Hastings GAN (MHGAN).

The idea behind Uber’s approach is (as they state it) somewhat similar to another approach created by Google and University of California, Berkeley called Discriminator Rejection Sampling (DRS).

Basically, when we train GAN we use the Discriminator (D) for the sole purpose of better training the Generator (G).

Often, after training the GAN we do not use the D any more.

MHGAN and DRS, however, try to use D in order to choose samples generated by G that are close to the real data distribution (slight difference between is that MHGAN uses Markov Chain Monte Carlo (MCMC) for sampling).

MHGAN takes K samples generated from the G (created from independent noise inputs to the G — z0 to zK in the figure below).

Then it sequentially runs through the K outputs (x′0 to x′K) and following an acceptance rule (created from the Discriminator) decides whether to accept the current sample or keep the last accepted one.

The last kept output is the one considered the real output of G.

Note: MHGAN is originally implemented by Uber in pytorch.

I only transferred it into MXNet/Gluon.

Note: I will also upload it into Github sometime soon.

Figure 10: Visual representation of MHGAN (from the original Uber post).

II.

Wasserstein GANTraining GANs is quite difficult.

Models may never converge and mode collapse can easily happen.

We will use a modification of GAN called Wasserstein GAN — WGAN.

Again, we will not go into details, but the most notable points to make are:As we know the main goal behind GANs is for the Generator to start transforming random noise into some given data that we want to mimic.

Ergo, the idea of comparing the similarity between two distributions is very imperative in GANs.

The two most widely used such metrics are:KL divergence (Kullback–Leibler) — DKL(p‖q)=∫xp(x)logp(x)q(x)dx.

DKL is zero when p(x) is equal to q(x),JS Divergence (Jensen–Shannon).

JS divergence is bounded by 0 and 1, and, unlike KL divergence, is symmetric and smoother.

Significant success in GAN training was achieved when the loss was switched from KL to JS divergence.

WGAN uses Wasserstein distance, W(pr,pg)=1Ksup‖f‖L≤K????x∼pr[f(x)]−????x∼pg[f(x)] (where sup stands for supremum), as a loss function (also called Earth Mover’s distance, because it normally is interpreted as moving one pile of, say, sand to another one, both piles having different probability distributions, using minimum energy during the transformation).

Compared to KL and JS divergences, Wasserstein metric gives a smooth measure (without sudden jumps in divergence).

This makes it much more suitable for creating a stable learning process during the gradient descent.

Also, compared to KL and JS, Wasserstein distance is differentiable nearly everywhere.

As we know, during backpropagation, we differentiate the loss function in order to create the gradients, which in turn update the weights.

Therefore, having a differentiable loss function is quite important.

Hands down, this was the toughest part of this notebook.

Mixing WGAN and MHGAN took me three days.

3.

4.

The Generator — One layer RNN3.

4.

1.

LSTM or GRUAs mentioned before, the generator is a LSTM network a type of Recurrent Neural Network (RNN).

RNNs are used for time-series data because they keep track of all previous data points and can capture patterns developing through time.

Due to their nature, RNNs many time suffer from vanishing gradient — that is, the changes the weights receive during training become so small, that they don’t change, making the network unable to converge to a minimal loss (The opposite problem can also be observed at times — when gradients become too big.

This is called gradient exploding, but the solution to this is quite simple — clip gradients if they start exceeding some constant number, i.

e.

gradient clipping).

Two modifications tackle this problem — Gated Recurrent Unit (GRU) and Long-Short Term Memory (LSTM).

The biggest differences between the two are: 1) GRU has 2 gates (update and reset) and LSTM has 4 (update, input, forget, and output), 2) LSTM maintains an internal memory state, while GRU doesn’t, and 3) LSTM applies a nonlinearity (sigmoid) before the output gate, GRU doesn’t.

In most cases, LSTM and GRU give similar results in terms of accuracy but GRU is much less computational intensive, as GRU has much fewer trainable params.

LSTMs, however, and much more used.

Strictly speaking, the math behind the LSTM cell (the gates) is:The math behind the LSTM cellwhere ⊙is an element-wise multiplication operator, and, for all x=[x1,x2,…,xk]⊤∈R^k the two activation functions:,3.

4.

2.

The LSTM architectureThe LSTM architecture is very simple — one LSTM layer with 112 input units (as we have 112 features in the dataset) and 500 hidden units, and one Dense layer with 1 output – the price for every day.

The initializer is Xavier and we will use L1 loss (which is mean absolute error loss with L1 regularization – see section 3.

4.

5.

for more info on regularization).

Note — In the code you can see we use Adam (with learning rate of .

01) as an optimizer.

Don't pay too much attention on that now – there is a section specially dedicated to explain what hyperparameters we use (learning rate is excluded as we have learning rate scheduler – section 3.

4.

3.

) and how we optimize these hyperparameters – section 3.

6.

gan_num_features = dataset_total_df.

shape[1]sequence_length = 17class RNNModel(gluon.

Block): def __init__(self, num_embed, num_hidden, num_layers, bidirectional=False, sequence_length=sequence_length, **kwargs): super(RNNModel, self).

__init__(**kwargs) self.

num_hidden = num_hidden with self.

name_scope(): self.

rnn = rnn.

LSTM(num_hidden, num_layers, input_size=num_embed, bidirectional=bidirectional, layout='TNC') self.

decoder = nn.

Dense(1, in_units=num_hidden) def forward(self, inputs, hidden): output, hidden = self.

rnn(inputs, hidden) decoded = self.

decoder(output.

reshape((-1,self.

num_hidden))) return decoded, hidden def begin_state(self, *args, **kwargs): return self.

rnn.

begin_state(*args, **kwargs) lstm_model = RNNModel(num_embed=gan_num_features, num_hidden=500, num_layers=1)lstm_model.

collect_params().

initialize(mx.

init.

Xavier(), ctx=mx.

cpu())trainer = gluon.

Trainer(lstm_model.

collect_params(), 'adam', {'learning_rate': .

01})loss = gluon.

loss.

L1Loss()We will use 500 neurons in the LSTM layer and use Xavier initialization.

For regularization we’ll use L1.

Let’s see what’s inside the LSTM as printed by MXNet.

print(lstm_model)output >>>RNNModel( (rnn): LSTM(112 -> 500, TNC) (decoder): Dense(500 -> 1, linear))As we can see, the input of the LSTM are the 112 features (dataset_total_df.

shape[1]) which then go into 500 neurons in the LSTM layer, and then transformed to a single output – the stock price value.

The logic behind the LSTM is: we take 17 (sequence_length) days of data (again, the data being the stock price for GS stock every day + all the other feature for that day – correlated assets, sentiment, etc.

) and try to predict the 18th day.

Then we move the 17 days window with one day and again predict the 18th.

We iterate like this over the whole dataset (of course in batches).

In another post I will explore whether modification over the vanilla LSTM would be more beneficial, such as:using bidirectional LSTM layer — in theory, going backwards (from end of the data set towards the beginning) might somehow help the LSTM figure out the pattern of the stock movement.

using stacked RNN architecture — having not only one LSTM layer but 2 or more.

This, however, might be dangerous, as we might end up overfitting the model, as we don’t have a lot of data (we have just 1,585 day worth of data).

Exploring GRU — as already explained, GRUs’ cells are much simpler.

Adding attention vectors to the RNN.

3.

4.

3.

Learning rate schedulerOne of the most important hyperparameters is the learning rate.

Setting the learning rate for almost every optimizer (such as SGD, Adam, or RMSProp) is crucially important when training neural networks because it controls both the speed of convergence and the ultimate performance of the network.

One of the simplest learning rate strategies is to have a fixed learning rate throughout the training process.

Choosing a small learning rate allows the optimizer find good solutions, but this comes at the expense of limiting the initial speed of convergence.

Changing the learning rate over time can overcome this tradeoff.

Recent papers, such as this one, show the benefits of changing the global learning rate during training, in terms of both convergence and time.

Let’s plot the learning rates we’ll be using for each epoch.

schedule = CyclicalSchedule(TriangularSchedule, min_lr=0.

5, max_lr=2, cycle_length=500)iterations=1500plt.

plot([i+1 for i in range(iterations)],[schedule(i) for i in range(iterations)])plt.

title('Learning rate for each epoch')plt.

xlabel("Epoch")plt.

ylabel("Learning Rate")plt.

show()3.

4.

4.

How to prevent overfitting and the bias-variance trade-offHaving a lot of features and neural networks we need to make sure we prevent overfitting and be mindful of the total loss.

We use several techniques for preventing overfitting (not only in the LSTM, but also in the CNN and the auto-encoders):Ensuring data quality.

We already performed statistical checks and made sure the data doesn’t suffer from multicollinearity or serial autocorrelation.

Further we performed feature importance check on each feature.

Finally, the initial feature selection (e.

g.

selecting correlated assets, technical indicators, etc.

) was done with some domain knowledge about the mechanics behind the way stock markets work.

Regularization (or weights penalty).

The two most widely used regularization techniques are LASSO (L1) and Ridge (L2).

L1 adds the mean absolute error and L2 adds mean squared error to the loss.

Without going into too many mathematical details, the basic differences are: lasso regression (L1) does both variable selection and parameter shrinkage, whereas Ridge regression only does parameter shrinkage and end up including all the coefficients in the model.

In presence of correlated variables, ridge regression might be the preferred choice.

Also, ridge regression works best in situations where the least square estimates have higher variance.

Therefore, it depends on our model objective.

The impact of the two types of regularizations is quite different.

While they both penalize large weights, L1 regularization leads to a non-differentiable function at zero.

L2 regularization favors smaller weights, but L1 regularization favors weights that go to zero.

So, with L1 regularization you can end up with a sparse model — one with fewer parameters.

In both cases the parameters of the L1 and L2 regularized models “shrink”, but in the case of L1 regularization the shrinkage directly impacts the complexity (the number of parameters) of the model.

Precisely, ridge regression works best in situations where the least square estimates have higher variance.

L1 is more robust to outliers, is used when data is sparse, and creates feature importance.

We will use L1.

Dropout.

Dropout layers randomly remove nodes in the hidden layers.

Dense-sparse-dense training.

 — linkEarly stopping.

Another important consideration when building complex neural networks is the bias-variance trade-off.

Basically, the error we get when training nets is a function of the bias, the variance, and irreducible error — σ (error due to noise and randomness).

The simplest formula of the trade-off is: Error=bias^2+variance+σ.

Bias.

Bias measures how well a trained (on training dataset) algorithm can generalize on unseen data.

High bias (underfitting) meaning the model cannot work well on unseen data.

Variance.

Variance measures the sensitivity of the model to changes in the dataset.

High variance is the overfitting.

3.

5.

The Discriminator — One Dimentional CNN4.

5.

1.

Why CNN as a discriminator?We usually use CNNs for work related to images (classification, context extraction, etc).

They are very powerful at extracting features from features from features, etc.

For example, in an image of a dog, the first convolutional layer will detect edges, the second will start detecting circles, and the third will detect a nose.

In our case, data points form small trends, small trends form bigger, trends in turn form patterns.

CNNs’ ability to detect features can be used for extracting information about patterns in GS’s stock price movements.

Another reason for using CNN is that CNNs work well on spatial data — meaning data points that are closer to each other are more related to each other, than data points spread across.

This should hold true for time series data.

In our case each data point (for each feature) is for each consecutive day.

It is natural to assume that the closer two days are to each other, the more related they are to each other.

One thing to consider (although not covered in this work) is seasonality and how it might change (if at all) the work of the CNN.

Note: As many other parts in this notebook, using CNN for time series data is experimental.

We will inspect the results, without providing mathematical or other proofs.

And results might vary using different data, activation functions, etc.

3.

5.

1.

The CNN ArchitectureThe architecture of the proposed CNN model.

Without going through the full code, we’ll just show the CNN as printed by MXNet.

Sequential( (0): Conv1D(None -> 32, kernel_size=(5,), stride=(2,)) (1): LeakyReLU(0.

01) (2): Conv1D(None -> 64, kernel_size=(5,), stride=(2,)) (3): LeakyReLU(0.

01) (4): BatchNorm(axis=1, eps=1e-05, momentum=0.

9, fix_gamma=False, use_global_stats=False, in_channels=None) (5): Conv1D(None -> 128, kernel_size=(5,), stride=(2,)) (6): LeakyReLU(0.

01) (7): BatchNorm(axis=1, eps=1e-05, momentum=0.

9, fix_gamma=False, use_global_stats=False, in_channels=None) (8): Dense(None -> 220, linear) (9): BatchNorm(axis=1, eps=1e-05, momentum=0.

9, fix_gamma=False, use_global_stats=False, in_channels=None) (10): LeakyReLU(0.

01) (11): Dense(None -> 220, linear) (12): Activation(relu) (13): Dense(None -> 1, linear) )3.

6.

HyperparametersThe hyperparameters that we will track and optimize are:batch_size : batch size of the LSTM and CNNcnn_lr: the learningrate of the CNNstrides: the number of strides in the CNNlrelu_alpha: the alpha for the LeakyReLU in the GANbatchnorm_momentum: momentum for the batch normalisation in the CNNpadding: the padding in the CNNkernel_size':1: kernel size in the CNNdropout: dropout in the LSTMfilters: the initial number of filtersWe will train over 200 epochs.

4.

Hyperparameters optimisationAfter the GAN trains on the 200 epochs it will record the MAE (which is the error function in the LSTM, the GG) and pass it as a reward value to the Reinforcement learning that will decide whether to change the hyperparameters of keep training with the same set of hyperparameters.

As described later, this approach is strictly for experimenting with RL.

If the RL decides it will update the hyperparameters it will call Bayesian optimisation (discussed below) library that will give the next best expected set of the hyperparams4.

1.

Reinforcement learning for hyperparameters optimizationWhy do we use reinforcement learning in the hyperparameters optimization?.Stock markets change all the time.

Even if we manage to train our GAN and LSTM to create extremely accurate results, the results might only be valid for a certain period.

Meaning, we need to constantly optimise the whole process.

To optimize the process we can:Add or remove features (e.

g.

add new stocks or currencies that might be correlated)Improve our deep learning models.

One of the most important ways to improve the models is through the hyper parameters (listed in Section 5).

Once having found a certain set of hyperparameters we need to decide when to change them and when to use the already known set (exploration vs.

exploitation).

Also, stock market represents a continuous space that depends on millions parameters.

Note: The purpose of the whole reinforcement learning part of this notebook is more research oriented.

We will explore different RL approaches using the GAN as an environment.

There are many ways in which we can successfully perform hyperparameter optimization on our deep learning models without using RL.

But… why not.

Note: The next several sections assume you have some knowledge about RL — especially policy methods and Q-learning.

4.

1.

1.

Reinforcement Learning TheoryWithout explaining the basics of RL we will jump into the details of the specific approaches we implement here.

We will use model-free RL algorithms for the obvious reason that we do not know the whole environment, hence there is no defined model for how the environment works — if there was we wouldn’t need to predict stock prices movements — they will just follow the model.

We will use the two subdivisions of model-free RL — Policy optimization and Q-learning.

Q-learning — in Q-learning we learn the value of taking an action from a given state.

Q-value is the expected return after taking the action.

We will use Rainbow which is a combination of seven Q learning algorithms.

Policy Optimization — in policy optimization we learn the action to take from a given state.

(if we use methods like Actor/Critic) we also learn the value of being in a given state.

We will use Proximal Policy Optimization.

One crucial aspect of building a RL algorithm is accurately setting the reward.

It has to capture all aspects of the environment and the agent’s interaction with the environment.

We define the reward, R, as:Reward=2∗lossG+lossD+accuracyG,where lossG, accuracyG, and lossD are the Generator’s loss and accuracy, and Discriminator’s loss, respectively.

The environment is the GAN and the results of the LSTM training.

The action the different agents can take is how to change the hyperparameters of the GAN’s D and G nets.

4.

1.

1.

1.

RainbowWhat is Rainbow?Rainbow (link) is a Q learning based off-policy deep reinforcement learning algorithm combining seven algorithm together:DQN.

DQN is an extension of Q learning algorithm that uses a neural network to represent the Q value.

Similar to supervised (deep) learning, in DQN we train a neural network and try to minimize a loss function.

We train the network by randomly sampling transitions (state, action, reward).

The layers can be not only fully connected ones, but also convolutional, for example.

Double Q Learning.

Double QL handles a big problem in Q learning, namely the overestimation bias.

Prioritized replay.

In the vanilla DQN, all transitions are stored in a replay buffer and it uniformly samples this buffer.

However, not all transitions are equally beneficial during the learning phase (which also makes learning inefficient as more episodes are required).

Prioritized experience replay doesn’t sample uniformly, rather it uses a distribution that gives higher probability to samples that have had higher Q loss in previous iterations.

Dueling networks.

Dueling networks change the Q learning architecture a little by using two separate streams (i.

e.

having two different mini-neural networks).

One stream is for the value and one for the advantage.

Both of them share a convolutional encoder.

The tricky part is the merging of the streams — it uses a special aggregator (Wang et al.

2016).

(Advantage, formula is A(s,a)=Q(s,a)−V(s), generally speaking is a comparison of how good an action is compared to the average action for a specific state.

Advantages are sometimes used when a ‘wrong’ action cannot be penalized with negative reward.

So advantage will try to further reward good actions from the average actions.

)Multi-step learning.

The big difference behind Multi-step learning is that it calculates the Q-values using N-step returns (not only the return from the next step), which naturally should be more accurate.

Distributional RL.

Q learning uses average estimated Q-value as target value.

However, in many cases the Q-values might not be the same in different situations.

Distributional RL can directly learn (or approximate) the distribution of Q-values rather than averaging them.

Again, the math is much more complicated than that, but for us the benefit is more accurate sampling of the Q-values.

Noisy Nets.

Basic DQN implements a simple ????-greedy mechanism to do exploration.

This approach to exploration inefficient at times.

The way Noisy Nets approach this issue is by adding a noisy linear layer.

Over time, the network will learn how to ignore the noise (added as a noisy stream).

But this learning comes at different rates in different parts of the space, allowing for state exploration.

Note: Stay tuned — I will upload a MXNet/Gluon implementation on Rainbow to Github in early February 2019.

4.

1.

1.

2.

PPOProximal Policy Optimization (PPO) is a policy optimization model-free type of reinforcement learning.

It is much simpler to implement that other algorithms and gives very good results.

Why do we use PPO?.One of the advantages of PPO is that it directly learns the policy, rather than indirectly via the values (the way Q Learning uses Q-values to learn the policy).

It can work well in continuous action spaces, which is suitable in our use case and can learn (through mean and standard deviation) the distribution probabilities (if softmax is added as an output).

The problem of policy gradient methods is that they are extremely sensitive to the step size choice — if it is small the progress takes too long (most probably mainly due to the need of a second-order derivatives matrix); if it is large, there is a lot noise which significantly reduces the performance.

Input data is nonstationary due to the changes in the policy (also the distributions of the reward and observations change).

As compared to supervised learning, poorly chosen step can be much more devastating as it affects the whole distribution of next visits.

PPO can solve these issues.

What is more, compared to some other approaches, PPO:is much less complicated, for example compared to ACER, which requires additional code for keeping the off-policy correlations and also a replay buffer, or TRPO which has a constraint imposed on the surrogate objective function (the KL divergence between the old and the new policy).

This constraint is used to control the policy of changing too much — which might create instability.

PPO reduces the computation (created by the constraint) by utilizing a clipped (between [1- ????, 1+????]) surrogate objective function and modifying the objective function with a penalty for having too big of an update.

gives compatibility with algos that share parameters between value and policy function or auxiliary losses, as compared to TRPO (although PPO also have the gain of trust region PO).

Note: For the purpose of our exercise we won’t go too much into the research and optimization of RL approaches, PPO and the others included.

Rather, we will take what is available and try to fit into our process for hyperparameter optimization for our GAN, LSTM, and CNN models.

The code we will reuse and customize is created by OpenAI and is available here.

4.

1.

2.

Further work on Reinforcement learningSome ideas for further exploring reinforcement learning:One of the first things I will introduce next is using Augmented Random Search (link) as an alternative algorithm.

The authors of the algorithm (out of UC, Berkeley) have managed to achieve similar rewards results as other state of the art approaches, such as PPO, but on average 15 times faster.

Choosing a reward function is very important.

I stated the currently used reward function above, but I will try to play with different functions as an alternative.

Using Curiosity as an exploration policy.

Create multi-agent architecture as proposed by Berkeley’s AI Research team (BAIR) — link.

4.

2.

Bayesian optimizationInstead of the grid search, that can take a lot of time to find the best combination of hyperparameters, we will use Bayesian optimization.

The library that we’ll use is already implemented — link.

4.

2.

1.

Gaussian processGaussian process for Bayesian hyperparameter optimisation5.

The ResultFinally we will compare the output of the LSTM when the unseen (test) data is used as an input after different phases of the process.

Plot after the first epoch.

from utils import plot_predictionplot_prediction('Predicted and Real price – after first epoch.

')2.

Plot after 50 epochs.

plot_prediction('Predicted and Real price – after first 50 epochs.

')plot_prediction('Predicted and Real price – after first 200 epochs.

')The RL run for ten episodes (we define an eposide to be one full GAN training on the 200 epochs.

)plot_prediction('Final result.

')As a next step, I will try to take everything separately and provide some analysis on what worked and why.

Why did we receive these results and is it just by coinscidence?.So stay tuned.

6.

What is next?Next, I will try to create a RL environment for testing trading algorithms that decide when and how to trade.

The output from the GAN will be one of the parameters in the environment.

7.

DisclaimerThis notebook is entirely informative.

None of the content presented in this notebook constitutes a recommendation that any particular security, portfolio of securities, transaction or investment strategy is suitable for any specific person.

Futures, stocks and options trading involves substantial risk of loss and is not suitable for every investor.

The valuation of futures, stocks and options may fluctuate, and, as a result, clients may lose more than their original investment.

All trading strategies are used at your own risk.

There are many many more details to explore — in choosing data features, in choosing algorithms, in tuning the algos, etc.

This version of the notebook itself took me 2 weeks to finish.

I am sure there are many unaswered parts of the process.

So, any comments and suggestion — please do share.

I’d be happy to add and test any ideas in the current process.

Thanks for reading.

Best, Boris.. More details

Leave a Reply