API SETTINGS

This page explains how the established signal can be routed to bambamsignals.

After entering all the settings, the following screen will appear.

As you can see, we have 1 signal installed and now we will connect our algorithm to this signal.

SELL SIGNALS

API SETTINGS

We press the API setting and we get the json and webhook url address we need to use.

API

API SETTINGS

In this section you can find the codes we will use and copy, we will modify them according to our own settings.

1 - API URL :

Bambamsignals uses the corresponding URL as standard.

Api Url : https://api.bambamsignals.com/index.php

Signals coming from outside have to be directed to this web address.

API URL

2 - JSON Settings - Before :

What you see below is an example and a standard json file. We will change some of the values here according to ourselves.

 {
  "api_key": "559269d9d419646fe9b20f0238e58cbc",
  "api_id": "115",
  "signal_id": "431",
  "coin": "BTC",
  "pair": "USDT",
  "interval": "1m",
  "exp": "Explanation About The Signal"
}

The values in the red box are the values we will change.

BEFORE

" coin" : "BTC"

This section specifies the symbol we will use for the coin to send the signal. If you are going to create the signal in BTC you should write BTC here, if the signal is in another coin ADA or MINA you should write ADA or MINA here.

"pair" : "USDT"

in this section we will use USDT as we will generate the signal in USDT. If you want, you can adjust your algorithm according to the pair you set up, this can be ETH or another one.

"interval" : "1m"

Here the system is set to 1m by default, we change this part to "1h" since our algorithm works in "1h", that is "1 hour". "

EXP : interval" : "1h"

"exp" : "Explanation About The Signal"

Here we will make a note in the incoming signal. The notes we make here will be displayed under the signals that users forward to the telegram.

Example : "This is an EMA signal and works only for BTC/USDT and is a Buy directional signal". etc...

2 - JSON Settings - After :

 {
  "api_key": "559269d9d419646fe9b20f0238e58cbc",
  "api_id": "115",
  "signal_id": "431",
  "coin": "BTC",
  "pair": "USDT",
  "interval": "1h",
  "exp": "This is an EMA signal and works only for BTC/USDT and is a Buy directional signal"
}

As you can see below, we have indicated the changes we have made. Now we will use them as an example alarm in tradingview, one of the most used signaling tools.

API BEFORE & AFTER

TRADINGVIEW ALARM SET

Below you can see an image we got from tradingview. Here we have set up a buy signal at the intersection of ema 21 and ema 50. and we want to direct the signals generated here to bambamsignals.

TRADING VIEW

1 - TRADING VIEW ALARM SETTINGS

Alert Name :

We choose a name to match the alarm.

Message :

we copy the JSON file we have prepared in this section.

message

By pasting our JSON file we have prepared here, we go to the NOTIFICATION section where we will enter the URL for WEBHOOK.

2 - NOTIFICATION

When this section is opened, it will come this way by default. The only feature we will use here is the webhook url.

webhook url

After entering these settings, you direct the signal to my bamboo by pressing the save button. everything is that simple

Last updated