New indicators added: Donchian Channels, Williams Alligator and the Smoothed Simple Moving Average

April 24, 2024

We are happy to announce that we have just added 3 of the recently most requested indicators. Starting today, you can start querying:

These should be a welcome addition to our existing 200+ indicators. Be sure to take a look at their documentation as they are all adjustable using optional parameters.

Here’s a sample bulk query example that you can use to get all 3 indicators in one API request:

{
"secret": "APIKEY",
"construct": {
"exchange": "binance",
"symbol": "BTC/USDT",
"interval": "1d",
"indicators": [
{
"indicator": "donchianchannels"
},
{
"indicator": "smma",
"period": 7
},
{
"indicator": "williamsalligator",
"period": 20
}
]
}
}

Any other technical indicators you’d like us to add next? Be sure to let us know.