ABCDEFGHIJKLMNOPQRSTUVWXYZAAABACADAEAFAG
1
api_key
2
provide your api key here
3
Getting One Day OHLCCurrency Dateresults
4
getHistoricalRate(currency, date, apikey)EURUSD2019-10-21#ERROR!
5
6
Getting Live RateCurrency results
7
getLiveRate(currency, apikey)UK100#ERROR!
8
9
Converting One Currency to AnotherFromToresults
10
getConversionRate(from, to, apikey)USDEUR
11
12
Getting Hourly or Daily OHLC for multiple dates
Currency Start DateEnd DateInterval (daily, hourly)results
13
getTimeseries(symbol, start_date, end_date, interval, apiKey)
EURUSD2022-01-202022-01-25daily#ERROR!
14
15
16
Please add your api_key to sheet 1 cell A1 - $Sheet2!$A$1
17
Upon providing the API key you will get data in cell F4,F7,F10 and F13:I17
18
19
20
Step1
Visit marketdata.tradermade.com/signup and get your API KEY
21
Step 2
Copy this from the FILE Tab followed by Make a Copy Tab
22
Step 3
Copy Paste the code from tradermade.com/google-sheets/code.js into Extensions > Apps Script > Code.gs and Save
23
Step 4
Add your api_key to sheet 1 cell A1 - $Sheet1!$A$2
24
Step 5
Make changes to File to start Pulling Live and Historical rates in your spreadsheeet
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100