Skip to content

Instantly share code, notes, and snippets.

@saiteja09
Last active July 13, 2023 03:47
Show Gist options
  • Star 35 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save saiteja09/52f15d4b4f30657af51a1336661884a8 to your computer and use it in GitHub Desktop.
Save saiteja09/52f15d4b4f30657af51a1336661884a8 to your computer and use it in GitHub Desktop.
Stock Widget for iOS using Scriptable
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: book; share-sheet-inputs: plain-text;
// Stock Ticker Widget
let stocksInfo = await getStockData()
let widget = await createWidget()
if (config.runsInWidget) {
// The script runs inside a widget, so we pass our instance of ListWidget to be shown inside the widget on the Home Screen.
Script.setWidget(widget)
} else {
// The script runs inside the app, so we preview the widget.
widget.presentSmall()
}
// Calling Script.complete() signals to Scriptable that the script have finished running.
// This can speed up the execution, in particular when running the script from Shortcuts or using Siri.
Script.complete()
async function createWidget(api) {
let upticker = SFSymbol.named("chevron.up");
let downticker = SFSymbol.named("chevron.down");
let widget = new ListWidget()
// Add background gradient
let gradient = new LinearGradient()
gradient.locations = [0, 1]
gradient.colors = [
new Color("141414"),
new Color("13233F")
]
widget.backgroundGradient = gradient
for(j=0; j<stocksInfo.length; j++)
{
let currentStock = stocksInfo[j];
let row1 = widget.addStack();
// Add Stock Symbol
let stockSymbol = row1.addText(currentStock.symbol);
stockSymbol.textColor = Color.white();
stockSymbol.font = Font.boldMonospacedSystemFont(12);
//Add Current Price
row1.addSpacer();
let symbolPrice = row1.addText(currentStock.price);
symbolPrice.textColor = Color.white();
symbolPrice.font = Font.boldMonospacedSystemFont(12);
//Second Row
widget.addSpacer(2)
let row2= widget.addStack();
// Add Company name
let companyName= row2.addText(currentStock.name);
companyName.textColor = Color.white();
companyName.textOpacity = 0.7;
companyName.font = Font.boldMonospacedSystemFont(9);
//Add Today's change in price
row2.addSpacer();
let changeValue = row2.addText(currentStock.changevalue);
if(currentStock.changevalue < 0) {
changeValue.textColor = Color.red();
} else {
changeValue.textColor = Color.green();
}
changeValue.font = Font.boldMonospacedSystemFont(9);
// Add Ticker icon
row2.addSpacer(2);
let ticker = null;
if(currentStock.changevalue < 0){
ticker = row2.addImage(downticker.image);
ticker.tintColor = Color.red();
} else {
ticker = row2.addImage(upticker.image);
ticker.tintColor = Color.green();
}
ticker.imageSize = new Size(8,8);
widget.addSpacer(6);
}
return widget
}
async function getStockData() {
let stocks = null;
// Read from WidgetParameter if present or use hardcoded values
// Provide values in Widget Parameter as comma seperated list
if(args.widgetParameter == null) {
stocks = ["PRGS", "AAPL", "INR=X", "XRP-USD"];
} else {
stocks = args.widgetParameter.split(",");
}
let stocksdata = [];
for(i=0; i< stocks.length; i++)
{
let stkdata = await queryStockData(stocks[i].trim());
let price = stkdata.quoteSummary.result[0].price;
let priceKeys = Object.keys(price);
let data = {};
data.symbol = price.symbol;
data.changepercent = (price.regularMarketChangePercent.raw * 100).toFixed(2);
data.changevalue = price.regularMarketChange.raw.toFixed(2);
data.price = price.regularMarketPrice.raw.toFixed(2);
data.high = price.regularMarketDayHigh.raw.toFixed(2);
data.low = price.regularMarketDayLow.raw.toFixed(2);
data.prevclose = price.regularMarketPreviousClose.raw.toFixed(2);
data.name = price.shortName;
stocksdata.push(data);
}
return stocksdata;
}
async function queryStockData(symbol) {
let url = "https://query1.finance.yahoo.com/v10/finance/quoteSummary/" + encodeURIComponent(symbol) + "?modules=price"
let req = new Request(url)
return await req.loadJSON()
}
@rekent89
Copy link

When I run the script I’m receiving the following error.

2020-11-22 15:38:20: Error on line 103:44: TypeError: null is not an object (evaluating 'stkdata.quoteSummary.result[0]')

@BeMaWeRo
Copy link

BeMaWeRo commented Dec 9, 2020

Hi, is it possible to configure a background image, as is possible in this great calendar script?
24C88F40-40F0-4FCF-BFB2-186DAF5A9EA8

https://github.com/JoeGit42/simple-calendar/blob/main/simple_calender.js

@Bae-ChangHyun
Copy link

hey thanks for using this script. but i want to show the price of stock like 12345$ this script shows decimal? point like 12345.000
i don't want to show under 0 can you fix it

@saiteja09
Copy link
Author

@matthew0624

Change line 106 to
data.price = price.regularMarketPrice.raw.toFixed(0);

that will show the price without decimal.

@Bae-ChangHyun
Copy link

@matthew0624

Change line 106 to
data.price = price.regularMarketPrice.raw.toFixed(0);

that will show the price without decimal.

wow thx i love you

@SyedYousha
Copy link

Hello, I'd possibly like to toggle this code and personalize it a little more.
I want to be able to input the price that I bought the stock and then have that price be compared to the stock price of the current day and get the difference of the two. Could you possibly help me out with something like this?

@webOSpinn
Copy link

I think line 118 should be updated to use encodeURIComponent(). That way you don't have to remember to manually encode a symbol like ^dji to %5Edji

let url = "https://query1.finance.yahoo.com/v10/finance/quoteSummary/" + encodeURIComponent(symbol) + "?modules=price"

@Bae-ChangHyun
Copy link

hey i want to open an external application when click this widget. or open stock application. how can i do it??

@R3n007
Copy link

R3n007 commented Feb 21, 2021

I love this, Are you able do a crypto version?

Edit: Also how to I show Australian stocks, ie A200

@saiteja09
Copy link
Author

I think line 118 should be updated to use encodeURIComponent(). That way you don't have to remember to manually encode a symbol like ^dji to %5Edji

let url = "https://query1.finance.yahoo.com/v10/finance/quoteSummary/" + encodeURIComponent(symbol) + "?modules=price"

Thanks for pointing that out. updated the script.

@saiteja09
Copy link
Author

I love this, Are you able do a crypto version?

Edit: Also how to I show Australian stocks, ie A200

This supports crypto as well, all you need to do is add the symbol.

@wickenico
Copy link

Thanks, love this widget!

@naasi1
Copy link

naasi1 commented Aug 10, 2021

Really great widget, love it! Would it be possible to change the currency from Dollar to Euro?

@WorfvomDorf
Copy link

How Can i Use This with IE Explorer on Windows ? Thanks

@WorfvomDorf
Copy link

Stock Widget for iOS using Scriptable
How Can i Use this with IE Explorer in HTML on Windows?
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment