Конфигурация системы

7.15.4

Общая конфигурация сервера находится в файле system.json и имеет древовидную структуру JSON5

Для проверки json-файла после редактирования можно использовать сайт https://jsoneditoronline.org

Пример конфигурации

{
  "telegram": true,
  "gmttime": 0,
  "httpport": 80,
  "modinittimeout":2000,
  "forceorderparamsreport": false,
  "liveprice": true,
  "skipnonexistmodules": true,
  "singleusermode": true,
  "orderrequestattempts": 5,
  "skipprofilecheck": true,
  "balanceticker":{
    "binance":false,
    "bybit":true
  },
  "activemarkets": {
    "binance": true,
    "binancemar": true,
    "binancefru": true,
    "binancefro": true,
    "bybit": true,
    "bybitfu": true,
    "bybitfi": true,
    "bybitct": true
  },
  "commonprofileoptions":{
    "server.servername": "Test server",
    "server.mutetelegramwelcome": false,
    "binancefru.showfundinginfo": false,
    "binance.showbalanceupdate": false,
    "server.gmttime": 3,
    "server.debug": true,
    "server.useiptransport": false,
    "server.iptransport": "127.127.127.127,8.8.8.8"
  },
  "signal": {
    "active": true,
    "url": "/localhook",
    "user": "admin",
    "password":"admin"
  },
  "commandinterface": {
    "active": true,
    "url": "/localgui"
  },
  "errortelegram": {
    "active": false,
    "teleid": "123123123",
    "teletoken": "1011320289:BBE0KocjQXZE-gACNbRTie3xIXBmN2-2ie8"
  },
  "coremodules": {
    "trade.ignoreanswerfields":"",
    "trade.pipeline": false,
    "trade.pipelinetimer": 5000,
    "trade.pipelineconsoleresult": true,
    "socketwatcher.debug": false,
    "socketwatcher.timer": 900000,
    "systools.deploypassword":"antares"
  }
}

Параметры

"telegram": true

Глобально включает или отключает уведомления в телеграм

"gmttime": 0,

Смещение времени от GMT для лога и уведомлений

"httpport": 80,

Порт на котором будет запущен сервер

"modinittimeout":2000,

Таймаут после которого происходит первичная инициализация модуля при старте сервера

 "forceorderparamsreport": false,

Принудительный вывод всех параметров ордера (в тч скрытых) в телеграм после каждой операции

Last updated