【发布时间】:2021-02-04 14:55:09
【问题描述】:
我在 Google 表格中找到了一个很棒的 article,其中包含用于股票警报系统的 GAS 脚本。它激发了我构建更广泛的东西,包括每日移动百分比的警报,但这已经超出了重点。
作者建议应用基于时间的触发器,以便接收者在股票达到预定义的目标价格时收到实时电子邮件警报。该脚本运行良好,但有一个问题:只要条件成立,它就会在每个周期中发送一封电子邮件。换句话说,如果触发器设置为每分钟,您将被电子邮件轰炸。
这是基础脚本。
function myFunction() {
var spreadSheet = SpreadsheetApp.getActiveSpreadsheet();
var values = spreadSheet.getDataRange().getValues();
values.shift();
var emails = ['abc@gmail.com'];
for (stock in values) {
// Grabs the array we want to access
var stockArray = values[stock];
// The first item in the array is the ticker
var stockTicker = stockArray[0];
// The CURRENT price of the stock
var stockCurrent = stockArray[1];
// Mathematical symbol to compare the prices (>,<)
var stockSymbol = stockArray[2];
// The TARGET price of the stock
var stockTarget = stockArray[3];
// If we want to use the less than symbol
if ( stockSymbol === '<' ) {
// If current price is less than target
if ( stockCurrent < stockTarget) {
// Do something
}
}
// If we want to use the greater than symbol
if ( stockSymbol === '>' ) {
// If current price is greater than target
if ( stockCurrent > stockTarget) {
// Do something
}
}
}
}
我只想(每天)收到一次警报。这个author 通过在“else”条件后添加以下函数解决了类似的问题:
function createTriggerCheckAgain() {
ScriptApp.newTrigger('myFunction')
.timeBased()
.after(60 * 60 * 24 * 1000) // one day cycle time
.create();}
}
我尝试将此函数添加到原始脚本中,但不幸的是,每次脚本运行时我仍然会收到一封警报电子邮件。
为了检查脚本是否实时工作,我添加了一个电子邮件功能。将它们放在一起给出以下内容。这是spreadsheet的链接。
function myFunction() {
var spreadSheet = SpreadsheetApp.getActiveSpreadsheet();
var values = spreadSheet.getDataRange().getValues();
values.shift();
var emails = ['webkowuite@gmail.com'];
for (stock in values) {
// Grabs the array we want to access
var stockArray = values[stock];
// The first item in the array is the ticker
var stockTicker = stockArray[0];
// The CURRENT price of the stock
var stockCurrent = stockArray[1];
// Mathematical symbol to compare the prices (>,<)
var stockSymbol = stockArray[2];
// The TARGET price of the stock
var stockTarget = stockArray[3];
// Emails
var emailSubject = 'PRICE ALERT';
var emailBody = 'your stock '+stockTicker+' has moved to its target price';
// If we want to use the less than symbol
if ( stockSymbol === '<' ) {
// If current price is less than target
if ( stockCurrent < stockTarget) {
for (email in emails) {
MailApp.sendEmail(emails[email], emailSubject, '', {
htmlBody: emailBody
});
}
}
else {
function createTriggerCheckAgain() {
ScriptApp.newTrigger('myFunction')
.timeBased()
.after(60 * 60 * 24 * 1000)
.create();
}
}
}
// If we want to use the greater than symbol
if ( stockSymbol === '>' ) {
// If current price is greater than target
if ( stockCurrent > stockTarget) {
for (email in emails) {
MailApp.sendEmail(emails[email], emailSubject, '', {
htmlBody: emailBody
});
}
}
}
else {
function createTriggerCheckAgain() {
ScriptApp.newTrigger('myFunction')
.timeBased()
.after(60 * 60 * 24 * 1000)
.create();
}
}
}
}
任何提示/帮助将不胜感激。
顺便说一句,原文章的评论者提出了不同的路线:
// Named range could be get spreadsheet-wise
var notified_range = spread_sheet.getRangeByName('Notified?');
var notified_values = notified_range.getValues();
...
// We don't want to spam ourselves
var isNotified = notified_values[+stock+1][0];
...
if ( stockSymbol === '<' ) {
if ( stockCurrent < stockTarget && isNotified != true) {
for (email in emails) {
MailApp.sendEmail(emails[email], emailSubject, '', {
htmlBody: emailBody
});
}
// GetCell index starts from 1, not 0. So we +2
notified_range.getCell(stock+2, 1).setValue(true);
}
}
我尝试在原始代码中实现这些。也没有成功。
【问题讨论】:
-
这是电子表格:数据 + 脚本docs.google.com/spreadsheets/d/…
标签: google-apps-script google-sheets triggers gmail stock