Test posting variety of content

maciejgmaciejg Posts: 11
edited March 2021 in Installation / Setup

This post will describe how to install a Ubuntu server

Comments

  • maciejgmaciejg Posts: 11
    edited March 2021

    This is a test.

    Grafana dashboard, but technically there is no reason why any other dashboard that connects to InfluxDB wouldn't do

  • maciejgmaciejg Posts: 11
    edited March 2021

    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);
    }
    
  • maciejgmaciejg Posts: 11

    I would like to ask about the languages supported.

Sign In or Register to comment.