tlab-trading-toolkit
Version:
A trading toolkit for building advanced trading bots on the GDAX platform
57 lines (51 loc) • 2.91 kB
text/typescript
/***************************************************************************************************************************
* @license *
* Copyright 2017 Coinbase, Inc. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on *
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the *
* License for the specific language governing permissions and limitations under the License. *
***************************************************************************************************************************/
import * as GTT from 'gdax-trading-toolkit';
import { GDAXFeed } from "gdax-trading-toolkit/build/src/exchanges";
import { OrderbookMessage } from "gdax-trading-toolkit/build/src/core";
const logger = GTT.utils.ConsoleLoggerFactory();
const products: string[] = ['BTC-USD', 'ETH-USD', 'LTC-USD'];
const tallies: any = {};
products.forEach((product: string) => {
tallies[product] = {};
});
let count = 0;
GTT.Factories.GDAX.FeedFactory(logger, products).then((feed: GDAXFeed) => {
feed.on('data', (msg: OrderbookMessage) => {
count++;
if (!(msg as any).productId) {
tallies.other += 1;
} else {
const tally = tallies[msg.productId];
if (!tally[msg.type]) {
tally[msg.type] = 0;
}
tally[msg.type] += 1;
}
if (count % 1000 === 0) {
printTallies();
}
});
}).catch((err: Error) => {
logger.log('error', err.message);
process.exit(1);
});
function printTallies() {
console.log(`${count} messages received`);
for (const p in tallies) {
const types = Object.keys(tallies[p]).sort();
const tally: string = types.map((t) => `${t}: ${tallies[p][t]}`).join('\t');
console.log(`${p}: ${tally}`);
}
}