-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathcli.c
184 lines (136 loc) · 4.31 KB
/
cli.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
* Tulip Indicators
* https://tulipindicators.org/
* Copyright (c) 2010-2020 Tulip Charts LLC
* Lewis Van Winkle ([email protected])
*
* This file is part of Tulip Indicators.
*
* Tulip Indicators is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Tulip Indicators is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tulip Indicators. If not, see <http://www.gnu.org/licenses/>.
*
*/
//This allows some indicators to be run from the command line.
//It's mostly intended to facilitate testing.
//TODO This utility isn't memory safe. Currently for testing only!
#include "indicators.h"
#include "candles.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#define maxarray 8192
#define maxline 131072
/*Return next non-comment, non-blank line.*/
char *next_line(FILE *fp) {
static char buf[maxline];
while (fgets(buf, maxline, fp)) {
/*Skip Comments*/
if (buf[0] == '#') continue;
/*Skip blank lines*/
if (buf[0] == 10 || buf[0] == 13) continue;
return buf;
}
return 0;
}
/*Read in float array.*/
int get_array(FILE *fp, TI_REAL *s) {
char *line = next_line(fp);
if (line[0] != '{') {
printf("Bad input\n");
return 0;
}
//#pragma warning(disable:4996) //MSVC
char *num = strtok(line+1, ",}\r\n");
if (!num) {
return 0;
}
TI_REAL *inp = s;
do {
*inp = atof(num);
++inp;
} while ((num = strtok(0, ",}\r\n")));
return (int)(inp - s);
}
/*Read in options, inputs, answers, and test.*/
void run(const char *name, const char *in, const char *out) {
/*Find indicator from name.*/
const ti_indicator_info *info = ti_find_indicator(name);
if (!info) {
fprintf(stderr, "(ERROR) Couldn't find indicator %s\n", name);
return;
}
FILE *fin = fopen(in, "r");
if (!fin) {
fprintf(stderr, "(ERROR) Couldn't open %s for input.\n", in);
return;
}
char *line = next_line(fin);
TI_REAL options[TI_MAXINDPARAMS];
TI_REAL *o = options;
const char *s = strtok(line, " \n\r");
if (s) {
do {
*o = atof(s);
++o;
} while ((s = strtok(0, " \n\r")));
}
if ((int)(o-options) != info->options) {
fprintf(stderr, "(ERROR) Invalid number of options for %s. Expected %d, got %d\n", name, info->options, (int)(o-options));
return;
}
int i;
TI_REAL *inputs[TI_MAXINDPARAMS] = {0};
TI_REAL *outputs[TI_MAXINDPARAMS] = {0};
int input_size = 0;
for (i = 0; i < info->inputs; ++i) {
inputs[i] = malloc(sizeof(TI_REAL) * maxarray);
input_size = get_array(fin, inputs[i]);
}
fclose(fin);
for (i = 0; i < info->outputs; ++i) {
outputs[i] = malloc(sizeof(TI_REAL) * maxarray);
}
{
const int ret = info->indicator(input_size, (TI_REAL const *const *)inputs, options, outputs);
if (ret != TI_OKAY) {
fprintf(stderr, "(ERROR) Return value for %s of %d.\n", name, ret);
return;
}
}
FILE *fout = fopen(out, "w");
if (!fout) {
fprintf(stderr, "(ERROR) Couldn't open %s for output.\n", out);
return;
}
const int out_size = input_size - info->start(options);
for (i = 0; i < info->outputs; ++i) {
fprintf(fout, "{");
for (int j = 0; j < out_size; ++j) {
fprintf(fout, "%f%s", outputs[i][j], j == out_size-1 ? "" : ",");
}
fprintf(fout, "}\n");
}
fclose(fout);
for (i = 0; i < info->inputs; ++i) free(inputs[i]);
for (i = 0; i < info->outputs; ++i) free(outputs[i]);
}
int main(int argc, char *argv[]) {
if (argc < 4) {
printf("Usage: cli indicator_name infile outfile\n");
}
const char *name = argv[1];
const char *in = argv[2];
const char *out = argv[3];
run(name, in, out);
return 0;
}