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

    1. /*
    2. * add your own code here
    3. */
    4. var SPCE= Positions.get("SPCE");
    5. if (SPCE!== null) {
    6. if (SPCE.currentPrice >= 62.0) {
    7. Annotate.flag("SPCE", "Above $62.00");
    8. //if this was actual code ran at an interval we might want to
    9. //do additional checks to prevent multiple alerts
    10. }
    11. }
    12. else {
    13. Alert.warn("SPCE$" + SPCE.currentPrice);
    14. //Annotate.flag("SPCE", "Testing levels at $" + SPCE.currentPrice);
    15. }
  • maciejgmaciejg Posts: 11

    I would like to ask about the languages supported.

Sign In or Register to comment.