Skip to content

Commit 220d22b

Browse files
authored
Fix bad links (timescale#2557)
1 parent 23f4b13 commit 220d22b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

tutorials/OLD-financial-candlestick-tick-data/design-tick-schema.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ CREATE TABLE crypto_assets (
4646
symbol TEXT UNIQUE,
4747
"name" TEXT
4848
);
49-
49+
5050
CREATE TABLE crypto_ticks (
5151
"time" TIMESTAMPTZ,
5252
symbol TEXT,
@@ -100,18 +100,16 @@ into your TimescaleDB instance.
100100

101101
```bash
102102
psql -x "postgres://tsdbadmin:{YOUR_PASSWORD_HERE}@{YOUR_HOSTNAME_HERE}:{YOUR_PORT_HERE}/tsdb?sslmode=require"
103-
103+
104104
\COPY crypto_assets FROM 'crypto_assets.csv' CSV HEADER;
105105
\COPY crypto_ticks FROM 'crypto_ticks.csv' CSV HEADER;
106106
```
107107

108108
</Procedure>
109109

110110
If you want to ingest real-time market data, instead of sample data, check out
111-
our complementing tutorial
112-
[Ingest real-time financial websocket data][ingest-real-time] to
111+
our complementing tutorial Ingest real-time financial websocket data to
113112
ingest data directly from the [Twelve Data][twelve-data] financial API.
114113

115114
[hypertable]: /use-timescale/:currentVersion:/hypertables/
116-
[ingest-real-time]: /tutorials/:currentVersion:/ingest-real-time-websocket-data
117115
[twelve-data]: https://twelvedata.com/

tutorials/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ graphing your results.
2323
[beginner-energy]: /tutorials/:currentVersion:/energy-data/
2424
[intermediate-fleet]: /tutorials/:currentVersion:/nyc-taxi-geospatial/
2525
[intermediate-crypto]: /tutorials/:currentVersion:/blockchain-analyze/
26-
[advanced-finance]: /tutorials/:currentVersion:/ingest-real-time-websocket-data/
26+
[advanced-finance]: /tutorials/:currentVersion:/financial-ingest-real-time/

0 commit comments

Comments
 (0)