Using Nterminal via Splunk Enterprise allows for advanced functionality such as custom dashboard creation, automated report generation, tailored alerts, and data combination/modification. Splunk is an extremely powerful tool, and is what we use internally to extract intelligence from our data.
Splunk allows multivariate analysis of distinct data streams. By using the overlay function within a panel visualization, comparisons can easily be made and formatted.
Statisical commands like eval
, timechart
, stats
, eventstats
, or streamstats
allow users to include logic within their data search to modify, filter, or produce new data streams.
Example: displaying the USD price for assets on Coinbase
index=financial sourcetype=ohlcv base=USD market_venue=COINBASE
| eval ohlc = ((open+high+low+close)/4)
| stats latest(ohlc) as price by symbol
Quickly integrate your own logic for finacial indicators or call upon a machine learning function directly within NTerminal. There are many ways of utilizing provided modules for predictive analytics, or integrating your own models. These different techniques allow users to derive value from their data and customize a solution based on their needs.