Can we create a generic connection where we can define the URL. This connection will be similar to yahoo connection but it can connect to my custom server side script for data. The server script can do aggregation and all sort of stuff and will keep the logic isolated from NT.
There are many use-case examples.
* The request to http://example.com/data/fetch.php?q=DIA:SPY will make two separate requests to http://ichart.finance.yahoo.com/table.csv and calculate ratio and return the values.
* The request to http://example.com/data/fetch.php?q=SSO*SDS will make two separate requests to http://ichart.finance.yahoo.com/table.csv and calculate product of these two data series and return the values.
* The request to http://example.com/data/fetch.php?q=$USD will make a connection to local mysql database and return the values (yahoo does not have historical value for this instrument).
* The request to http://example.com/data/fetch.php?q=SPY.COMPLEX will make many requests to http://ichart.finance.yahoo.com/table.csv and perform a complex calculation from various data-series and return the values.
The server side script will also understand the a,b,c,d,e,f parameters (as interpreted in yahoo connection) and will filter data accordingly.
A generic connection like this will open unlimited possibilities and should be pretty easy to do?
Connection: Yahoo-generic, Google-generic
Connection param: Fetch URL
Do NT make connection source-code available to beta tester or partners?

Comment