Given how volatile Bitcoin price is, an automated alerting system can be valuable for preserving our attention and sanity. We can pay attention to Bitcoin only when the price action is interesting. Momentum, that is buying an asset that has done well in the past, has been one of the most persistently effective trading strategies — see Clif Asness: “Value and Momentum Everywhere” and Tzouvanas (2019).

Grace Ma
Grace is a senior data analyst within the analytics team at InfluxData, where she performs data analysis to support the growth, product and sales team. Prior to InfluxData, she worked as a quantitative finance analyst building forecasting models for equities, foreign exchange and macroeconomic variables.

We can use InfluxDB to help us calculate a simple momentum signal and alert us when this signal is pointing to “buy” or “sell.”

For this tutorial, I pick a common momentum signal — the short-term/long-term crossover. The signal will be when the one-day moving average Bitcoin price (1-day MA) crosses the five-day moving average (5-day MA). When the 1-day MA crosses the 5-day MA from below, it is a buy signal. When it crosses from above, it is a sell signal.

In terms of steps, we need to first use Telegraf to get the Bitcoin price from the CoinMarketCap API and store into InfluxDB, then use Flux, InfluxDB’s custom language, to calculate the momentum signal using stored Bitcoin prices, then set alerts based on the values of the momentum signal.

Initial Setup

1. Log in to InfluxDB Cloud application (or create an account here).

2. Create a bucket, which is the dataset unit, called crypto_px. We will store the Bitcoin price in this bucket.

3. Create an Influx API token.

4. Install Telegraf on your machine. [Instructions]

5. Create a CoinMarketCap API token. [Instructions]

Pull Bitcoin Price Using Telegraf

Telegraf is InfluxDB’s agent to gather data from various different sources, including APIs. It runs locally on our collection machine (our laptop) via the terminal and sends the data into the central InfluxDB bucket.

Now we can set up our Telegraf agent, which in this case will collect HTTP data and store the data in the crypto_px bucket we just created. [Go to Load Data > Telegraf > Create Configurations]


Once you open the Telegraf HTTP template, it can look somewhat daunting. But we actually just need to customize a few sections.

First, in the [agent] section, we want to specify at what interval Telegraf calls on the API. Here, the interval is set to “5m” or 5 minutes.

Next, we need to change the [[inputs.http]] section to point to the right CoinMarketCap API address.

Read More:   Happy Developers Produce More Secure Software – InApps Technology 2022

Explanation of Input Configurations:

urls

The format of the CoinMarketCap API url is:

https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?CMC_PRO_API_KEY=

CMC_PRO_API_KEY must be filled with your CoinMarketCap API token.
The limit variable is how many crypto assets to pull prices for. Here, we pull the top 10 crypto coins, which will include Bitcoin.

json_query

Since the CoinMarketCap API returns a nested JSON object, we can use the json_query field to specify and query the JSON key where the crypto price data actually sits. For this JSON object, the key is called “data.”

tag_keys

We can specify tags, similar in concept to a categorical variable. Here, it is useful to have the crypto asset symbol as a tag so that we can filter to specific crypto assets, such as “BTC.”

The CoinMarketCap API returns JSON, so we change the data_format to “json.”

Since InfluxDB is a time-series database, we must have a time-series column. For this, the json_time_key is called “last_updated” and its json_time_format is in “RF3339Nano.” (You can look up your time’s format here.)

Start Running the Telegraf Agent

Once we have the Telegraf config file properly set up, we can start running Telegraf on our collection machine (in this case, my laptop) using Terminal.

We can run the Telegraf config file from the cloud or a local copy. In this case, I downloaded the Telegraf config file and saved it as “coinmarketcap_api.conf.”

To run Telegraf, type this command into the terminal:

— config tells where the config file is located.

Note: You can test whether your config file is correct by running it only once:

telegraf --once --config [YOUR_CONFIG_FOLDER]/coinmarketcap_api.conf

Check That Our Data Has Been Stored

Now that Telegraf is working, we should be capturing Bitcoin prices at five-minute intervals and storing that data in our crypto_px bucket. We can check by visualizing the data in the Notebooks tab. (Note that the Notebooks function, like Jupyter Notebooks, is a useful place to store and test Flux code).

We use Flux to query our crypto_px bucket. The price is stored in the _field “quote_USD_price” and we filter our symbol tag to “BTC” to retrieve the Bitcoin price.

Calculate the Momentum Signal Using Flux

