Table,Create Table
TA,“CREATE TABLE TA
(
Id
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
Created
datetime NOT NULL,
Account
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
Enabled
bit(1) NOT NULL,
Deleted
bit(1) NOT NULL,
BS
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
RM
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
IsMaster
bit(1) NOT NULL,
Currency
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
ConnectionStatus
char(36) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
LastTick
datetime DEFAULT NULL,
LastHeartbeat
datetime DEFAULT NULL,
Drawdown
decimal(27,2) NOT NULL,
WarningLevel
decimal(27,2) NOT NULL,
SoftStopLevel
decimal(27,2) NOT NULL,
HardStopLevel
decimal(27,2) NOT NULL,
ClosedProfit
decimal(27,2) NOT NULL,
ProfitCalculationStartAmount
decimal(27,2) NOT NULL,
MaxProfit
decimal(27,2) NOT NULL,
OpenProfit
decimal(27,2) NOT NULL,
WarningNotified
bit(1) NOT NULL,
MaximumLeverage
decimal(27,2) NOT NULL,
MaximumLeveragePerTrade
decimal(27,2) NOT NULL,
SoftStopNotified
bit(1) NOT NULL,
HardStopNotified
bit(1) NOT NULL,
MaximumLeveragePerSymbol
decimal(27,2) NOT NULL,
MaximumDrawdownPerTrade
decimal(27,2) NOT NULL,
CopyStops
bit(1) NOT NULL,
CopyPendingOrders
bit(1) NOT NULL,
Login
int(11) DEFAULT NULL,
Password
varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
/*!90618 SHARD / KEY id
(Id
)
) /!90623 AUTOSTATS_CARDINALITY_MODE=PERIODIC, AUTOSTATS_HISTOGRAM_MODE=CREATE / /!90623 SQL_MODE=‘STRICT_ALL_TABLES’ */”