-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChartinkScrapper.js
119 lines (106 loc) · 3.06 KB
/
ChartinkScrapper.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
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
const puppeteer = require("puppeteer");
let timeFrames = [
{ name: "daily", timeFrame: "d", range: "198" },
{ name: "weekly", timeFrame: "w", range: "504" },
];
let browser;
let page;
async function launchBrowser() {
browser = await puppeteer.launch({ headless: false });
page = await browser.newPage();
}
let downloadStockCharts = async (stockCode, path) => {
try {
await launchBrowser();
let stockUrl = `https://chartink.com/stocks/${stockCode}.html`;
await page.goto(stockUrl);
const client = await page.target().createCDPSession();
await client.send("Page.setDownloadBehavior", {
behavior: "allow",
downloadPath: `${__dirname}\\${path}`,
});
await setMovingAverages();
for (var timeFrame of timeFrames) {
await setTimeFrame(timeFrame);
await page.click("#innerb");
await page.waitForTimeout(3000);
const iFrame = await page.frames().find((f) => f.name() === "ChartImage");
await iFrame.waitForSelector("#saverbutton");
const saveBtn = await iFrame.$("#saverbutton");
await saveBtn.click();
await page.waitForTimeout(1000);
}
} catch (err) {
} finally {
await browser.close();
}
};
let setTimeFrame = async (inputTimeFrame) => {
await page.$eval(
"#d",
(selectBox, timeFrame) => (selectBox.value = timeFrame),
inputTimeFrame.timeFrame
);
await page.$eval(
"#ti",
(selectBox, range) => (selectBox.value = range),
inputTimeFrame.range
);
};
let setMovingAverages = async () => {
const movingAverageRows = await page.$$("#moving_avgs tr:not(.limg)");
for (var movingAverageRow = 0; movingAverageRow <= 2; movingAverageRow++) {
await movingAverageRows[movingAverageRow].$eval(
"td:first-child input",
(checkbox) => (checkbox.checked = true)
);
await movingAverageRows[movingAverageRow].$eval(
"td:nth-child(4) select",
(selectBox) => (selectBox.value = "EMA")
);
let movingAverage =
movingAverageRow == 0 ? 10 : movingAverageRow == 1 ? 20 : 50;
await movingAverageRows[movingAverageRow].$eval(
"td:nth-child(5) input",
(textfield, movingAverage) => {
textfield.value = movingAverage;
},
movingAverage
);
}
};
let scrapScreenerResult = async () => {
let loopCount = 0;
let stocks = [];
let nextBtnExist = await isNextPaginationExist();
do {
if (loopCount != 0) {
await clickNextPagination();
nextBtnExist = await isNextPaginationExist();
}
var urlsScrapped = await page.$$eval(
".scan_results_table tr td:nth-child(2) a",
(aTags) => aTags.map((aTag) => aTag.href)
);
stocks = stocks.concat(urlsScrapped);
loopCount++;
} while (nextBtnExist);
return stocks;
};
let clickNextPagination = () => {
return page.click(
"#DataTables_Table_0_paginate ul li:last-child:not(.disabled)"
);
};
let isNextPaginationExist = async () => {
return (
(
await page.$$(
"#DataTables_Table_0_paginate ul li:last-child:not(.disabled)"
)
).length != 0
);
};
module.exports = {
downloadStockCharts,
};