aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/ohlcv_external.ts
diff options
context:
space:
mode:
authorJake Ellowitz <jake.ellowitz@gmail.com>2018-11-20 08:24:07 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:48 +0800
commitc6af5131b0b06433d6294260274e187ad61f4ef7 (patch)
tree338aaeaaa2673ea4c33773e3f99c53e4a10e3c42 /packages/pipeline/src/entities/ohlcv_external.ts
parent9986717671fe8e14c2168f7479bdaffe406bedc0 (diff)
downloaddexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.gz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.bz2
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.lz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.xz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.zst
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.zip
Pull token metadata re trusted tokens
Diffstat (limited to 'packages/pipeline/src/entities/ohlcv_external.ts')
-rw-r--r--packages/pipeline/src/entities/ohlcv_external.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/pipeline/src/entities/ohlcv_external.ts b/packages/pipeline/src/entities/ohlcv_external.ts
new file mode 100644
index 000000000..3fbb4c499
--- /dev/null
+++ b/packages/pipeline/src/entities/ohlcv_external.ts
@@ -0,0 +1,20 @@
+import { Column, Entity, PrimaryColumn } from 'typeorm';
+
+@Entity({ name: 'ohlcv_external', schema: 'raw' })
+export class OHLCVExternal {
+ @PrimaryColumn() public exchange!: string;
+ @PrimaryColumn() public from_symbol!: string;
+ @PrimaryColumn() public to_symbol!: string;
+ @PrimaryColumn() public start_time!: number;
+ @PrimaryColumn() public end_time!: number;
+
+ @Column() public open!: number;
+ @Column() public close!: number;
+ @Column() public low!: number;
+ @Column() public high!: number;
+ @Column() public volume_from!: number;
+ @Column() public volume_to!: number;
+
+ @PrimaryColumn() public source!: string;
+ @PrimaryColumn() public observed_timestamp!: number;
+} \ No newline at end of file