This is a piece of JavaScript code to check an individual stock that we're tracking
/*
* add your own code here
*/
var SPCE= Positions.get("SPCE");
if (SPCE!== null) {
if (SPCE.currentPrice >= 62.0) {
Annotate.flag("SPCE", "Above $62.00");
//if this was actual code ran at an interval we might want to
//do additional checks to prevent multiple alerts
}
}
else {
Alert.warn("SPCE$" + SPCE.currentPrice);
//Annotate.flag("SPCE", "Testing levels at $" + SPCE.currentPrice);
}
Comments
This is a test.
Grafana dashboard, but technically there is no reason why any other dashboard that connects to InfluxDB wouldn't do
This is a piece of JavaScript code to check an individual stock that we're tracking
I would like to ask about the languages supported.