Username: Password:

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - donuts

Pages: [1]
1
General Discussion / Re: Webhook json
« on: June 04, 2025, 10:39:04 PM »
to all trying to get webhook running(for me a pine in the ass)

u can use this code below, its a json webhook code to use.

(copy and save as .js(use notepad++) you put in the /customStrategies)

in gunbot trade setting you pick custom 

find
core setting
Strategy filename
and put in the name you gave the file
ex customwebhook.js
and save


webhook alart format will buy long and sell long:

yourpass binance buy USDC-ETH 0.004 {{close}} 0

yourpass binance sell USDC-ETH 0.004 {{close}} 0


webhook format will buy short and sell short:

yourpass binanceFutures short USDC-ETH 0.004 {{close}} 0

yourpass binanceFutures close USDC-ETH -0.004 {{close}} 0



set your password in the tradeview menu in gunbot
webhook
"password"



use ngrok to sent your tradingview  alarms to gunbot
you need a pay version (free dont remeber setting)

To set up ngrok on Windows and use it on port 443, you need to download ngrok, extract the file, add it to your system's PATH, and then use the ngrok http 443 command to expose your local server.

Here's a more detailed breakdown:

Download and Install ngrok:
Visit the Ngrok website and download the correct version for Windows.
Extract the downloaded ZIP file.
Place the ngrok.exe file in a directory that is included in your system's PATH environment variable.
Connect your ngrok account:

Sign up for a free ngrok account if you haven't already.

Go to your dashboard and copy your authtoken.

Run the following command in your terminal to add the authtoken: ngrok config add-authtoken YOUR_AUTH_TOKEN.

Start your local server (if not already running):

Ensure your local web server is running and accessible on port 443.
Launch ngrok:

Open a new command prompt or PowerShell window.

Run the command ngrok http 443.             will look like this when pay and get your link   ngrok http --url=bla-blablabla-bla-free.app 443 so you use that when start it.

Ngrok will provide you with a public-facing URL, usually HTTPS.

Access your local server:

Open the provided ngrok URL in your browser.
Important notes:
HTTPS and Port 443:
Ngrok uses port 443 for HTTPS traffic, which is the standard port for secure web connections.
Authentication:
You can add basic authentication to your ngrok tunnel for added security.
Static Domains:
If you want to use a static domain, create one on your ngrok dashboard and use the --url flag when starting ngrok.







// === Gunbot Custom Webhook Strategy (Node 14 compatible) ===

if (!gb.data.pairLedger.customStratStore) {
  gb.data.pairLedger.customStratStore = {};
}
const store = gb.data.pairLedger.customStratStore;

// === TIMING GUARD ===
const enoughTimePassed = (() => {
  if (!store.timeCheck || typeof store.timeCheck !== "number") {
    store.timeCheck = Date.now();
    return false;
  }
  return Date.now() - store.timeCheck > 8000;
})();
const setTimestamp = () => store.timeCheck = Date.now();

if (!enoughTimePassed) return;

// === Read action from strategy config ===
const webhookAction = gb.data.pairLedger.whatstrat.CUSTOM_WEBHOOK_ACTION;
if (!webhookAction || typeof webhookAction !== 'object') return;

const action = webhookAction.action;
const amount = parseFloat(webhookAction.amount || 0);
const actionTime = parseInt(webhookAction.timestamp || 0);

if (Date.now() - actionTime > 15000) return;

const pair = gb.data.pairName;
const exchange = gb.data.exchangeName;
const base = gb.data.baseBalance;
const quote = gb.data.quoteBalance;
const bid = gb.data.bid;
const ask = gb.data.ask;
const limit = parseFloat(gb.data.pairLedger.whatstrat.TRADING_LIMIT || 0);
const buyAmount = limit / ask;
const sellAmount = base;

console.log(` Webhook: ${action} | Pair: ${pair} | Amt: ${amount}`);

const notify = (txt, color) => {
  gb.data.pairLedger.notifications = [
    { text: txt, variant: color, persist: false }
  ];
};

const bubble = (text, price, color) => {
  gb.data.pairLedger.customChartTargets = [
    {
      text: text,
      price: price,
      lineStyle: 0,
      lineWidth: 0,
      lineColor: '#000000',
      bodyBackgroundColor: '#000000',
      quantityBackgroundColor: color
    }
  ];
};