The Flux language allows us to do many basic time-series transformations. To calculate our momentum signal (1-Day / 5-Day moving average crossover), we need to calculate moving averages, then take the difference between them.

To quickly visualize what the moving averages will look like, we can add them to our previous query, the one to create the graph.

To graph the moving averages, we use the timedMovingAverage function. We are calculating the one-day average (period: 1d) at an interval of one hour (every: 1h).

Read More:   Update How the Neo4J Graph Database Helped Decipher the Panama Papers

We can use the yield function to name this calculated line PX_MA1D on the graph.

Next, to save these moving averages as new _fields requires a bit more Flux code.

First, we can create another bucket called px_transformed to save the new calculated moving averages.

Then we must save our Flux calculations as a recurring task. A task computes these Flux calculations and saves the results to our px_transformed bucket on a regular interval, say every five minutes.

We go to Tasks in the Cloud application’s sidebar and schedule a new task, and call it “Crypto PX Moving Average Calculations.”

We will schedule it to run every five minutes with a 20-second offset (task starts at mm:20s each time). It starts at 20 seconds at whatever minute the task starts.

Then we put our Flux transformations into the Task code panel.

Explanation of Flux Code

We have to save two new variables to the same dataset and then take their difference. To do so, we need the pivot function, which pivots each _field into a new column.

We create two new moving average fields, called “PX_MA1d” and “PX_MA5d,” and turn them into columns through the pivot function.

Then we merge these two columns into a master table using the join function.

Then we can do operations on two columns in our dataset using the map function. Here, we create a new column called “Diff_1d_5d” by subtracting “PX_MA1d” and “PX_MA5d”.

Finally, the to function saves the output to the specified bucket.

Here is the resulting new px_transformed as a table:

Read More:   Must-Haves of An Application Development Strategy in 2022

And to verify that the task was run correctly, we can graph our momentum signal ( _field “Diff_1d_5d”).

Set Up Alerts for When 1-D / 5-D Crossovers Are Zero 

Our task has now created the 1-D / 5-D moving average signal as the _field “Diff_1d_5d,” which is saved in the px_transformed bucket. The final step is to alert us when this signal for Bitcoin is zero, which will be the buy or sell signal.

Alerting is basically a specialized task. Notebooks has the alert templates in Flux to help us set up alerts.

But first, we need to set up our notification channel. Within the free accounts, the only option is to notify a Slack channel using Slack’s webhook feature. (You can upgrade to alert to other channels, such as email.)

Here are the setup steps: [Tutorial offered by Slack is here.]

  1. Create a Slack app. I called mine “Crypto Alerts”.
  2. Activate incoming webhooks on the app.
  3. Click on “Add New Webhook to Workspace” to generate a webhook url.

A webhook url should look like this: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX

Now we will create an alert (as mentioned, a specialized task) to post alert messages to the notification endpoint (our Slack channel) we had just created.

Going back to the Notebook we had been working on, we add some modifications for alerting:

The first modification is that the time range to query should be changed to pull in data in the last 15 minutes to capture only the latest data points. We then interpolate the data to smooth out the jumps in data. Now we can add a new panel for alert to the query we just built.

Add Another Panel > Alert

This opens up the alert template:

We will set this alert task to check whether the _field “Diff_1d_5d” is between -1 to 1 — when it is close to 0. We are checking if the 1-Day moving average crosses the 5-Day moving average. [Note: Since “Diff_1d_5d” will rarely equal exactly 0, checking for a range is more robust.]

The alert will check every five minutes with an offset of 50s (after our Crypto PX moving average calculations task has run).

Then put in the Slack webhook url you had generated, as well as the Slack channel name that the webhook points to. You might need to create a new Slack channel for this. I called mine “BTC_alert_channel.”

You can test this channel by clicking “Test Endpoint.”

You can modify the message format. Here it is:

“Buy/Sell Signal for ${r.symbol} triggered at ${time(v: r._source_timestamp)}!”

Finally, export the alert.

And now we should be set up for automatic alerts on Slack when it is time to buy or sell Bitcoin!

Slack Alert Message:

Further Ideas

And of course, this is just the beginning. It would be very simple to extend the current setup to more coins, such as Ethereum or Solana. It is also possible to build more sophisticated trading rules for Bitcoin using Flux, such as RSI (relative strength index), volatility-adjusted momentum (dividing by price standard deviation), mean-reversion indicators (buying when price is low) or many other time-series forecasting methods. And finally, we can set up alerts for stocks by pulling in stock prices using other APIs (Yahoo Finance, for example).

Featured image via Pixabay