NEO-TRADE / js /state.js
diamond-in's picture
Update js/state.js
efaefd9 verified
raw
history blame contribute delete
300 Bytes
export const state = {
symbol: 'BTC', // e.g. 'BTC'
exchange: 'BINANCE', // 'BINANCE' or 'COINBASE'
candles: [], // History Data
socket: null, // Active Connection
isReplay: false, // Replay Mode
replayIndex: 0,
replayTimer: null
};