ComputeCloud Formula Examples

From dataZoa Wiki
Revision as of 11:53, 24 January 2019 by SNC (Talk | contribs) (Formulas with just one input Variable:)

Jump to: navigation, search

Formulas with just one input Variable:

Purpose Formula
Simple 10 Point Moving AverageMovavg(V1,10)
Set tooltip prefix, suffix, decimals and date format (%B= Month full name, %b = Month abbreviation, %m = Month number, %d = Day number, %Y = 4 digit year, %y = 2 digit year).
{
   tooltip: { valuePrefix:'$', valueSuffix:' USD', valueDecimals:2, xDateFormat:'%b-%d-%Y' }
}
Separate tooltips for each series displayed one-at-a-time (e.g. for whichever series is being hovered over).
{
   tooltip: { shared:false }
}
Separate tooltips foe each series displayed simultaneously.
{
   tooltip: { split:true }
}