diff options
author | Jake Ellowitz <jake.ellowitz@gmail.com> | 2018-11-20 08:24:07 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:25 +0800 |
commit | 75df8a0e8b375f198555f55bd6ed47af75c2b043 (patch) | |
tree | 3995136e11c3583378490796a155eadf8bf72f94 /packages/pipeline/src/entities/ohlcv_external.ts | |
parent | f3c28afedd6864e35a17245eb7c187d1c129c35a (diff) | |
download | dexon-0x-contracts-75df8a0e8b375f198555f55bd6ed47af75c2b043.tar.gz dexon-0x-contracts-75df8a0e8b375f198555f55bd6ed47af75c2b043.tar.zst dexon-0x-contracts-75df8a0e8b375f198555f55bd6ed47af75c2b043.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.ts | 20 |
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 |