Member-only story

Building a simple Trading Bot using Python, TradingView and CoinDCX APIs

Sairav Dev
7 min readJul 20, 2021

--

Photo by Tech Daily on Unsplash

Below is all you need to kickstart with your own trading bot. We will build the bot using Python, TradingView for signals , and CoinDCX(an Indian crypto exchange) to place orders.

The functionality of our trading app can be summarized as follows:-

  1. The application will get alerts from TradingView regarding the signal(s) of your choice of strategy. For example MA, EMA, MACD, Supertrend etc. These alerts will mention whether the Indictor is positive for a buy or a sell. This logic we’ll handle at the TradingView end.
  2. The app will simply store the signals and based on what combination of criteria (if ema says buy and supertrend is also buy, let's BUY), we’ll place an order from the application using CoinDCX APIs.
  3. The same applies while closing the order, we’ll get signals from the TradingView platform, and based on the indicators, we will close the trade.

We’ll be breaking down this into the following parts:-

  1. Overview
  2. TradingView indicator and alerts
  3. Bot/Application coding with CoinDCX APIs, deployed on PythonAnywhere to keep it running 24x7.

1 . Overview :

Consider the following chart, we are gonna use just Supertrend strategy for the simplicity of the tutorial. MATIC/USDT Binance, since CoinDCX uses binance as the source, we are gonna look at the binance chart. You may use another exchange instead of CoinDCX and look at their chart respectively.

Supertrend Strategy for TradingBot Example
MATIC/USDT — Binance — 5m chart with Supertrend strategy

Now, according to Supertrend , when the buy signal is generated ( at the green candle close ~1.13275), we will trigger an alert for our app and let it know that uptrend has started , it’s time to buy some MATIC/USDT . And when this buy becomes sell / downtrend(at the close of the candle ~1.157), or when the stoploss hits (having a stoploss is very important as part of managing your risks of trades , you can set that value in your app) , we sell . That simple .

2 . TradingView indicator and alerts :

--

--

Sairav Dev
Sairav Dev

Written by Sairav Dev

Software Developer | Music Enthusiast | Trader

Responses (2)

Write a response