// === Action Handling ===
switch (action) {
//START LONG BUY WEBHOOK
  case 'LONG_BUY':
    if (!gb.data.gotBag && quote >= limit) {
      gb.method.buyMarket(buyAmount, pair, exchange);
      console.log(` Executed LONG BUY on ${pair}`);
      notify(` LONG BUY executed on ${pair}`, 'success');     
      bubble('BUY ✅', gb.data.candlesLow[gb.data.candlesLow.length - 1] - (gb.data.atr || 1), '#00ff00');


    // ✅ Draw green bubble below the bar
    gb.data.pairLedger.customChartTargets = [
      {
        text: 'LONG BUY WEBHOOK ',
      price: gb.data.candlesLow[gb.data.candleslow.length - 1] - (gb.data.atr || 1),
        // Option 1: fixed offset
        //price: gb.data.bid + 7,
        // Option 2 above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + 0.2
      // Option 2 below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] + 0.2   
        // Option 3 (preferred): just use ATR auto-spacing instead:
        // above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
      //below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] - (gb.data.atr || 1),

        lineStyle: 0, // hide the line
        lineWidth: 0,
        lineColor: '#00ff00', // doesn't matter since line is invisible
        bodyBackgroundColor: '#000',
      //Option 1: quantityBackgroundColor: '#00ff00'' // green dot
        //Option 2: quantityBackgroundColor: '#ff0000' // red dot
      quantityBackgroundColor: '#00ff00' // green dot color
      }
    ];

    setTimestamp(); // ✅ only once
  }
  break;
//END LONG BUY WEBHOOK   

//START LONG SELL WEBHOOK
  case 'LONG_SELL':
    if (gb.data.gotBag && base > 0) {
      gb.method.sellMarket(base, pair, exchange);
      console.log(` Executed LONG SELL on ${pair}`);
      notify(` LONG SELL executed on ${pair}`, 'success');
      bubble('SELL ', gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1), '#ff0000');

// ✅ Draw red bubble above the bar
    gb.data.pairLedger.customChartTargets = [
      {
        text: 'LONG SELL WEBHOOK ',
      price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
        // Option 1: fixed offset
        //price: gb.data.bid + 7,
        // Option 2 above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + 0.2
      // Option 2 below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] + 0.2   
        // Option 3 (preferred): just use ATR auto-spacing instead:
        // above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
      //below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] - (gb.data.atr || 1),

        lineStyle: 0, // hide the line
        lineWidth: 0,
        lineColor: '#00ff00', // doesn't matter since line is invisible
        bodyBackgroundColor: '#000',
      //Option 1: quantityBackgroundColor: '#ff0000' // red dot
        quantityBackgroundColor: '#ff0000' // red dot
      //Option 2: quantityBackgroundColor: '#00ff00' // green dot color
      }
    ];

     setTimestamp();
    }
    break;
//END LONG SELL WEBHOOK

//START SHORT BUY WEBHOOK
  case 'SHORT_SELL':
    if (!gb.data.gotBag && quote >= limit) {
      gb.method.sellMarket(buyAmount, pair, exchange);
      console.log(` Executed SHORT SELL on ${pair}`);
      notify(` SHORT SELL executed on ${pair}`, 'warning');
      bubble('SHORT ⬇️', gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1), '#ff00ff');


// ✅ Draw green bubble above the bar
    gb.data.pairLedger.customChartTargets = [
      {
        text: 'SHORT BUY WEBHOOK ',
        price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
        // Option 1: fixed offset
        //price: gb.data.bid + 7,
        // Option 2 above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + 0.2
      // Option 2 below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] + 0.2   
        // Option 3 (preferred): just use ATR auto-spacing instead:
        // above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
      //below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] - (gb.data.atr || 1),

        lineStyle: 0, // hide the line
        lineWidth: 0,
        lineColor: '#00ff00', // doesn't matter since line is invisible
        bodyBackgroundColor: '#000',
      //Option 1: quantityBackgroundColor: '#ff0000' // red dot
        quantityBackgroundColor: '#00ff00' // green dot color
      //Option 2: quantityBackgroundColor: '#00ff00' // green dot color
      }
    ];





      setTimestamp();
    }
    break;
//END SHORT BUY WEBHOOK   








