-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsp500.js
37 lines (34 loc) · 1.12 KB
/
sp500.js
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
//var Alpaca = require('@alpacahq/alpaca-trade-api');
import Alpaca from '@alpacahq/alpaca-trade-api';
const API_KEY = process.env.ALPACA_API_KEY;
const API_SECRET = process.env.ALPACA_API_SECRET;
const USE_POLYGON = false;
import axios from 'axios';
const alpaca = new Alpaca({
keyId: API_KEY,
secretKey: API_SECRET,
paper: true,
usePolygon: USE_POLYGON
});
import { default as mongodb } from 'mongodb';
let MongoClient = mongodb.MongoClient;
async function hello() {
var db = await MongoClient.connect("mongodb://localhost:27017/");
var dbo = db.db("stocksinfo");
dbo.collection("sp500").find().sort({ "MMM": 1 }).toArray(function (err, result) {
//console.log(result);
var count = 1;
var dataa = [];
for (var i in result) {
var obj = { _id: count, symbol: result[i].MMM, name: result[i]["3M Company"] };
dataa.push(obj);
count++;
}
//console.log(dataa);
dbo.collection("sp").insertMany(dataa, function (err, res) {
if (err) throw err;
console.log(res.insertedCount);
});
});
}
hello();