-- Load the API modules used by the script local gs = require 'geneos.sampler' -- Process configuration parameters -- ================================ -- TODO -- Configure and connect to market data sources -- ============================================ -- TODO -- Define functions to analyse the data -- ==================================== -- TODO -- Create data view(s) -- =================== -- TODO -- Define the doSample function which will be called every sample -- ============================================================== gs.doSample = function() -- TODO compute metrics then update and publish data views end -- End of script