//START SHORT SELL WEBHOOK
  case 'SHORT_BUY':
    if (gb.data.gotBag && base > 0) {
      gb.method.buyMarket(base, pair, exchange);
      console.log(` Executed SHORT COVER on ${pair}`);
      notify(` SHORT COVER executed on ${pair}`, 'info');
      bubble('COVER ', gb.data.candlesLow[gb.data.candlesLow.length - 1] - (gb.data.atr || 1), '#00ffff');

// ✅ Draw red bubble below the bar
    gb.data.pairLedger.customChartTargets = [
      {
        text: 'SHORT SELL WEBHOOK ',
        price: gb.data.candlesHigh[gb.data.candlesLow.length - 1] + (gb.data.atr || 1),
        // Option 1: fixed offset
        //price: gb.data.bid + 7,
        // Option 2 above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + 0.2
      // Option 2 below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] + 0.2   
        // Option 3 (preferred): just use ATR auto-spacing instead:
        // above price: gb.data.candlesHigh[gb.data.candlesHigh.length - 1] + (gb.data.atr || 1),
      //below price: gb.data.candlesLow[gb.data.candlesHigh.length - 1] - (gb.data.atr || 1),

        lineStyle: 0, // hide the line
        lineWidth: 0,
        lineColor: '#00ff00', // doesn't matter since line is invisible
        bodyBackgroundColor: '#000',
      //Option 1: quantityBackgroundColor: '#ff0000' // red dot
      //Option 2: quantityBackgroundColor: '#00ff00' // green dot color
        quantityBackgroundColor: '#ff0000' // red dot

      }
    ];




      setTimestamp();
    }
    break;
//END SHORT SELL WEBHOOK

  default:
    console.log(`⚠️ Unknown action: ${action}`);
}

2
General Discussion / Webhook json
« on: May 31, 2025, 11:37:33 PM »
Is there a json file for webhook. i can see or Edit in

Cant get it to work, i Try the gunbot chatgpt but when load it dont work
Just keep thinking.

I can get it to run in a standart gunbot setting like tssl its runing. But dont Need that ekstra in there, recive all my alarts from tradingview webhook.

Hope some one can help.



Need it to run tradingview webhook like


For long
webhookpassphrasecode buy COINBASE ETH-USDC 1000 0

webhookpassphrasecode sell COINBASE ETH-USDC 1000 0


For short

webhookpassphrasecode short COINBASE ETH-USDT  1000 0

webhookpassphrasecode close COINBASE ETH-USDT 1000 0

3
Technical Support & Development / Google shutting down for gmail
« on: March 04, 2022, 06:46:07 PM »
Hey all

Critical for All using alarm via email

Google is closing for third-party apps (email) and Only support 2 aut login and login with Google login from 1 may.2022

Email Alert from gunbot is running as 3way login is there coming a fix for that?? Im Running gunbot via tradingview e-mail alarms.

So need some way to fix that. Before may

4
Technical Support & Development / maker how to get it
« on: February 09, 2022, 09:45:46 PM »
maker how to enable that???

is it a buy mondul

