6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
|
|
import fs from 'fs';
|
|
const state = JSON.parse(fs.readFileSync('bot_state.json', 'utf8'));
|
|
const btc = state.symbols['BTC/USDT'];
|
|
console.log(JSON.stringify(btc.rules, null, 2));
|