-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFcsStock.java
More file actions
491 lines (413 loc) · 16.8 KB
/
FcsStock.java
File metadata and controls
491 lines (413 loc) · 16.8 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/**
* FCS API - Stock Module
*
* @package FcsApi
* @author FCS API <support@fcsapi.com>
*/
package com.fcsapi;
import java.util.HashMap;
import java.util.Map;
/**
* Stock API Module
*/
public class FcsStock {
private final FcsApi api;
private static final String BASE = "stock/";
/**
* Initialize Stock module
* @param api FcsApi instance
*/
public FcsStock(FcsApi api) {
this.api = api;
}
// ==================== Symbol/Stock List ====================
/**
* Get list of all stock symbols
*/
public Map<String, Object> getSymbolsList(String exchange, String country, String sector, String indices) {
Map<String, Object> params = new HashMap<>();
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
if (country != null && !country.isEmpty()) params.put("country", country);
if (sector != null && !sector.isEmpty()) params.put("sector", sector);
if (indices != null && !indices.isEmpty()) params.put("indices", indices);
return api.request(BASE + "list", params);
}
public Map<String, Object> getSymbolsList(String exchange) {
return getSymbolsList(exchange, null, null, null);
}
public Map<String, Object> getSymbolsList() {
return getSymbolsList(null, null, null, null);
}
// ==================== Indices ====================
/**
* Get list of market indices by country
*/
public Map<String, Object> getIndicesList(String country, String exchange) {
Map<String, Object> params = new HashMap<>();
if (country != null && !country.isEmpty()) params.put("country", country);
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
return api.request(BASE + "indices", params);
}
public Map<String, Object> getIndicesList(String country) {
return getIndicesList(country, null);
}
/**
* Get latest index prices
*/
public Map<String, Object> getIndicesLatest(String symbol, String country, String exchange) {
Map<String, Object> params = new HashMap<>();
if (symbol != null && !symbol.isEmpty()) params.put("symbol", symbol);
if (country != null && !country.isEmpty()) params.put("country", country);
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
return api.request(BASE + "indices_latest", params);
}
public Map<String, Object> getIndicesLatest(String symbol) {
return getIndicesLatest(symbol, null, null);
}
public Map<String, Object> getIndicesLatest() {
return getIndicesLatest(null, null, null);
}
// ==================== Latest Prices ====================
/**
* Get latest stock prices
*/
public Map<String, Object> getLatestPrice(String symbol, String period, String exchange, boolean getProfile) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("period", period != null ? period : "1D");
params.put("get_profile", getProfile ? 1 : 0);
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
return api.request(BASE + "latest", params);
}
public Map<String, Object> getLatestPrice(String symbol, String period) {
return getLatestPrice(symbol, period, null, false);
}
public Map<String, Object> getLatestPrice(String symbol) {
return getLatestPrice(symbol, "1D", null, false);
}
/**
* Get all latest prices by exchange
*/
public Map<String, Object> getAllPrices(String exchange, String period) {
Map<String, Object> params = new HashMap<>();
params.put("exchange", exchange);
params.put("period", period != null ? period : "1D");
return api.request(BASE + "latest", params);
}
public Map<String, Object> getAllPrices(String exchange) {
return getAllPrices(exchange, "1D");
}
/**
* Get latest prices by country and sector
*/
public Map<String, Object> getLatestByCountry(String country, String sector, String period) {
Map<String, Object> params = new HashMap<>();
params.put("country", country);
params.put("period", period != null ? period : "1D");
if (sector != null && !sector.isEmpty()) params.put("sector", sector);
return api.request(BASE + "latest", params);
}
public Map<String, Object> getLatestByCountry(String country, String sector) {
return getLatestByCountry(country, sector, "1D");
}
/**
* Get latest prices by indices
*/
public Map<String, Object> getLatestByIndices(String indices, String period) {
Map<String, Object> params = new HashMap<>();
params.put("indices", indices);
params.put("period", period != null ? period : "1D");
return api.request(BASE + "latest", params);
}
public Map<String, Object> getLatestByIndices(String indices) {
return getLatestByIndices(indices, "1D");
}
// ==================== Historical Data ====================
/**
* Get historical prices
*/
public Map<String, Object> getHistory(String symbol, String period, int length, String fromDate, String toDate, int page, boolean isChart) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("period", period != null ? period : "1D");
params.put("length", length);
params.put("page", page);
if (fromDate != null && !fromDate.isEmpty()) params.put("from", fromDate);
if (toDate != null && !toDate.isEmpty()) params.put("to", toDate);
if (isChart) params.put("is_chart", 1);
return api.request(BASE + "history", params);
}
public Map<String, Object> getHistory(String symbol, String period, int length) {
return getHistory(symbol, period, length, null, null, 1, false);
}
public Map<String, Object> getHistory(String symbol) {
return getHistory(symbol, "1D", 300, null, null, 1, false);
}
// ==================== Profile ====================
/**
* Get stock profile/company details
*/
public Map<String, Object> getProfile(String symbol) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
return api.request(BASE + "profile", params);
}
// ==================== Exchanges ====================
/**
* Get available exchanges
*/
public Map<String, Object> getExchanges(String type, String subType) {
Map<String, Object> params = new HashMap<>();
if (type != null && !type.isEmpty()) params.put("type", type);
if (subType != null && !subType.isEmpty()) params.put("sub_type", subType);
return api.request(BASE + "exchanges", params);
}
public Map<String, Object> getExchanges() {
return getExchanges(null, null);
}
// ==================== Financial Data ====================
/**
* Get earnings data
*/
public Map<String, Object> getEarnings(String symbol, String duration) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("duration", duration != null ? duration : "both");
return api.request(BASE + "earnings", params);
}
public Map<String, Object> getEarnings(String symbol) {
return getEarnings(symbol, "both");
}
/**
* Get revenue data
*/
public Map<String, Object> getRevenue(String symbol) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
return api.request(BASE + "revenue", params);
}
/**
* Get dividends data
*/
public Map<String, Object> getDividends(String symbol, String format) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("format", format != null ? format : "plain");
return api.request(BASE + "dividend", params);
}
public Map<String, Object> getDividends(String symbol) {
return getDividends(symbol, "plain");
}
/**
* Get balance sheet data
*/
public Map<String, Object> getBalanceSheet(String symbol, String duration, String format) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("duration", duration != null ? duration : "annual");
params.put("format", format != null ? format : "plain");
return api.request(BASE + "balance_sheet", params);
}
public Map<String, Object> getBalanceSheet(String symbol, String duration) {
return getBalanceSheet(symbol, duration, "plain");
}
/**
* Get income statement data
*/
public Map<String, Object> getIncomeStatements(String symbol, String duration, String format) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("duration", duration != null ? duration : "annual");
params.put("format", format != null ? format : "plain");
return api.request(BASE + "income_statements", params);
}
public Map<String, Object> getIncomeStatements(String symbol, String duration) {
return getIncomeStatements(symbol, duration, "plain");
}
/**
* Get cash flow data
*/
public Map<String, Object> getCashFlow(String symbol, String duration, String format) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("duration", duration != null ? duration : "annual");
params.put("format", format != null ? format : "plain");
return api.request(BASE + "cash_flow", params);
}
public Map<String, Object> getCashFlow(String symbol, String duration) {
return getCashFlow(symbol, duration, "plain");
}
/**
* Get statistics
*/
public Map<String, Object> getStatistics(String symbol, String duration) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("duration", duration != null ? duration : "annual");
return api.request(BASE + "statistics", params);
}
public Map<String, Object> getStatistics(String symbol) {
return getStatistics(symbol, "annual");
}
/**
* Get forecast
*/
public Map<String, Object> getForecast(String symbol) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
return api.request(BASE + "forecast", params);
}
/**
* Get combined financial data
*/
public Map<String, Object> getStockData(String symbol, String dataColumn, String duration, String format) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("data_column", dataColumn != null ? dataColumn : "profile,earnings,dividends");
params.put("duration", duration != null ? duration : "annual");
params.put("format", format != null ? format : "plain");
return api.request(BASE + "stock_data", params);
}
public Map<String, Object> getStockData(String symbol, String dataColumn) {
return getStockData(symbol, dataColumn, "annual", "plain");
}
// ==================== Technical Analysis ====================
/**
* Get Moving Averages
*/
public Map<String, Object> getMovingAverages(String symbol, String period) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("period", period != null ? period : "1D");
return api.request(BASE + "ma_avg", params);
}
/**
* Get Technical Indicators
*/
public Map<String, Object> getIndicators(String symbol, String period) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("period", period != null ? period : "1D");
return api.request(BASE + "indicators", params);
}
/**
* Get Pivot Points
*/
public Map<String, Object> getPivotPoints(String symbol, String period) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
params.put("period", period != null ? period : "1D");
return api.request(BASE + "pivot_points", params);
}
// ==================== Performance ====================
/**
* Get Performance Data
*/
public Map<String, Object> getPerformance(String symbol) {
Map<String, Object> params = new HashMap<>();
params.put("symbol", symbol);
return api.request(BASE + "performance", params);
}
// ==================== Advanced Query ====================
/**
* Advanced query
*/
public Map<String, Object> advanced(Map<String, Object> parameters) {
return api.request(BASE + "advance", parameters);
}
// ==================== Top Movers ====================
/**
* Get top gainers
*/
public Map<String, Object> getTopGainers(String exchange, int limit, String period, String country) {
return getSortedData("active.chp", "desc", limit, exchange, country, period);
}
public Map<String, Object> getTopGainers() {
return getTopGainers(null, 20, "1D", null);
}
/**
* Get top losers
*/
public Map<String, Object> getTopLosers(String exchange, int limit, String period, String country) {
return getSortedData("active.chp", "asc", limit, exchange, country, period);
}
public Map<String, Object> getTopLosers() {
return getTopLosers(null, 20, "1D", null);
}
/**
* Get most active
*/
public Map<String, Object> getMostActive(String exchange, int limit, String period, String country) {
return getSortedData("active.v", "desc", limit, exchange, country, period);
}
public Map<String, Object> getMostActive() {
return getMostActive(null, 20, "1D", null);
}
// ==================== Custom Sorting ====================
/**
* Get data with custom sorting
*/
public Map<String, Object> getSortedData(String sortColumn, String sortDirection, int limit, String exchange, String country, String period) {
Map<String, Object> params = new HashMap<>();
params.put("period", period != null ? period : "1D");
params.put("sort_by", sortColumn + "_" + sortDirection);
params.put("per_page", limit);
params.put("merge", "latest");
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
if (country != null && !country.isEmpty()) params.put("country", country);
return advanced(params);
}
// ==================== Search ====================
/**
* Search stocks
*/
public Map<String, Object> search(String query, String exchange, String country) {
Map<String, Object> params = new HashMap<>();
params.put("search", query);
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
if (country != null && !country.isEmpty()) params.put("country", country);
return api.request(BASE + "list", params);
}
public Map<String, Object> search(String query) {
return search(query, null, null);
}
// ==================== Filter by Sector/Country ====================
/**
* Get stocks by sector
*/
public Map<String, Object> getBySector(String sector, int limit, String exchange) {
Map<String, Object> params = new HashMap<>();
params.put("sector", sector);
params.put("per_page", limit);
params.put("merge", "latest");
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
return advanced(params);
}
public Map<String, Object> getBySector(String sector, int limit) {
return getBySector(sector, limit, null);
}
/**
* Get stocks by country
*/
public Map<String, Object> getByCountry(String country, int limit, String exchange) {
Map<String, Object> params = new HashMap<>();
params.put("country", country);
params.put("per_page", limit);
params.put("merge", "latest");
if (exchange != null && !exchange.isEmpty()) params.put("exchange", exchange);
return advanced(params);
}
public Map<String, Object> getByCountry(String country, int limit) {
return getByCountry(country, limit, null);
}
// ==================== Multiple/Parallel Requests ====================
/**
* Execute multiple API requests
*/
public Map<String, Object> multiUrl(String[] urls, String baseUrl) {
Map<String, Object> params = new HashMap<>();
params.put("url", String.join(",", urls));
if (baseUrl != null && !baseUrl.isEmpty()) params.put("base", baseUrl);
return api.request(BASE + "multi_url", params);
}
}