or is it still token buy 24000
cant fin a thing about it

 :-\ :-\ :-\ :-\ >:( >:( :( :( :(

5
Technical Support & Development / Re: Install Gunbot in raspberry pi 4
« on: February 23, 2021, 05:30:11 PM »
You can run it on pi.
But it use the ram, get stock if you Not make a reboot got mine runing fairly (pi 4 4gb) whit a reboot every 48hour. So My ervice is to put a boot script on the pi.

6
Technical Support & Development / Re: need support on tssl
« on: February 23, 2021, 05:20:45 PM »
Nobody No What to do..
 Is it back to old version again. Is there a bug in the New release.

7
Technical Support & Development / need support on tssl
« on: February 09, 2021, 08:19:16 AM »
my tssl not selling

run the strategy on tradingview as buy and sell.....

and use gunbot as tssl sell also, but is not Selling cant see tssl is get aktivete, but no sell order sent
and can see were is go wrong in log

is it     "CANCEL_ONCAP": true,??????? there is fucking it op



it run well with the version gunbot 16-17 and it runs on a raspberrypi


were to look nada in log files

and this do what?????
can only fin info about SupRes_SPREAD and will it only work in margin market??????
and were do you set the Resistance level??



SupportResistance": false,
            "SupRes_ALLOW_DCA": true,
            "SupRes_SPREAD": 0.1,
            "SupRes_LVL_SPREAD": 1,
            "SupRes_MAX": 0,
            "SupRes_TIMER": 300,
            "SupResMinROE": 20,



EGIN TSSL PROCESS FOR SELL STRATEGY
************************************************************************************************
------------------------------------------------------------------------------------------------
2021/02/08 19:44:30: TrailingStop limit 44568.57755
------------------------------------------------------------------------------------------------
2021/02/08 19:44:30: Last price         42850.03   |  Target to sell:   42903.86777550
------------------------------------------------------------------------------------------------
2021/02/08 19:44:30: StopLoss limit     42903.86777550306
------------------------------------------------------------------------------------------------
Price falling down: activating StopLoss limit!!!
GB_21.0.0 USDC-BTC@binance Round #269038 2021/02/08 19:44:30


*********************************************************************************************************
settings for tssl:

gain 4
sell if fall more 3.85

"tssl": {
            "ADX_ENABLED": false,
            "ADX_LEVEL": 25,
            "ATRX": 0.5,
            "ATR_PERIOD": 14,
            "BTC_MONEY_FLOW": 35,
            "BTC_PND_PERIOD": 14,
            "BTC_PND_PROTECTION": false,
            "BUYLVL": 1,
            "BUYLVL1": 0.6,
            "BUYLVL2": 2,
            "BUYLVL3": 70,
            "BUY_ENABLED": false,
            "SINGLE_BUY": false,
            "BUY_LEVEL": 1,
            "BUY_METHOD": "tssl",
            "BUY_RANGE": 0.5,
            "CANDLES_LENGTH": 99,
            "COUNT_SELL": 9999,
            "DISPLACEMENT": 26,
            "DI_PERIOD": 14,
            "DOUBLE_CHECK_GAIN": false,
            "DOUBLE_UP": false,
            "DOUBLE_UP_CAP": 1,
            "DU_BUYDOWN": 2,
            "DU_CAP_COUNT": 0,
            "DU_METHOD": "HIGHBB",
            "EMA1": "1",
            "EMA2": "1",
            "EMASPREAD": false,
            "EMA_LENGTH": 50,
            "EMAx": 0.5,
            "FAST_SMA": 1,
            "FUNDS_RESERVE": 0,
            "GAIN": "4",
            "HIGH_BB": 0,
            "ICHIMOKU_PROTECTION": true,
            "IGNORE_TRADES_BEFORE": 0,
            "LIQUIDITY": false,
            "LIQUIDITY_TAKER": false,
            "LIQUIDITY_GAIN": false,
            "MAX_INVESTMENT": "1000",
            "NASH_LEAGUE": false,
            "NASH_TIMER": 300,
            "IS_MARGIN_STRAT": false,
            "KEEP_QUOTE": 0,
            "KIJUN_BUY": false,
            "KIJUN_CLOSE": false,
            "KIJUN_PERIOD": 26,
            "KIJUN_SELL": false,
            "KIJUN_STOP": false,
            "KUMO_BUY": false,
            "KUMO_CLOSE": false,
            "KUMO_SELL": false,
            "KUMO_SENTIMENTS": true,
            "KUMO_STOP": true,
            "LEVERAGE": 0,
            "LONG_LEVEL": 1,
            "LOW_BB": 0,
            "MACD_LONG": 20,
            "MACD_SHORT": 5,
            "MACD_SIGNAL": 10,
            "MAKER_FEES": false,
            "TAKER_FEES": false,
            "MARKET_BUY": true,
            "MARKET_BUYBACK": false,
            "MARKET_CLOSE": true,
            "MARKET_DU": true,
            "MARKET_FOK": true,
            "MARKET_RTBUY": false,
            "MARKET_RTSELL": true,
            "MARKET_SELL": true,
            "MARKET_STOP": true,
            "MEAN_REVERSION": false,
            "MFI_BUY_LEVEL": 30,
            "MFI_ENABLED": false,
            "MFI_LENGTH": 14,
            "MFI_SELL_LEVEL": 70,
            "MIN_VOLUME_TO_BUY": 25,
            "MIN_VOLUME_TO_SELL": 25,
            "NBA": 0,
            "PANIC_SELL": false,
            "PERIOD": 30,
            "PP_BUY": 0,
            "PP_SELL": 99999,
            "PRE_ORDER": false,
            "PRE_ORDER_GAP": 0,
            "RENKO_ATR": true,
            "RENKO_BRICK_SIZE": 0.0001,
            "RENKO_PERIOD": 15,
            "ROE": 1,
            "ROE_CLOSE": false,
            "ROE_LIMIT": 1,
            "ROE_TRAILING": false,
            "ROE_SCALPER": false,
            "ROE_SPREAD": 0,
            "RSI_BUY_ENABLED": false,
            "RSI_BUY_LEVEL": 30,
            "RSI_DU_BUY": 30,
            "RSI_LENGTH": 14,
            "RSI_METHOD": "oscillator",
            "RSI_SELL_ENABLED": false,
            "RSI_SELL_LEVEL": 70,
            "RT_BUY_LEVEL": 10,
            "RT_BUY_UP_LEVEL": 0,
            "RT_ENABLED": false,
            "RT_GAIN": 7,
            "RT_MAXBAG_PROTECTION": 10,
            "RT_ONCE": false,
            "RT_ONCE_AND_CONTINUE": false,
            "RT_SELL_UP": 0.3,
            "RT_TREND_ENABLED": false,
            "SELLLVL": 1,
            "SELLLVL1": 0.6,
            "SELLLVL2": 2,
            "SELLLVL3": 70,
            "SELL_ENABLED": true,
            "SELL_METHOD": "tssl",
            "SELL_RANGE": "3.85",
            "SENKOUSPAN_PERIOD": 52,
            "SHORT_LEVEL": 1,
            "SLOW_SMA": 2,
            "SLOW_STOCH_K": 3,
            "SL_DISABLE_BUY": false,
            "SMAPERIOD": 50,
            "STDV": 2,
            "STOCHRSI_BUY_LEVEL": 0.2,
            "STOCHRSI_ENABLED": false,
            "STOCHRSI_LENGTH": 14,
            "STOCHRSI_METHOD": "oscillator",
            "STOCHRSI_SELL_LEVEL": 0.8,
            "STOCH_BUY_LEVEL": 20,
            "STOCH_D": 3,
            "STOCH_ENABLED": false,
            "STOCH_K": 14,
            "STOCH_METHOD": "oscillator",
            "STOCH_SELL_LEVEL": 80,
            "STOP_LIMIT": "7.5",
            "TAKE_BUY": false,
            "TAKE_PROFIT": false,
            "TBUY_RANGE": 0.5,
            "TENKAN_BUY": true,
            "TENKAN_CLOSE": true,
            "TENKAN_PERIOD": 9,
            "TENKAN_SELL": true,
            "TENKAN_STOP": false,
            "TL_ALLIN": true,
            "TL_PERC": "100",
            "TM_RT_SELL": false,
            "TP_PROFIT_ONLY": false,
            "TP_RANGE": 7,
            "TRADES_TIMEOUT": 0,
            "TRADING_LIMIT": "3000",
            "TRAIL_ME_BUY": false,
            "TRAIL_ME_BUY_RANGE": 0.5,
            "TRAIL_ME_DU": false,
            "TRAIL_ME_RT": false,
            "TRAIL_ME_RT_SELL_RANGE": 0.5,
            "TRAIL_ME_SELL": false,
            "TRAIL_ME_SELL_RANGE": 0.5,
            "TSSL_TARGET_ONLY": true,
            "USE_RENKO": false,
            "XTREND_ENABLED": false,
            "STOP_BUY": 0,
            "STOP_SELL": 0,
            "PND": false,
            "PND_PROTECTION": 1.5,
            "SupportResistance": false,
            "SupRes_ALLOW_DCA": true,
            "SupRes_SPREAD": 0.1,
            "SupRes_LVL_SPREAD": 1,
            "SupRes_MAX": 0,
            "SupRes_TIMER": 300,
            "SupResMinROE": 20,
            "SL_DISABLE_SELL": false



"CANCEL_ORDERS_ENABLED": true,
        "CANCEL_ORDERS_CYCLE_CAP": 180,
        "CANCEL_ONCAP": true,
        "RESERVE_PILE_UP": false,
        "interval_ticker_update": 30000,
        "period_storage_ticker": 1000,
        "timeout_buy": 5000,
        "timeout_sell": 5000,
        "TRADING_LIMIT_BUY_PYRAMID": 50,
        "TV_GAIN": "0",
        "TV_TRADING_LIMIT_BUY": "2000",
        "TV_TRADING_LIMIT_BUY_PYRAMID": 0,
        "TV_PYRAMID": false,
        "TV_TRADING_LIMIT_SELL": 25,
        "TV_PROTECTION": false,
        "TV_MARKET_ORDERS": true,
        "TV_TRADING_LIMIT_CAP": "2500",
        "TV_STOPLOSS_PERCENTAGE": "7.5",
        "TV_TRADING_LIMIT_ALLIN": true,
        "TV_MVTS": 25,
        "TV_GB": true,
        "TV_LEVERAGE": 0.01,
        "TV_LENDING": 0.02,
        "TV_CLOSE_ALL": true,
        "RETRY_TV_ORDER": false,
        "VERBOSE": true,
        "WATCH_MODE": false,
        "MULTIPLE_BASE": false,
        "withdraw_address": "YOURBTCADDRESSHERE",
        "withdraw_threshold": 0.5,
        "TELEGRAM_ENABLED": false,
        "TG_ORDER_TIMEOUT": 0,
        "TG_TEST": false,
        "TG_PL_ONLY": false,

8
Beginners & Help / Tradingview stop signal
« on: May 11, 2020, 08:05:56 AM »
Need a littel help
Got some (5 up 5 down) indicator in tradingview
But some times it dont sell/buy the frist time.
And 2 indicator trick 2-5 min later Will it stil keep the first sell/buy order. And not take the New signal.
How do you do that?
Is it fok sell/buy you use and Will that work with tradingview signal?
Fok  work how??
Can see there is a cancel cyklus, you Can set in bot to.

9
Technical Support & Development / Re: Question about tradingview add-on
« on: February 03, 2020, 07:54:26 PM »
just set one up with long buy/sell in the pair you what to trade and add alarm to them
and set one more up with short short sell one the same pair and add alarm to them.


https://imgur.com/a/HNvXuoV

and if you want gunbot to buy more at some procent i think you can set a up  Dollar Cost Avg (DCA)

10
Technical Support & Development / Re: margin trades on binance yes/no
« on: February 03, 2020, 11:44:49 AM »
Oki. Will pop a ballon 🎈 and buy cake, when it relaese
Can you say when it Will Come. Will it be this year.

11
Technical Support & Development / margin trades on binance yes/no
« on: January 11, 2020, 01:51:19 PM »
cant gunbot do margin trades on binance yet?????

just cant get tradingview to send the right messege. to do a short and then run as a short tssl roe

and if not  :-\ :-\

will it come in future release, is there any work in progres on that ???

12
Technical Support & Development / Re: bot not start binance windows
« on: January 02, 2020, 05:19:04 PM »
well got it running. on binace now

but got this when try to make a short or buy

emailParsed { timestamp: 1577984386595,
  type: 'short',
  exchange: 'binance',
  pair: 'USDC-BTC',
  tl: 'USDC',
  price: '0.001' }

2020/01/02 17:59:46: Checking prices...

2020/01/02 17:59:47: Received a margin-sell order...
TypeError: undefined is not a function
    at module.exports.Market.marginsellTV.Promise.checkSecurity.then.resp (C:\snapshot\gbparis\ctx-wrapper.js:0:0)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)


is with tradingview email alarm:

is this the right format for buy:
BUY_BINANCE_USDC-BTC_BTC_0.001       

or what im i missing :-[ :-[ :-[ :-[







13
Technical Support & Development / bot not start binance windows
« on: December 29, 2019, 02:14:51 PM »
cant start bot got this in windows 10 64bit

what is that???????


{ AuthenticationError: binance {"code":-1022,"msg":"Signature for this request is not valid."}
    at binance.throwExactlyMatchedException (C:\snapshot\gbparis\node_modules\ccxt\js\base\Exchange.js:515:19)
    at binance.handleErrors (C:\snapshot\gbparis\node_modules\ccxt\js\binance.js:1706:26)
    at module.exports.handleRestResponse.response.text.then (C:\snapshot\gbparis\node_modules\ccxt\js\base\Exchange.js:610:18)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)
  constructor: [Function: AuthenticationError],
  name: 'AuthenticationError' }
Fetching my trades again.{"name":"AuthenticationError"}
Error
    at errorHandler (C:\snapshot\gbparis\ctx\js\binance.js:0:0)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)
Error: {}
    at errorHandler (C:\snapshot\gbparis\ctx-wrapper.js:0:0)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)
Unable to connect to binance

Pages: [1]