Skip to content

Instantly share code, notes, and snippets.

@slpsys
Created January 30, 2013 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slpsys/4678534 to your computer and use it in GitHub Desktop.
Save slpsys/4678534 to your computer and use it in GitHub Desktop.
holy_cow.js sums it up.
if (typeof Xignite == "undefined" || !Xignite) { var Xignite = {}; };
Xignite.license = '';
Xignite.XigniteQuotes = {};
Xignite.XigniteQuotes.GetQuickQuotes = function(symbol, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetQuickQuotes?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetSingleQuote = function(symbol, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetSingleQuote?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetQuotes = function(symbol, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetQuotes?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetQuotesByIdentifiers = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetQuotesByIdentifiers?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetQuote = function(symbol, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetQuote?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTopMovers = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTopMovers?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTopGainers = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTopGainers?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTopLosers = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTopLosers?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTop = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTop?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTopsByExchange = function(toptype, exchange, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTopsByExchange?TopType=" + toptype + "&Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.ListTopExchanges = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/ListTopExchanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetMarketSummary = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetMarketSummary?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetIndices = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetIndices?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTick = function(symbol, time, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTick?Symbol=" + symbol + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTicks = function(symbol, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTicks?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetClosingTicks = function(symbol, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetClosingTicks?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetClosingTicksAsOfDate = function(symbol, asofdate, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetClosingTicksAsOfDate?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTickHistogram = function(symbol, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTickHistogram?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetHistoricalTickHistogram = function(symbol, asofdate, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetHistoricalTickHistogram?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetTickCollections = function(symbols, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetTickCollections?Symbols=" + symbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetHistoricalTicksAsOfDate = function(symbol, asofdate, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetHistoricalTicksAsOfDate?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetMarketChart = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetMarketChart?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedBinaryChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedBinaryChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChartPreset = function(symbol, additionalsymbols, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChartPreset?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChartCustom = function(symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChartCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChartAsOfDate = function(symbol, additionalsymbols, starttime, endtime, asofdate, style, width, height, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChartAsOfDate?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&AsOfDate=" + asofdate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedBinaryChartAsOfDate = function(symbol, additionalsymbols, starttime, endtime, asofdate, style, width, height, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedBinaryChartAsOfDate?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&AsOfDate=" + asofdate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChartAsOfDatePreset = function(symbol, additionalsymbols, starttime, endtime, asofdate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChartAsOfDatePreset?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&AsOfDate=" + asofdate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetDelayedChartAsOfDateCustom = function(symbol, additionalsymbols, starttime, endtime, asofdate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetDelayedChartAsOfDateCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&AsOfDate=" + asofdate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetHistoricalTicks = function(symbol, historicalperiod, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetHistoricalTicks?Symbol=" + symbol + "&HistoricalPeriod=" + historicalperiod + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetFundQuote = function(symbol, callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetFundQuote?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteQuotes.GetMissingTickRanges = function(callback)
{ var url = "http://www.xignite.com/xQuotes.json/GetMissingTickRanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAlerts = {};
Xignite.XigniteAlerts.AddAlert = function(username, password, identifier, watchlist, type, alertcriteria, notificationtype, notificationdata, callback)
{ var url = "http://www.xignite.com/xAlerts.json/AddAlert?Username=" + username + "&Password=" + password + "&Identifier=" + identifier + "&Watchlist=" + watchlist + "&Type=" + type + "&AlertCriteria=" + alertcriteria + "&NotificationType=" + notificationtype + "&NotificationData=" + notificationdata + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAlerts.GetAlert = function(username, password, identifier, callback)
{ var url = "http://www.xignite.com/xAlerts.json/GetAlert?Username=" + username + "&Password=" + password + "&Identifier=" + identifier + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAlerts.DeleteAlert = function(username, password, identifier, callback)
{ var url = "http://www.xignite.com/xAlerts.json/DeleteAlert?Username=" + username + "&Password=" + password + "&Identifier=" + identifier + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAlerts.ListAlerts = function(username, password, type, callback)
{ var url = "http://www.xignite.com/xAlerts.json/ListAlerts?Username=" + username + "&Password=" + password + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation = {};
Xignite.XigniteDocumentation.ListServices = function(callback)
{ var url = "http://www.xignite.com/xDocumentation.json/ListServices?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.ListSubscriptions = function(callback)
{ var url = "http://www.xignite.com/xDocumentation.json/ListSubscriptions?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationCodeGeneric = function(iscodeonly, requesturlhost, servicenamespace, servicenamespaceparentincode, servicenamespaceincode, servicefileprefix, serviceprefix, servicename, operationname, returnclass, returnvalues, language, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationCodeGeneric?IsCodeOnly=" + iscodeonly + "&RequestUrlHost=" + requesturlhost + "&ServiceNamespace=" + servicenamespace + "&ServiceNamespaceParentInCode=" + servicenamespaceparentincode + "&ServiceNamespaceInCode=" + servicenamespaceincode + "&ServiceFilePrefix=" + servicefileprefix + "&ServicePrefix=" + serviceprefix + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&ReturnClass=" + returnclass + "&ReturnValues=" + returnvalues + "&Language=" + language + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationTitle = function(filename, servicename, operationname, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationTitle?FileName=" + filename + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationCode = function(servicename, operationname, returnclass, returnvalues, language, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationCode?ServiceName=" + servicename + "&OperationName=" + operationname + "&ReturnClass=" + returnclass + "&ReturnValues=" + returnvalues + "&Language=" + language + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceSubscription = function(servicename, subscriptionname, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceSubscription?ServiceName=" + servicename + "&SubscriptionName=" + subscriptionname + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceSubscriptionDocumentation = function(servicename, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceSubscriptionDocumentation?ServiceName=" + servicename + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceWebControl = function(servicename, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceWebControl?ServiceName=" + servicename + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceTitle = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceTitle?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.IsServiceBeta = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/IsServiceBeta?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceHeader = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceHeader?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceTargetedKeyword = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceTargetedKeyword?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceMeta = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceMeta?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceMetaDescription = function(servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceMetaDescription?ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceDemo = function(servicename, parameter, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceDemo?ServiceName=" + servicename + "&Parameter=" + parameter + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetSecureServiceDemonstration = function(servicename, parameter, demooption, loggedin, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetSecureServiceDemonstration?ServiceName=" + servicename + "&Parameter=" + parameter + "&DemoOption=" + demooption + "&LoggedIn=" + loggedin + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceDemonstration = function(servicename, parameter, demooption, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceDemonstration?ServiceName=" + servicename + "&Parameter=" + parameter + "&DemoOption=" + demooption + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetUserOperationSummary = function(ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetUserOperationSummary?IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceTerms = function(servicename, standard, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceTerms?ServiceName=" + servicename + "&Standard=" + standard + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceMenu = function(filename, servicename, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceMenu?FileName=" + filename + "&ServiceName=" + servicename + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceInfo = function(filename, servicename, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceInfo?FileName=" + filename + "&ServiceName=" + servicename + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceSubMenu = function(filename, servicename, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceSubMenu?FileName=" + filename + "&ServiceName=" + servicename + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceTabList = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceTabList?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceTabListUpdated = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceTabListUpdated?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceProcedures = function(servicename, ip, password, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceProcedures?ServiceName=" + servicename + "&IP=" + ip + "&Password=" + password + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationMenu = function(filename, servicename, operationname, ip, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationMenu?FileName=" + filename + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&IP=" + ip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationList = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationList?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationListConfigurableNameLength = function(filename, servicename, operationnamemaxlength, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationListConfigurableNameLength?FileName=" + filename + "&ServiceName=" + servicename + "&OperationNameMaxLength=" + operationnamemaxlength + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationListUnformatted = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationListUnformatted?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationSubscription = function(servicename, operationname, subscriptionname, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationSubscription?ServiceName=" + servicename + "&OperationName=" + operationname + "&SubscriptionName=" + subscriptionname + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceDocumentation = function(filename, servicename, parameter, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceDocumentation?FileName=" + filename + "&ServiceName=" + servicename + "&Parameter=" + parameter + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceDocumentationComponent = function(servicename, componenttype, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceDocumentationComponent?ServiceName=" + servicename + "&ComponentType=" + componenttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceOperations = function(filename, servicename, parameter, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceOperations?FileName=" + filename + "&ServiceName=" + servicename + "&Parameter=" + parameter + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceSidebar = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceSidebar?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationDocumentation = function(filename, servicename, operationname, section, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationDocumentation?FileName=" + filename + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&Section=" + section + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationHitCountCalculation = function(filename, servicename, operationname, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationHitCountCalculation?FileName=" + filename + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationDocumentationXml = function(servicename, operationname, section, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationDocumentationXml?ServiceName=" + servicename + "&OperationName=" + operationname + "&Section=" + section + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServiceSurvey = function(filename, servicename, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServiceSurvey?FileName=" + filename + "&ServiceName=" + servicename + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetServicesPriceList = function(callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetServicesPriceList?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteDocumentation.GetOperationDocumentationTextOnly = function(filename, servicename, operationname, callback)
{ var url = "http://www.xignite.com/xDocumentation.json/GetOperationDocumentationTextOnly?FileName=" + filename + "&ServiceName=" + servicename + "&OperationName=" + operationname + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts = {};
Xignite.XigniteAnalysts.GetResearchField = function(identifier, identifiertype, analystfieldtype, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchField?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AnalystFieldType=" + analystfieldtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchFields = function(identifiers, identifiertype, analystfieldtype, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchFields?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AnalystFieldType=" + analystfieldtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchFieldListsByCollection = function(identifiers, identifiertype, analystfieldtypes, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchFieldListsByCollection?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AnalystFieldTypes=" + analystfieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchFieldListByCollection = function(identifier, identifiertype, analystfieldtypes, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchFieldListByCollection?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AnalystFieldTypes=" + analystfieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchFieldList = function(identifier, identifiertype, analysisgroup, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchFieldList?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AnalysisGroup=" + analysisgroup + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchFieldLists = function(identifiers, identifiertype, analysisgroup, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchFieldLists?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AnalysisGroup=" + analysisgroup + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchReport = function(identifier, identifiertype, analystsresearchreporttype, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchReport?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AnalystsResearchReportType=" + analystsresearchreporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchReportCustom = function(identifier, identifiertype, reporttemplate, defaultvalue, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchReportCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportTemplate=" + reporttemplate + "&DefaultValue=" + defaultvalue + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetResearchReportTemplate = function(analystsresearchreporttype, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetResearchReportTemplate?AnalystsResearchReportType=" + analystsresearchreporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.ListResearchFields = function(callback)
{ var url = "http://www.xignite.com/xAnalysts.json/ListResearchFields?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.SearchResearchFields = function(pattern, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/SearchResearchFields?pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteAnalysts.GetMultiResearchField = function(identifier, identifiertype, analystfieldtypes, callback)
{ var url = "http://www.xignite.com/xAnalysts.json/GetMultiResearchField?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AnalystFieldTypes=" + analystfieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime = {};
Xignite.XigniteRealTime.GetRealChartPreset = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChartPreset?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealChart = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChart?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealChartCustom = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChartCustom?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuote = function(exchange, symbol, includebidask, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuote?Exchange=" + exchange + "&Symbol=" + symbol + "&IncludeBidAsk=" + includebidask + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuoteByIdentifier = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuoteByIdentifier?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExtendedRealQuote = function(exchange, symbol, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExtendedRealQuote?Exchange=" + exchange + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuotes = function(exchange, symbols, includebidask, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuotes?Exchange=" + exchange + "&Symbols=" + symbols + "&IncludeBidAsk=" + includebidask + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExtendedRealQuotes = function(exchange, symbols, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExtendedRealQuotes?Exchange=" + exchange + "&Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuotesTicker = function(symbols, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuotesTicker?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTick = function(exchange, symbol, time, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTick?Exchange=" + exchange + "&Symbol=" + symbol + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTicks = function(exchange, symbol, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTicks?Exchange=" + exchange + "&Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTickCollections = function(exchange, symbols, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTickCollections?Exchange=" + exchange + "&Symbols=" + symbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetHistoricalTicksAsOfDate = function(exchange, symbol, asofdate, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetHistoricalTicksAsOfDate?Exchange=" + exchange + "&Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetHistoricalTicks = function(exchange, symbol, historicalperiod, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetHistoricalTicks?Exchange=" + exchange + "&Symbol=" + symbol + "&HistoricalPeriod=" + historicalperiod + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.IsTraded = function(exchange, symbol, callback)
{ var url = "http://www.xignite.com/xRealTime.json/IsTraded?Exchange=" + exchange + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetBook = function(exchange, symbol, maximumorders, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetBook?Exchange=" + exchange + "&Symbol=" + symbol + "&MaximumOrders=" + maximumorders + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetBookDetails = function(exchange, symbol, maximumorders, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetBookDetails?Exchange=" + exchange + "&Symbol=" + symbol + "&MaximumOrders=" + maximumorders + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.SearchByMarketCap = function(exchange, percentchange, minimummarketcap, maximummarketcap, callback)
{ var url = "http://www.xignite.com/xRealTime.json/SearchByMarketCap?Exchange=" + exchange + "&PercentChange=" + percentchange + "&MinimumMarketCap=" + minimummarketcap + "&MaximumMarketCap=" + maximummarketcap + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopMovers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopMovers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopGainers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopGainers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopLosers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopLosers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTop = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTop?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExchangeTime = function(exchange, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExchangeTime?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondMaster = {};
Xignite.XigniteBondMaster.GetBondDescription = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xBondMaster.json/GetBondDescription?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondMaster.GetBondDescriptionsByIssuer = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xBondMaster.json/GetBondDescriptionsByIssuer?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondMaster.LookupBondsByIssuer = function(issuername, maturitydate, coupon, callback)
{ var url = "http://www.xignite.com/xBondMaster.json/LookupBondsByIssuer?IssuerName=" + issuername + "&MaturityDate=" + maturitydate + "&Coupon=" + coupon + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondMaster.LookupBondsByName = function(name, callback)
{ var url = "http://www.xignite.com/xBondMaster.json/LookupBondsByName?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondMaster.GetExtendedBondDescription = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xBondMaster.json/GetExtendedBondDescription?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBonds = {};
Xignite.XigniteBonds.GetPriceComposite = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBonds.json/GetPriceComposite?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBonds.GetLastSale = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBonds.json/GetLastSale?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBonds.GetDailyOHLC = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBonds.json/GetDailyOHLC?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBonds.GetYearlyHighLow = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBonds.json/GetYearlyHighLow?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondsRealTime = {};
Xignite.XigniteBondsRealTime.GetPriceComposite = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBondsRealTime.json/GetPriceComposite?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondsRealTime.GetLastSale = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBondsRealTime.json/GetLastSale?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondsRealTime.GetDailyOHLC = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBondsRealTime.json/GetDailyOHLC?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteBondsRealTime.GetYearlyHighLow = function(identifier, identifiertype, pricesource, callback)
{ var url = "http://bondsrealtime.xignite.com/xBondsRealTime.json/GetYearlyHighLow?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PriceSource=" + pricesource + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar = {};
Xignite.XigniteCalendar.ListCountryCodes = function(callback)
{ var url = "http://www.xignite.com/xCalendar.json/ListCountryCodes?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.ListEventCodes = function(callback)
{ var url = "http://www.xignite.com/xCalendar.json/ListEventCodes?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventDetails = function(eventid, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventDetails?EventID=" + eventid + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetMultipleEventDetails = function(eventids, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetMultipleEventDetails?EventIDs=" + eventids + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsByCountryCode = function(countrycode, releasedonstart, releasedonend, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsByCountryCode?CountryCode=" + countrycode + "&ReleasedOnStart=" + releasedonstart + "&ReleasedOnEnd=" + releasedonend + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetMostRecentEventsByEventCode = function(eventcode, count, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetMostRecentEventsByEventCode?EventCode=" + eventcode + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsByEventCode = function(eventcode, releasedonstart, releasedonend, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsByEventCode?EventCode=" + eventcode + "&ReleasedOnStart=" + releasedonstart + "&ReleasedOnEnd=" + releasedonend + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsByEventName = function(eventname, releasedonstart, releasedonend, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsByEventName?EventName=" + eventname + "&ReleasedOnStart=" + releasedonstart + "&ReleasedOnEnd=" + releasedonend + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForDate = function(fordate, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForDate?ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForMonth = function(fordate, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForMonth?ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForNextNumberOfDays = function(nextnumberofdays, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForNextNumberOfDays?NextNumberOfDays=" + nextnumberofdays + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForRange = function(releasedonstart, releasedonend, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForRange?ReleasedOnStart=" + releasedonstart + "&ReleasedOnEnd=" + releasedonend + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForRangeLength = function(releasedonstart, numberofdays, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForRangeLength?ReleasedOnStart=" + releasedonstart + "&NumberOfDays=" + numberofdays + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForToday = function(callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForToday?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForTomorrow = function(callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForTomorrow?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsForWeek = function(fordate, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsForWeek?ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsReleasedForRange = function(releasedforstart, releasedforend, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsReleasedForRange?ReleasedForStart=" + releasedforstart + "&ReleasedForEnd=" + releasedforend + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetEventsReleasedForRangeLength = function(releasedforstart, numberofdays, callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetEventsReleasedForRangeLength?ReleasedForStart=" + releasedforstart + "&NumberOfDays=" + numberofdays + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.SearchEvents = function(eventname, eventcode, countrycode, releasedforstart, releasedforend, releasedonstart, releasedonend, getus, getinternational, callback)
{ var url = "http://www.xignite.com/xCalendar.json/SearchEvents?EventName=" + eventname + "&EventCode=" + eventcode + "&CountryCode=" + countrycode + "&ReleasedForStart=" + releasedforstart + "&ReleasedForEnd=" + releasedforend + "&ReleasedOnStart=" + releasedonstart + "&ReleasedOnEnd=" + releasedonend + "&GetUS=" + getus + "&GetInternational=" + getinternational + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCalendar.GetServiceDemonstration = function(callback)
{ var url = "http://www.xignite.com/xCalendar.json/GetServiceDemonstration?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart = {};
Xignite.XigniteChart.DrawCapitalizationChartPresetByDate = function(identifier, identifiertype, startdate, enddate, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartPresetByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartPresetByDateBinary = function(identifier, identifiertype, startdate, enddate, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartPresetByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartPreset = function(identifier, identifiertype, periodtype, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartPreset?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartPresetBinary = function(identifier, identifiertype, periodtype, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartPresetBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartCustomByDate = function(identifier, identifiertype, startdate, enddate, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartCustomByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartCustomByDateBinary = function(identifier, identifiertype, startdate, enddate, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartCustomByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartByDate = function(identifier, identifiertype, startdate, enddate, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartByDateBinary = function(identifier, identifiertype, startdate, enddate, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartCustom = function(identifier, identifiertype, periodtype, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartCustomBinary = function(identifier, identifiertype, periodtype, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartCustomBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChart = function(identifier, identifiertype, periodtype, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChart?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawCapitalizationChartBinary = function(identifier, identifiertype, periodtype, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawCapitalizationChartBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PeriodType=" + periodtype + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartCustomByDate = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartCustomByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartCustomByDateBinary = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartCustomByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartByDate = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartByDateBinary = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartCustom = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartCustomBinary = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartCustomBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChart = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChart?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartBinary = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartPreset = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartPreset?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartPresetBinary = function(identifier, identifiertype, additionalsymbols, periodtype, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartPresetBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&PeriodType=" + periodtype + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartPresetByDate = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartPresetByDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.DrawHistoricalChartPresetByDateBinary = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/DrawHistoricalChartPresetByDateBinary?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.GetChartDesign = function(type, callback)
{ var url = "http://www.xignite.com/xChart.json/GetChartDesign?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteChart.GetPresetChartDesign = function(type, preset, callback)
{ var url = "http://www.xignite.com/xChart.json/GetPresetChartDesign?Type=" + type + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation = {};
Xignite.XigniteCompensation.GetOfficer = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficer?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficerCompensations = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficerCompensations?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficerOptionsGranted = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficerOptionsGranted?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficerOptions = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficerOptions?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficerOptionsExercised = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficerOptionsExercised?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetLastCompensation = function(officerid, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetLastCompensation?OfficerID=" + officerid + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetLastCompensations = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetLastCompensations?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficers = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficers?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetCurrentOfficers = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetCurrentOfficers?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCompensation.GetOfficersByYear = function(identifier, identifiertype, year, callback)
{ var url = "http://www.xignite.com/xCompensation.json/GetOfficersByYear?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions = {};
Xignite.XigniteCorporateActions.ListEventTypes = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListEventTypes?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentTransformations = function(includerelated, identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentTransformations?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentTransformationsAll = function(includerelated, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentTransformationsAll?IncludeRelated=" + includerelated + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentTransformationsByExchange = function(includerelated, exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentTransformationsByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerTransformations = function(includerelated, identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerTransformations?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerTransformationsAll = function(includerelated, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerTransformationsAll?IncludeRelated=" + includerelated + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerTransformationsByExchange = function(includerelated, exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerTransformationsByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerAttributeChanges = function(includerelated, identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerAttributeChanges?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerAttributeChangesAll = function(includerelated, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerAttributeChangesAll?IncludeRelated=" + includerelated + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetIssuerAttributeChangesByExchange = function(includerelated, exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetIssuerAttributeChangesByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentAttributeChanges = function(includerelated, identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentAttributeChanges?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentAttributeChangesAll = function(includerelated, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentAttributeChangesAll?IncludeRelated=" + includerelated + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetInstrumentAttributeChangesByExchange = function(includerelated, exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetInstrumentAttributeChangesByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSecurityAttributeChanges = function(identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSecurityAttributeChanges?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSecurityAttributeChangesAll = function(eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSecurityAttributeChangesAll?EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSecurityAttributeChangesByExchange = function(exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSecurityAttributeChangesByExchange?Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetDividendHistory = function(includerelated, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetDividendHistory?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetPaymentHistory = function(includerelated, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetPaymentHistory?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetDividendHistoriesByExchange = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetDividendHistoriesByExchange?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetPaymentHistoriesByExchange = function(includerelated, exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetPaymentHistoriesByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSplitHistoriesByExchange = function(includerelated, exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSplitHistoriesByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSplitHistory = function(includerelated, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSplitHistory?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSplitTotal = function(includerelated, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSplitTotal?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetSplitTotalsByExchange = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetSplitTotalsByExchange?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListDividendTypes = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListDividendTypes?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListDividendClassifications = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListDividendClassifications?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListDividendPaymentFrequencies = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListDividendPaymentFrequencies?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListPaymentTypes = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListPaymentTypes?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListExchanges = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListExchanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListCurrencies = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListCurrencies?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListSectors = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListSectors?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListIndustries = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListIndustries?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.ListInstrumentClasses = function(callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/ListInstrumentClasses?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetDistributionSet = function(distributionsetdatasourceidentifier, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetDistributionSet?DistributionSetDataSourceIdentifier=" + distributionsetdatasourceidentifier + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetDistributionSets = function(distributionsetdatasourceidentifiers, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetDistributionSets?DistributionSetDataSourceIdentifiers=" + distributionsetdatasourceidentifiers + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetCorporateActions = function(includerelated, identifier, identifiertype, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetCorporateActions?IncludeRelated=" + includerelated + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCorporateActions.GetCorporateActionsByExchange = function(includerelated, exchange, eventtype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCorporateActions.json/GetCorporateActionsByExchange?IncludeRelated=" + includerelated + "&Exchange=" + exchange + "&EventType=" + eventtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies = {};
Xignite.XigniteCurrencies.ListCurrencies = function(callback)
{ var url = "http://www.xignite.com/xCurrencies.json/ListCurrencies?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.ConvertRealTimeValue = function(from, to, amount, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/ConvertRealTimeValue?From=" + from + "&To=" + to + "&Amount=" + amount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.ConvertHistoricalValue = function(from, to, asofdate, amount, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/ConvertHistoricalValue?From=" + from + "&To=" + to + "&AsOfDate=" + asofdate + "&Amount=" + amount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeForwardRate = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeForwardRate?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRateAsString = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRateAsString?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetLatestCrossRate = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetLatestCrossRate?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetLatestCrossRates = function(from, tos, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetLatestCrossRates?From=" + from + "&Tos=" + tos + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRate = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRate?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRateGMT = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRateGMT?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRawCrossRate = function(from, to, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRawCrossRate?From=" + from + "&To=" + to + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRawCrossRates = function(symbols, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRawCrossRates?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRates = function(symbols, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRates?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateTables = function(symbols, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateTables?Symbols=" + symbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateTablesBidAsk = function(symbols, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateTablesBidAsk?Symbols=" + symbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyReport = function(from, to, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyReport?From=" + from + "&To=" + to + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateTable = function(symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateTable?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateTableBidAsk = function(symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateTableBidAsk?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRateTable = function(symbols, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRateTable?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRateTableWithBidAsk = function(symbols, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRateTableWithBidAsk?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetAllCrossRatesForACurrency = function(symbol, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetAllCrossRatesForACurrency?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetRealTimeCrossRateTableAsHTML = function(symbols, columnheaderstyle, lineheaderstyle, cellstyle, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetRealTimeCrossRateTableAsHTML?Symbols=" + symbols + "&ColumnHeaderStyle=" + columnheaderstyle + "&LineHeaderStyle=" + lineheaderstyle + "&CellStyle=" + cellstyle + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetSimpleRealTimeCrossRateTableAsHTML = function(symbols, columnheaderstyle, lineheaderstyle, cellstyle, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetSimpleRealTimeCrossRateTableAsHTML?Symbols=" + symbols + "&ColumnHeaderStyle=" + columnheaderstyle + "&LineHeaderStyle=" + lineheaderstyle + "&CellStyle=" + cellstyle + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateTableAsHTML = function(symbols, asofdate, columnheaderstyle, lineheaderstyle, cellstyle, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateTableAsHTML?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&ColumnHeaderStyle=" + columnheaderstyle + "&LineHeaderStyle=" + lineheaderstyle + "&CellStyle=" + cellstyle + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRate = function(symbol, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRate?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRates = function(symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRates?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRateBidAsk = function(symbol, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRateBidAsk?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRatesBidAsk = function(symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRatesBidAsk?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRatesRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRatesRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRatesBidAskRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRatesBidAskRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRatesAsOf = function(symbol, enddate, periodtype, periods, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRatesAsOf?Symbol=" + symbol + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalCrossRatesBidAskAsOf = function(symbol, enddate, periodtype, periods, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalCrossRatesBidAskAsOf?Symbol=" + symbol + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetOfficialCrossRate = function(countrytype, symbol, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetOfficialCrossRate?CountryType=" + countrytype + "&Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetOfficialCrossRates = function(countrytype, symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetOfficialCrossRates?CountryType=" + countrytype + "&Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetMutipleHistoricalCrossRates = function(symbols, asofdate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetMutipleHistoricalCrossRates?Symbols=" + symbols + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetAverageHistoricalCrossRates = function(symbols, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetAverageHistoricalCrossRates?Symbols=" + symbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetAverageHistoricalCrossRate = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetAverageHistoricalCrossRate?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalMonthlyCrossRatesRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalMonthlyCrossRatesRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCrossRateChange = function(symbol, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCrossRateChange?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyChartCustom = function(symbol, periodtype, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyChartCustom?Symbol=" + symbol + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyChartCustomBinary = function(symbol, periodtype, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyChartCustomBinary?Symbol=" + symbol + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyChart = function(symbol, periodtype, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyChart?Symbol=" + symbol + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyChartBinary = function(symbol, periodtype, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyChartBinary?Symbol=" + symbol + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyIntradayChart = function(symbol, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, preset, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyIntradayChart?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyIntradayChartCustomBinary = function(symbol, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, design, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyIntradayChartCustomBinary?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetCurrencyIntradayChartCustom = function(symbol, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, design, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetCurrencyIntradayChartCustom?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetTick = function(symbol, time, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetTick?Symbol=" + symbol + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetTicks = function(symbol, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetTicks?Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetHistoricalHighLow = function(symbol, startdatetime, enddatetime, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetHistoricalHighLow?Symbol=" + symbol + "&StartDateTime=" + startdatetime + "&EndDateTime=" + enddatetime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteCurrencies.GetIntradayHighLow = function(symbol, startdatetime, enddatetime, callback)
{ var url = "http://www.xignite.com/xCurrencies.json/GetIntradayHighLow?Symbol=" + symbol + "&StartDateTime=" + startdatetime + "&EndDateTime=" + enddatetime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar = {};
Xignite.XigniteEarningsCalendar.ListCompanies = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/ListCompanies?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCalendarItem = function(type, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCalendarItem?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCalendarItems = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCalendarItems?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCalendarItemsAsString = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCalendarItemsAsString?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetConferenceCallInformation = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetConferenceCallInformation?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetReplayInformation = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetReplayInformation?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningDates = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningDates?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCall = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCall?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetBoardMeeting = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetBoardMeeting?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetAnnouncement = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetAnnouncement?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCalendarRange = function(startdate, enddate, minimummarketcap, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCalendarRange?StartDate=" + startdate + "&EndDate=" + enddate + "&MinimumMarketCap=" + minimummarketcap + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEarningsCalendar.GetEarningCalendarDay = function(asofdate, minimummarketcap, callback)
{ var url = "http://www.xignite.com/xEarningsCalendar.json/GetEarningCalendarDay?AsOfDate=" + asofdate + "&MinimumMarketCap=" + minimummarketcap + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar = {};
Xignite.XigniteEdgar.ListSECFilingTypes = function(name, callback)
{ var url = "http://www.xignite.com/xEdgar.json/ListSECFilingTypes?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.LookupCIK = function(name, callback)
{ var url = "http://www.xignite.com/xEdgar.json/LookupCIK?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetCIK = function(symbol, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetCIK?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.ListSICCodes = function(name, callback)
{ var url = "http://www.xignite.com/xEdgar.json/ListSICCodes?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetRecentFilings = function(day, form, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetRecentFilings?Day=" + day + "&Form=" + form + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.QueryFilings = function(identifier, identifiertype, form, ownershipforms, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEdgar.json/QueryFilings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.QueryFilingsByReportingPeriod = function(identifier, identifiertype, form, ownershipforms, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEdgar.json/QueryFilingsByReportingPeriod?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetFilingOccurrences = function(identifier, identifiertype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetFilingOccurrences?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.PredefinedQueryFilings = function(identifier, identifiertype, predefinedquerytype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEdgar.json/PredefinedQueryFilings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&PredefinedQueryType=" + predefinedquerytype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.QueryMasterDocuments = function(identifier, identifiertype, form, ownershipforms, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEdgar.json/QueryMasterDocuments?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.SearchFilings = function(identifier, identifiertype, form, ownershipforms, priortodate, outputtype, callback)
{ var url = "http://www.xignite.com/xEdgar.json/SearchFilings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&PriorToDate=" + priortodate + "&OutputType=" + outputtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetLastFiling = function(identifier, identifiertype, form, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetLastFiling?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Form=" + form + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetFilingAsText = function(textfileurl, htmlize, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetFilingAsText?TextFileUrl=" + textfileurl + "&HTMLize=" + htmlize + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetFilingDetails = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetFilingDetails?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.ReadDocument = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xEdgar.json/ReadDocument?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetPDFDocument = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetPDFDocument?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetManagementOwnership = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetManagementOwnership?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetSharesOutstanding = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetSharesOutstanding?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEdgar.GetTotalAssets = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xEdgar.json/GetTotalAssets?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging = {};
Xignite.XigniteEmerging.GetEmergingMarkets = function(callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetEmergingMarkets?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.IsEmergingMarket = function(name, callback)
{ var url = "http://www.xignite.com/xEmerging.json/IsEmergingMarket?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetYieldCurve = function(market, asofdate, type, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetYieldCurve?Market=" + market + "&AsOfDate=" + asofdate + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetLastYieldCurve = function(market, type, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetLastYieldCurve?Market=" + market + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetAllYieldCurves = function(asofdate, type, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetAllYieldCurves?AsOfDate=" + asofdate + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetAllLastYieldCurves = function(type, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetAllLastYieldCurves?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetIssueData = function(market, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetIssueData?Market=" + market + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetPrices = function(market, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetPrices?Market=" + market + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetRatesByTenor = function(market, type, tenor, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetRatesByTenor?Market=" + market + "&Type=" + type + "&Tenor=" + tenor + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetModeledPrices = function(market, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetModeledPrices?Market=" + market + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEmerging.GetAnalytics = function(market, asofdate, callback)
{ var url = "http://www.xignite.com/xEmerging.json/GetAnalytics?Market=" + market + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy = {};
Xignite.XigniteEnergy.ListEnergySwaps = function(callback)
{ var url = "http://www.xignite.com/xEnergy.json/ListEnergySwaps?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAvailableEnergySwaps = function(asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAvailableEnergySwaps?AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.ListEnergyFutures = function(callback)
{ var url = "http://www.xignite.com/xEnergy.json/ListEnergyFutures?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAvailableEnergyFutures = function(asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAvailableEnergyFutures?AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergySwap = function(symbol, month, year, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergySwap?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFuture = function(symbol, month, year, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFuture?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFrontFuture = function(symbol, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFrontFuture?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAllDelayedEnergyFutures = function(symbol, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAllDelayedEnergyFutures?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetTopDelayedEnergyFutures = function(symbol, count, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetTopDelayedEnergyFutures?Symbol=" + symbol + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFutures = function(symbols, month, year, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFutures?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFutureStrip = function(symbol, striptype, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFutureStrip?Symbol=" + symbol + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureStrip = function(symbol, asofdate, striptype, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureStrip?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergySwapStrip = function(symbol, asofdate, striptype, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergySwapStrip?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergySpot = function(symbol, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergySpot?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergySpots = function(symbols, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergySpots?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFutureBySession = function(symbol, month, year, session, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFutureBySession?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAllDelayedEnergyFuturesBySession = function(symbol, session, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAllDelayedEnergyFuturesBySession?Symbol=" + symbol + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetDelayedEnergyFuturesBySession = function(symbols, month, year, session, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetDelayedEnergyFuturesBySession?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFuture = function(symbol, month, year, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFuture?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutures = function(symbols, month, year, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutures?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAllHistoricalEnergyFutures = function(symbol, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAllHistoricalEnergyFutures?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureRange = function(symbol, month, year, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureRange?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergySwap = function(symbol, month, year, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergySwap?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergySwapRange = function(symbol, month, year, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergySwapRange?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergySwaps = function(symbols, month, year, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergySwaps?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetAllHistoricalEnergySwaps = function(symbol, asofdate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetAllHistoricalEnergySwaps?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyCommodityRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyCommodityRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergySpotRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergySpotRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetEnergyTick = function(symbol, month, year, time, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetEnergyTick?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetEnergyTicks = function(symbol, month, year, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetEnergyTicks?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyTicks = function(symbol, month, year, historicalperiod, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyTicks?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&HistoricalPeriod=" + historicalperiod + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetIntradayEnergyFutureChart = function(symbol, month, year, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetIntradayEnergyFutureChart?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetIntradayEnergyFutureChartBinary = function(symbol, month, year, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetIntradayEnergyFutureChartBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetIntradayEnergyFutureChartCustom = function(symbol, month, year, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetIntradayEnergyFutureChartCustom?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetIntradayEnergyFutureChartCustomBinary = function(symbol, month, year, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetIntradayEnergyFutureChartCustomBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureChart = function(symbol, month, year, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureChart?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureChartBinary = function(symbol, month, year, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureChartBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureChartCustom = function(symbol, month, year, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureChartCustom?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyFutureChartCustomBinary = function(symbol, month, year, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyFutureChartCustomBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyCommodityChart = function(symbol, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyCommodityChart?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyCommodityChartBinary = function(symbol, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyCommodityChartBinary?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyCommodityChartCustom = function(symbol, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyCommodityChartCustom?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalEnergyCommodityChartCustomBinary = function(symbol, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalEnergyCommodityChartCustomBinary?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetIntradayChartDesign = function(preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetIntradayChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetHistoricalChartDesign = function(preset, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetHistoricalChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetTopEnergyHeadlines = function(count, industry, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetTopEnergyHeadlines?Count=" + count + "&Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetTodaysEnergyHeadlines = function(industry, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetTodaysEnergyHeadlines?Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetLastEnergyHeadlines = function(sincedate, industry, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetLastEnergyHeadlines?SinceDate=" + sincedate + "&Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetFutureOption = function(symbol, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetFutureOption?Symbol=" + symbol + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetFutureOptionChain = function(symbol, month, year, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetFutureOptionChain?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEnergy.GetFutureOptionsByStrikePrice = function(symbol, type, year, strikeprices, callback)
{ var url = "http://www.xignite.com/xEnergy.json/GetFutureOptionsByStrikePrice?Symbol=" + symbol + "&Type=" + type + "&Year=" + year + "&StrikePrices=" + strikeprices + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates = {};
Xignite.XigniteEstimates.GetResearchField = function(identifier, identifiertype, estimatefieldtype, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchField?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EstimateFieldType=" + estimatefieldtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchFields = function(identifiers, identifiertype, estimatefieldtype, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchFields?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&EstimateFieldType=" + estimatefieldtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchFieldListsByCollection = function(identifiers, identifiertype, estimatefieldtypes, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchFieldListsByCollection?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&EstimateFieldTypes=" + estimatefieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchFieldListByCollection = function(identifier, identifiertype, estimatefieldtypes, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchFieldListByCollection?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EstimateFieldTypes=" + estimatefieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchFieldList = function(identifier, identifiertype, estimategroup, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchFieldList?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EstimateGroup=" + estimategroup + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchFieldLists = function(identifiers, identifiertype, estimategroup, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchFieldLists?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&EstimateGroup=" + estimategroup + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchReport = function(identifier, identifiertype, estimatesresearchreporttype, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchReport?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EstimatesResearchReportType=" + estimatesresearchreporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchReportCustom = function(identifier, identifiertype, reporttemplate, defaultvalue, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchReportCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportTemplate=" + reporttemplate + "&DefaultValue=" + defaultvalue + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetResearchReportTemplate = function(estimatesresearchreporttype, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetResearchReportTemplate?EstimatesResearchReportType=" + estimatesresearchreporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.ListResearchFields = function(callback)
{ var url = "http://www.xignite.com/xEstimates.json/ListResearchFields?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.SearchResearchFields = function(pattern, callback)
{ var url = "http://www.xignite.com/xEstimates.json/SearchResearchFields?pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteEstimates.GetMultiResearchField = function(identifier, identifiertype, estimatefieldtypes, callback)
{ var url = "http://www.xignite.com/xEstimates.json/GetMultiResearchField?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EstimateFieldTypes=" + estimatefieldtypes + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges = {};
Xignite.XigniteExchanges.AreExchangesOpen = function(exchanges, callback)
{ var url = "http://www.xignite.com/xExchanges.json/AreExchangesOpen?Exchanges=" + exchanges + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeDate = function(exchange, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeDate?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeDay = function(exchange, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeDay?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeDayCount = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeDayCount?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeTime = function(exchange, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeTime?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchanges = function(callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetNextExchangeDate = function(exchange, fordate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetNextExchangeDate?Exchange=" + exchange + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetPriorExchangeDate = function(exchange, fordate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetPriorExchangeDate?Exchange=" + exchange + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetSettlementDate = function(exchange, tradedate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetSettlementDate?Exchange=" + exchange + "&TradeDate=" + tradedate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.IsExchangeHoliday = function(exchange, fordate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/IsExchangeHoliday?Exchange=" + exchange + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.IsExchangeOpen = function(exchange, callback)
{ var url = "http://www.xignite.com/xExchanges.json/IsExchangeOpen?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.IsExchangeOpenOnDate = function(exchange, ondate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/IsExchangeOpenOnDate?Exchange=" + exchange + "&OnDate=" + ondate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.IsValidExchange = function(exchange, callback)
{ var url = "http://www.xignite.com/xExchanges.json/IsValidExchange?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.ListHolidays = function(exchange, foryear, callback)
{ var url = "http://www.xignite.com/xExchanges.json/ListHolidays?Exchange=" + exchange + "&ForYear=" + foryear + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeHolidays = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeHolidays?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeHours = function(exchange, asofdate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeHours?Exchange=" + exchange + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeHoursRange = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeHoursRange?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeHoursUTC = function(exchange, asofdate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeHoursUTC?Exchange=" + exchange + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteExchanges.GetExchangeHoursUTCRange = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xExchanges.json/GetExchangeHoursUTCRange?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials = {};
Xignite.XigniteFinancials.ListCompanies = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xFinancials.json/ListCompanies?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetReportDate = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetReportDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.ListFinancials = function(callback)
{ var url = "http://www.xignite.com/xFinancials.json/ListFinancials?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.ListRestated = function(callback)
{ var url = "http://www.xignite.com/xFinancials.json/ListRestated?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.SearchFinancials = function(pattern, callback)
{ var url = "http://www.xignite.com/xFinancials.json/SearchFinancials?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetAllFinancials = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetAllFinancials?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetStandardItem = function(type, identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetStandardItem?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesItem = function(type, identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesItem?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetStandardItemRange = function(type, identifier, identifiertype, reporttype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetStandardItemRange?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesItemRange = function(type, identifier, identifiertype, reporttype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesItemRange?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetStandardItemList = function(types, identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetStandardItemList?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesItemList = function(types, identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesItemList?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetStandardItems = function(type, identifiers, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetStandardItems?Type=" + type + "&Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesItems = function(type, identifiers, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesItems?Type=" + type + "&Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetBalanceSheet = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetBalanceSheet?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetLastBalanceSheetInDateRange = function(identifier, identifiertype, reporttype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetLastBalanceSheetInDateRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesBalanceSheet = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesBalanceSheet?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetBalanceSheets = function(identifiers, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetBalanceSheets?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetIncomeStatement = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetIncomeStatement?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetIncomeStatementRange = function(identifier, identifiertype, reporttype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetIncomeStatementRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetFinancialServicesIncomeStatement = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetFinancialServicesIncomeStatement?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetIncomeStatements = function(identifiers, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetIncomeStatements?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetCashFlowStatement = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetCashFlowStatement?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetCashFlowStatements = function(identifiers, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetCashFlowStatements?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetNormalizedRatios = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetNormalizedRatios?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetCommonRatios = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetCommonRatios?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetOtherRatios = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetOtherRatios?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetIndustryRatios = function(identifier, identifiertype, reporttype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetIndustryRatios?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&ReportType=" + reporttype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFinancials.GetReport = function(identifier, identifiertype, statementtype, reportstyle, roundingtype, asofdate, callback)
{ var url = "http://www.xignite.com/xFinancials.json/GetReport?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StatementType=" + statementtype + "&ReportStyle=" + reportstyle + "&RoundingType=" + roundingtype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals = {};
Xignite.XigniteFundamentals.ListSectorsAndIndustries = function(callback)
{ var url = "http://www.xignite.com/xFundamentals.json/ListSectorsAndIndustries?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.ListFundamentals = function(callback)
{ var url = "http://www.xignite.com/xFundamentals.json/ListFundamentals?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.ListExtendedValues = function(extendedvaluetype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/ListExtendedValues?ExtendedValueType=" + extendedvaluetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.ListCompanies = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/ListCompanies?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.SearchFundamentals = function(pattern, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/SearchFundamentals?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFundamental = function(type, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetDatedFundamental = function(type, identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetDatedFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetPeriodFundamental = function(type, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetPeriodFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetMultiFundamental = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetMultiFundamental?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetTwoFundamentals = function(type1, type2, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetTwoFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetThreeFundamentals = function(type1, type2, type3, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetThreeFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFourFundamentals = function(type1, type2, type3, type4, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFourFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Type4=" + type4 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFiveFundamentals = function(type1, type2, type3, type4, type5, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFiveFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Type4=" + type4 + "&Type5=" + type5 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFundamentalList = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFundamentalList?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFundamentals = function(type, identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFundamentals?Type=" + type + "&Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundamentals.GetFundamentalListAsString = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundamentals.json/GetFundamentalListAsString?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData = {};
Xignite.XigniteFundData.GetFundPerformance = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundPerformance?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundsPerformance = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundsPerformance?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.SearchFundReports = function(cik, symbol, name, familyname, startdate, enddate, reporttype, callback)
{ var url = "http://www.xignite.com/xFundData.json/SearchFundReports?CIK=" + cik + "&Symbol=" + symbol + "&Name=" + name + "&FamilyName=" + familyname + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ReportType=" + reporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundReport = function(cik, year, reporttype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundReport?CIK=" + cik + "&Year=" + year + "&ReportType=" + reporttype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundRegistrant = function(cik, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundRegistrant?CIK=" + cik + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundClassification = function(cik, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundClassification?CIK=" + cik + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundLoad = function(cik, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundLoad?CIK=" + cik + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundFinancials = function(cik, year, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundFinancials?CIK=" + cik + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetAllFundFinancials = function(cik, startyear, endyear, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetAllFundFinancials?CIK=" + cik + "&StartYear=" + startyear + "&EndYear=" + endyear + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundExpenseRatio = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundExpenseRatio?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundTurnover = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundTurnover?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundLoads = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundLoads?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundFamily = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundFamily?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundInceptionDate = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundInceptionDate?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundData.GetFundCategory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFundData.json/GetFundCategory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings = {};
Xignite.XigniteFundHoldings.GetIncreasedHoldings = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetIncreasedHoldings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.GetTopHoldings = function(identifier, identifiertype, toptype, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetTopHoldings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&TopType=" + toptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.GetIncreasedHolders = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetIncreasedHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.GetTopHolders = function(identifier, identifiertype, toptype, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetTopHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&TopType=" + toptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.LookupFund = function(name, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/LookupFund?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.ListFunds = function(startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/ListFunds?StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.GetLatestHoldings = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetLatestHoldings?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFundHoldings.GetLatestHolders = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xFundHoldings.json/GetLatestHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds = {};
Xignite.XigniteFunds.GetSymbols = function(callback)
{ var url = "http://www.xignite.com/xFunds.json/GetSymbols?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetSymbolsByCountry = function(country, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetSymbolsByCountry?Country=" + country + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetLatestNAV = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetLatestNAV?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetLastNAV = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetLastNAV?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetLastNAVs = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetLastNAVs?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetLatestNAVs = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetLatestNAVs?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetHistoricalNAV = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetHistoricalNAV?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetHistoricalNAVs = function(identifiers, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetHistoricalNAVs?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetHistoricalNAVsAsOf = function(identifier, identifiertype, enddate, periodtype, periods, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetHistoricalNAVsAsOf?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetHistoricalNAVsRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetHistoricalNAVsRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetTopGainers = function(fromdate, todate, count, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetTopGainers?FromDate=" + fromdate + "&ToDate=" + todate + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetTopLosers = function(fromdate, todate, count, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetTopLosers?FromDate=" + fromdate + "&ToDate=" + todate + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.DrawFundChartCustom = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xFunds.json/DrawFundChartCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.DrawFundChart = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xFunds.json/DrawFundChart?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.DrawFundChartPreset = function(identifier, identifiertype, additionalsymbols, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xFunds.json/DrawFundChartPreset?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xFunds.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetDividendHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetDividendHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFunds.GetNewSymbols = function(fromdate, todate, callback)
{ var url = "http://www.xignite.com/xFunds.json/GetNewSymbols?FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures = {};
Xignite.XigniteFutures.GetFutureSymbol = function(symbol, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetFutureSymbol?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetReverseFutureSymbol = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetReverseFutureSymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTerminationSchedule = function(symbol, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetTerminationSchedule?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetNextFuture = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetNextFuture?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetFuture = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetFuture?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListExchanges = function(callback)
{ var url = "http://xignite.com/xFutures.json/ListExchanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListFutureCategories = function(callback)
{ var url = "http://xignite.com/xFutures.json/ListFutureCategories?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListSwaps = function(callback)
{ var url = "http://xignite.com/xFutures.json/ListSwaps?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListFutures = function(callback)
{ var url = "http://xignite.com/xFutures.json/ListFutures?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListFrontMonthContracts = function(callback)
{ var url = "http://xignite.com/xFutures.json/ListFrontMonthContracts?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListFuturesByCategory = function(category, callback)
{ var url = "http://xignite.com/xFutures.json/ListFuturesByCategory?Category=" + category + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListFuturesByExchange = function(exchange, callback)
{ var url = "http://xignite.com/xFutures.json/ListFuturesByExchange?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.ListSwapsByExchange = function(exchange, callback)
{ var url = "http://xignite.com/xFutures.json/ListSwapsByExchange?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedSwap = function(symbol, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedSwap?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFuture = function(symbol, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFuture?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFrontFuture = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFrontFuture?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllDelayedFutures = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllDelayedFutures?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTopDelayedFutures = function(symbol, count, callback)
{ var url = "http://xignite.com/xFutures.json/GetTopDelayedFutures?Symbol=" + symbol + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllDelayedSwaps = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllDelayedSwaps?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFutures = function(symbols, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFutures?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFutureStrip = function(symbol, striptype, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFutureStrip?Symbol=" + symbol + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureStrip = function(symbol, asofdate, striptype, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureStrip?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSwapStrip = function(symbol, asofdate, striptype, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSwapStrip?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StripType=" + striptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedSpot = function(symbol, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedSpot?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedSpots = function(symbols, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedSpots?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFutureBySession = function(symbol, month, year, session, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFutureBySession?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllDelayedFuturesBySession = function(symbol, session, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllDelayedFuturesBySession?Symbol=" + symbol + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetDelayedFuturesBySession = function(symbols, month, year, session, callback)
{ var url = "http://xignite.com/xFutures.json/GetDelayedFuturesBySession?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&Session=" + session + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFuture = function(symbol, month, year, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFuture?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutures = function(symbols, month, year, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutures?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllHistoricalFuturesWithStatus = function(symbol, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllHistoricalFuturesWithStatus?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllHistoricalFutures = function(symbol, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllHistoricalFutures?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureRange = function(symbol, month, year, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureRange?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSwap = function(symbol, month, year, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSwap?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSwapRange = function(symbol, month, year, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSwapRange?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSwaps = function(symbols, month, year, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSwaps?Symbols=" + symbols + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetAllHistoricalSwaps = function(symbol, asofdate, callback)
{ var url = "http://xignite.com/xFutures.json/GetAllHistoricalSwaps?Symbol=" + symbol + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityRange = function(symbol, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityMonthlyRange = function(symbol, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityMonthlyRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSpotRange = function(symbol, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSpotRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalSpotMonthlyRange = function(symbol, startdate, enddate, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalSpotMonthlyRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTick = function(symbol, month, year, time, callback)
{ var url = "http://xignite.com/xFutures.json/GetTick?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTicks = function(symbol, month, year, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://xignite.com/xFutures.json/GetTicks?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalTicks = function(symbol, month, year, historicalperiod, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalTicks?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&HistoricalPeriod=" + historicalperiod + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalTicksAsOfDate = function(symbol, month, year, asofdate, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalTicksAsOfDate?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetIntradayFutureChart = function(symbol, month, year, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetIntradayFutureChart?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetIntradayFutureChartBinary = function(symbol, month, year, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetIntradayFutureChartBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetIntradayFutureChartCustom = function(symbol, month, year, starttime, endtime, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetIntradayFutureChartCustom?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetIntradayFutureChartCustomBinary = function(symbol, month, year, starttime, endtime, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetIntradayFutureChartCustomBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureChart = function(symbol, month, year, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureChart?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureChartBinary = function(symbol, month, year, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureChartBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureChartCustom = function(symbol, month, year, startdate, enddate, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureChartCustom?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalFutureChartCustomBinary = function(symbol, month, year, startdate, enddate, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalFutureChartCustomBinary?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityChart = function(symbol, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityChart?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityChartBinary = function(symbol, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityChartBinary?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityChartCustom = function(symbol, startdate, enddate, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityChartCustom?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalCommodityChartCustomBinary = function(symbol, startdate, enddate, style, width, height, design, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalCommodityChartCustomBinary?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetIntradayChartDesign = function(preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetIntradayChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetHistoricalChartDesign = function(preset, callback)
{ var url = "http://xignite.com/xFutures.json/GetHistoricalChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetFutureOption = function(symbol, type, month, year, strikeprice, callback)
{ var url = "http://xignite.com/xFutures.json/GetFutureOption?Symbol=" + symbol + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTopIndustryHeadlines = function(count, industry, callback)
{ var url = "http://xignite.com/xFutures.json/GetTopIndustryHeadlines?Count=" + count + "&Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetTodaysIndustryHeadlines = function(industry, callback)
{ var url = "http://xignite.com/xFutures.json/GetTodaysIndustryHeadlines?Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetLastIndustryHeadlines = function(sincedate, industry, callback)
{ var url = "http://xignite.com/xFutures.json/GetLastIndustryHeadlines?SinceDate=" + sincedate + "&Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetFutureOptionChain = function(symbol, month, year, callback)
{ var url = "http://xignite.com/xFutures.json/GetFutureOptionChain?Symbol=" + symbol + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteFutures.GetFutureOptionsByStrikePrice = function(symbol, type, year, strikeprices, callback)
{ var url = "http://xignite.com/xFutures.json/GetFutureOptionsByStrikePrice?Symbol=" + symbol + "&Type=" + type + "&Year=" + year + "&StrikePrices=" + strikeprices + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalBondMaster = {};
Xignite.XigniteGlobalBondMaster.LookupBondsByIssuer = function(issuername, domicile, currency, startmaturitydate, endmaturitydate, startcouponrate, endcouponrate, includenonactive, callback)
{ var url = "http://bondsrealtime.xignite.com/xGlobalBondMaster.json/LookupBondsByIssuer?IssuerName=" + issuername + "&Domicile=" + domicile + "&Currency=" + currency + "&StartMaturityDate=" + startmaturitydate + "&EndMaturityDate=" + endmaturitydate + "&StartCouponRate=" + startcouponrate + "&EndCouponRate=" + endcouponrate + "&IncludeNonactive=" + includenonactive + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalBondMaster.LookupBondsByName = function(name, startmaturitydate, endmaturitydate, startcouponrate, endcouponrate, includenonactive, callback)
{ var url = "http://bondsrealtime.xignite.com/xGlobalBondMaster.json/LookupBondsByName?Name=" + name + "&StartMaturityDate=" + startmaturitydate + "&EndMaturityDate=" + endmaturitydate + "&StartCouponRate=" + startcouponrate + "&EndCouponRate=" + endcouponrate + "&IncludeNonactive=" + includenonactive + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalBondMaster.GetBondDescription = function(identifier, identifiertype, callback)
{ var url = "http://bondsrealtime.xignite.com/xGlobalBondMaster.json/GetBondDescription?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalBondMaster.ScreenBonds = function(issuer, domicile, startmaturitydate, endmaturitydate, startcouponrate, endcouponrate, callable, convertible, includenonactive, maxresultcount, callback)
{ var url = "http://bondsrealtime.xignite.com/xGlobalBondMaster.json/ScreenBonds?Issuer=" + issuer + "&Domicile=" + domicile + "&StartMaturityDate=" + startmaturitydate + "&EndMaturityDate=" + endmaturitydate + "&StartCouponRate=" + startcouponrate + "&EndCouponRate=" + endcouponrate + "&Callable=" + callable + "&Convertible=" + convertible + "&IncludeNonactive=" + includenonactive + "&MaxResultCount=" + maxresultcount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals = {};
Xignite.XigniteGlobalFundamentals.GetFundamental = function(type, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.ListFundamentals = function(callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/ListFundamentals?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.ListCompanies = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/ListCompanies?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.SearchFundamentals = function(pattern, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/SearchFundamentals?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetDatedFundamental = function(type, identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetDatedFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetPeriodFundamental = function(type, identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetPeriodFundamental?Type=" + type + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetMultiFundamental = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetMultiFundamental?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetTwoFundamentals = function(type1, type2, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetTwoFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetThreeFundamentals = function(type1, type2, type3, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetThreeFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetFourFundamentals = function(type1, type2, type3, type4, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFourFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Type4=" + type4 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetFiveFundamentals = function(type1, type2, type3, type4, type5, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFiveFundamentals?Type1=" + type1 + "&Type2=" + type2 + "&Type3=" + type3 + "&Type4=" + type4 + "&Type5=" + type5 + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetFundamentalList = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFundamentalList?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetFundamentals = function(type, identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFundamentals?Type=" + type + "&Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalFundamentals.GetFundamentalListAsString = function(types, identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalFundamentals.json/GetFundamentalListAsString?Types=" + types + "&Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes = {};
Xignite.XigniteGlobalQuotes.GetGlobalDelayedQuote = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetGlobalDelayedQuote?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetGlobalDelayedQuotes = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetGlobalDelayedQuotes?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetGlobalTick = function(identifier, identifiertype, time, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetGlobalTick?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetGlobalTicks = function(identifier, identifiertype, starttime, endtime, minutespertick, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetGlobalTicks?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartTime=" + starttime + "&EndTime=" + endtime + "&MinutesPerTick=" + minutespertick + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetDelayedChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetDelayedChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetDelayedBinaryChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetDelayedBinaryChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetDelayedChartCustom = function(symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetDelayedChartCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetDelayedChartPreset = function(symbol, additionalsymbols, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetDelayedChartPreset?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalQuotes.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xGlobalQuotes.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalRealTime = {};
Xignite.XigniteGlobalRealTime.GetGlobalRealTimeQuote = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalRealTime.json/GetGlobalRealTimeQuote?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalRealTime.GetGlobalRealTimeQuotes = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xGlobalRealTime.json/GetGlobalRealTimeQuotes?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalRealTime.GetGlobalTick = function(identifier, identifiertype, time, callback)
{ var url = "http://www.xignite.com/xGlobalRealTime.json/GetGlobalTick?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteGlobalRealTime.GetGlobalTicks = function(identifier, identifiertype, starttime, endtime, minutespertick, callback)
{ var url = "http://www.xignite.com/xGlobalRealTime.json/GetGlobalTicks?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartTime=" + starttime + "&EndTime=" + endtime + "&MinutesPerTick=" + minutespertick + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical = {};
Xignite.XigniteHistorical.GetHistoricalQuoteAdjusted = function(identifier, identifiertype, asofdate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuoteAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotesAdjusted = function(identifiers, identifiertype, asofdate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotesAdjusted?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalMonthlyQuotesRangeAdjusted = function(identifier, identifiertype, startdate, enddate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalMonthlyQuotesRangeAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotesAsOfAdjusted = function(identifier, identifiertype, enddate, periodtype, periods, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotesAsOfAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotesRangeAdjusted = function(identifier, identifiertype, startdate, enddate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotesRangeAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalWeeklyQuotesRangeAdjusted = function(identifier, identifiertype, startdate, enddate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalWeeklyQuotesRangeAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuarterlyQuotesRangeAdjusted = function(identifier, identifiertype, startdate, enddate, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuarterlyQuotesRangeAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPrice = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPrice?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPriceAdjusted = function(identifier, identifiertype, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPriceAdjusted?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPrices = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPrices?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPricesAdjusted = function(identifiers, identifiertype, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPricesAdjusted?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPricesOrdered = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPricesOrdered?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetLastClosingPricesOrderedAdjusted = function(identifiers, identifiertype, adjustmentmethod, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetLastClosingPricesOrderedAdjusted?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AdjustmentMethod=" + adjustmentmethod + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalHighLow = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalHighLow?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuote = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuote?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotes = function(identifiers, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotes?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotesAsOf = function(identifier, identifiertype, enddate, periodtype, periods, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotesAsOf?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuotesRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuotesRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalMonthlyQuotesRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalMonthlyQuotesRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalWeeklyQuotesRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalWeeklyQuotesRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalQuarterlyQuotesRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalQuarterlyQuotesRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopMovers = function(asofdate, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopMovers?AsOfDate=" + asofdate + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopMoversByExchange = function(asofdate, count, exchange, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopMoversByExchange?AsOfDate=" + asofdate + "&Count=" + count + "&Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopGainers = function(asofdate, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopGainers?AsOfDate=" + asofdate + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopLosers = function(asofdate, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopLosers?AsOfDate=" + asofdate + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopMoversByMarketCapitalization = function(asofdate, lowcapitalization, highcapitalization, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopMoversByMarketCapitalization?AsOfDate=" + asofdate + "&LowCapitalization=" + lowcapitalization + "&HighCapitalization=" + highcapitalization + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopGainersByMarketCapitalization = function(asofdate, lowcapitalization, highcapitalization, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopGainersByMarketCapitalization?AsOfDate=" + asofdate + "&LowCapitalization=" + lowcapitalization + "&HighCapitalization=" + highcapitalization + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetTopLosersByMarketCapitalization = function(asofdate, lowcapitalization, highcapitalization, count, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetTopLosersByMarketCapitalization?AsOfDate=" + asofdate + "&LowCapitalization=" + lowcapitalization + "&HighCapitalization=" + highcapitalization + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetDividendHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetDividendHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetDividendHistoryRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetDividendHistoryRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetExtendedDividendHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetExtendedDividendHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetExtendedDividendHistoryRange = function(identifier, identifiertype, queryby, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetExtendedDividendHistoryRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&QueryBy=" + queryby + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetSplitHistory = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetSplitHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetAllSplits = function(startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetAllSplits?StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetAllExtendedDividends = function(startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetAllExtendedDividends?StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetAllDividends = function(startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetAllDividends?StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetSplitRatio = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetSplitRatio?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetSymbols = function(callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetSymbols?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetAdvancesAndDeclines = function(asofdate, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetAdvancesAndDeclines?AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHistorical.GetHistoricalStatistics = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xHistorical.json/GetHistoricalStatistics?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings = {};
Xignite.XigniteHoldings.GetFormSC13XDetails = function(htmlurl, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetFormSC13XDetails?HTMLUrl=" + htmlurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.LookupManager = function(name, callback)
{ var url = "http://www.xignite.com/xHoldings.json/LookupManager?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.LookupManagerByCIK = function(cik, callback)
{ var url = "http://www.xignite.com/xHoldings.json/LookupManagerByCIK?CIK=" + cik + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetLatestHoldings = function(managercik, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetLatestHoldings?ManagerCIK=" + managercik + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetTopHoldings = function(managercik, topcount, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetTopHoldings?ManagerCIK=" + managercik + "&TopCount=" + topcount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHistoricalHoldings = function(managercik, asofdate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHistoricalHoldings?ManagerCIK=" + managercik + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHoldersChanges = function(fromdate, todate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHoldersChanges?FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHoldingsChanges = function(fromdate, todate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHoldingsChanges?FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetFivePercentHoldings = function(managercik, asofdate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetFivePercentHoldings?ManagerCIK=" + managercik + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetLatestHolders = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetLatestHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetTopHolders = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetTopHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHistoricalHolders = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHistoricalHolders?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHistoricalAmendedHoldings = function(managercik, asofdate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHistoricalAmendedHoldings?ManagerCIK=" + managercik + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHoldings.GetHistoricalOriginalHoldings = function(managercik, asofdate, callback)
{ var url = "http://www.xignite.com/xHoldings.json/GetHistoricalOriginalHoldings?ManagerCIK=" + managercik + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing = {};
Xignite.XigniteHousing.GetHousingSales = function(category, area, startdate, enddate, period, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHousingSales?Category=" + category + "&Area=" + area + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Period=" + period + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetHousingSalesByState = function(category, area, startdate, enddate, period, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHousingSalesByState?Category=" + category + "&Area=" + area + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Period=" + period + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetHousingPrices = function(category, area, startdate, enddate, period, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHousingPrices?Category=" + category + "&Area=" + area + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Period=" + period + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetHousingPricesByMetroArea = function(category, area, startdate, enddate, period, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHousingPricesByMetroArea?Category=" + category + "&Area=" + area + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Period=" + period + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetHistoricalIndicators = function(category, area, startdate, enddate, period, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHistoricalIndicators?Category=" + category + "&Area=" + area + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Period=" + period + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetHousingIndicators = function(callback)
{ var url = "http://www.xignite.com/xHousing.json/GetHousingIndicators?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetYearlyPermits = function(fromyear, toyear, option, area, includesubareas, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetYearlyPermits?FromYear=" + fromyear + "&ToYear=" + toyear + "&Option=" + option + "&Area=" + area + "&IncludeSubAreas=" + includesubareas + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteHousing.GetMonthlyPermits = function(fromdate, todate, option, area, includesubareas, callback)
{ var url = "http://www.xignite.com/xHousing.json/GetMonthlyPermits?FromDate=" + fromdate + "&ToDate=" + todate + "&Option=" + option + "&Area=" + area + "&IncludeSubAreas=" + includesubareas + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndexComponents = {};
Xignite.XigniteIndexComponents.GetIndexComponents = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndexComponents.json/GetIndexComponents?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndexComponents.GetPricedIndexComponents = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xIndexComponents.json/GetPricedIndexComponents?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndexComponents.GetPricedIndexComponentsSubset = function(identifier, identifiertype, asofdate, startindex, endindex, callback)
{ var url = "http://www.xignite.com/xIndexComponents.json/GetPricedIndexComponentsSubset?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&StartIndex=" + startindex + "&EndIndex=" + endindex + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices = {};
Xignite.XigniteIndices.GetMarketSummary = function(callback)
{ var url = "http://www.xignite.com/xIndices.json/GetMarketSummary?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetExchangeSummary = function(exchange, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetExchangeSummary?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetIndices = function(callback)
{ var url = "http://www.xignite.com/xIndices.json/GetIndices?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListIndices = function(callback)
{ var url = "http://www.xignite.com/xIndices.json/ListIndices?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListAllIndices = function(callback)
{ var url = "http://www.xignite.com/xIndices.json/ListAllIndices?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListIndexCriteria = function(criteriatype, callback)
{ var url = "http://www.xignite.com/xIndices.json/ListIndexCriteria?CriteriaType=" + criteriatype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListIndicesByFamily = function(family, callback)
{ var url = "http://www.xignite.com/xIndices.json/ListIndicesByFamily?Family=" + family + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListIndicesByCountry = function(country, callback)
{ var url = "http://www.xignite.com/xIndices.json/ListIndicesByCountry?Country=" + country + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.ListIndicesBySector = function(sector, callback)
{ var url = "http://www.xignite.com/xIndices.json/ListIndicesBySector?Sector=" + sector + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetDelayedValue = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetDelayedValue?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetDelayedValues = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetDelayedValues?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetLastClosingValue = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetLastClosingValue?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetLastClosingValues = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetLastClosingValues?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetHistoricalValue = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetHistoricalValue?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetHistoricalValues = function(identifiers, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetHistoricalValues?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetHistoricalValuesAsOf = function(identifier, identifiertype, enddate, periodtype, periods, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetHistoricalValuesAsOf?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&EndDate=" + enddate + "&PeriodType=" + periodtype + "&Periods=" + periods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetHistoricalValuesRange = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetHistoricalValuesRange?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteIndices.GetIndexComponents = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xIndices.json/GetIndexComponents?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider = {};
Xignite.XigniteInsider.GetOwnershipForm = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetOwnershipForm?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetInsiders = function(insidercik, insidername, insideraddress, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetInsiders?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetRoles = function(insidercik, insidername, insideraddress, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetRoles?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetRole = function(insidercik, insidername, insideraddress, issueridentifier, issueridentifiertype, issuername, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetRole?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&IssuerName=" + issuername + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetRoster = function(issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetRoster?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetDirectors = function(issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetDirectors?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetOfficers = function(issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetOfficers?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetCEO = function(issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetCEO?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetIssuerOwnerships = function(issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetIssuerOwnerships?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetInsiderOwnership = function(insidercik, insidername, insideraddress, issueridentifier, issueridentifiertype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetInsiderOwnership?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetInsiderOwnerships = function(insidercik, insidername, insideraddress, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetInsiderOwnerships?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetAllInsiderTransactions = function(insidercik, insidername, insideraddress, fromdate, todate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetAllInsiderTransactions?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&FromDate=" + fromdate + "&ToDate=" + todate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetInsiderTransactions = function(insidercik, insidername, insideraddress, issueridentifier, issueridentifiertype, fromdate, todate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetInsiderTransactions?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetInsiderTransactionSummary = function(insidercik, insidername, insideraddress, issueridentifier, issueridentifiertype, fromdate, todate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetInsiderTransactionSummary?InsiderCIK=" + insidercik + "&InsiderName=" + insidername + "&InsiderAddress=" + insideraddress + "&IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetIssuerTransactionSummary = function(issueridentifier, issueridentifiertype, fromdate, todate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetIssuerTransactionSummary?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetIssuerTransactions = function(issueridentifier, issueridentifiertype, fromdate, todate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetIssuerTransactions?IssuerIdentifier=" + issueridentifier + "&IssuerIdentifierType=" + issueridentifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetAllIssuerTransactions = function(ondate, transactioncode, securitytype, ownershiptype, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetAllIssuerTransactions?OnDate=" + ondate + "&TransactionCode=" + transactioncode + "&SecurityType=" + securitytype + "&OwnershipType=" + ownershiptype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetAllIssuerTransactionsRange = function(fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetAllIssuerTransactionsRange?FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInsider.GetFilingAsText = function(textfileurl, htmlize, callback)
{ var url = "http://www.xignite.com/xInsider.json/GetFilingAsText?TextFileUrl=" + textfileurl + "&HTMLize=" + htmlize + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks = {};
Xignite.XigniteInterBanks.GetLIBORSecure = function(username, type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetLIBORSecure?Username=" + username + "&Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetLIBOR = function(type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetLIBOR?Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetREIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetREIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetHIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetHIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBUBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBUBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetSOFIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetSOFIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetREIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetREIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetOIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetOIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetSIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetSIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetCIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetCIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetSTIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetSTIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetWIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetWIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetVILIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetVILIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetEURIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetEURIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetPRIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetPRIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetKORIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetKORIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetMIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetMIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetMIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetMIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetSABOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetSABOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTAIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTAIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTURKIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTURKIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetMEXIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetMEXIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTELBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTELBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetCHILIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetCHILIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetCHIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetCHIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetKAIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetKAIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetKIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetKIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetKIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetKIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetSHIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetSHIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetJIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetJIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetKLIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetKLIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetPHIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetPHIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBKIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBKIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetVNIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetVNIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetMOSIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetMOSIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetMOSIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetMOSIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetHistoricalLIBOR = function(type, currency, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetHistoricalLIBOR?Type=" + type + "&Currency=" + currency + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBRAZIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBRAZIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTRLIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTRLIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTRLIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTRLIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBRIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBRIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBRIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBRIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRIGIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRIGIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRIGIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRIGIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetAIDIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetAIDIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetJIBAR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetJIBAR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetBAIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetBAIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetCOLIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetCOLIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTALIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTALIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTALIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTALIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRate = function(ratetype, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRate?RateType=" + ratetype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRateFamilyTable = function(ratefamilytype, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRateFamilyTable?RateFamilyType=" + ratefamilytype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRateFamily = function(ratefamilytype, asofdate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRateFamily?RateFamilyType=" + ratefamilytype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetTodaysRate = function(ratetype, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetTodaysRate?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetLatestRate = function(ratetype, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetLatestRate?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetLatestLIBOR = function(ratetype, currency, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetLatestLIBOR?RateType=" + ratetype + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetLatestRateFamily = function(ratefamilytype, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetLatestRateFamily?RateFamilyType=" + ratefamilytype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetHistoricalRates = function(ratetype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetHistoricalRates?RateType=" + ratetype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetHistoricalRateFamily = function(ratefamilytype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetHistoricalRateFamily?RateFamilyType=" + ratefamilytype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetRateDescription = function(ratetype, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetRateDescription?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawRateChartCustom = function(ratetype, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawRateChartCustom?RateType=" + ratetype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawRateChart = function(ratetype, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawRateChart?RateType=" + ratetype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawRateChartPreset = function(ratetype, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawRateChartPreset?RateType=" + ratetype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xInterBanks.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawYieldCurve = function(ratefamilytype, ondate, getlatestrate1, width, height, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawYieldCurve?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawYieldCurvePreset = function(ratefamilytype, ondate, getlatestrate1, width, height, preset, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawYieldCurvePreset?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.DrawYieldCurveCustom = function(ratefamilytype, ondate, getlatestrate1, width, height, design, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/DrawYieldCurveCustom?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.ListRates = function(callback)
{ var url = "http://www.xignite.com/xInterBanks.json/ListRates?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInterBanks.SearchRates = function(pattern, callback)
{ var url = "http://www.xignite.com/xInterBanks.json/SearchRates?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations = {};
Xignite.XigniteInvestorRelations.GetQuickQuote = function(symbol, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetQuickQuote?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetQuote = function(symbol, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetQuote?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetRealTimeQuote = function(symbol, includebidask, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetRealTimeQuote?Symbol=" + symbol + "&IncludeBidAsk=" + includebidask + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.QuerySECFilings = function(symbol, form, ownershipforms, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/QuerySECFilings?Symbol=" + symbol + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.QuerySECDocuments = function(symbol, form, ownershipforms, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/QuerySECDocuments?Symbol=" + symbol + "&Form=" + form + "&OwnershipForms=" + ownershipforms + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetSECFilingAsText = function(textfileurl, htmlize, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetSECFilingAsText?TextFileUrl=" + textfileurl + "&HTMLize=" + htmlize + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetSECFilingDetails = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetSECFilingDetails?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.ReadSECDocument = function(htmlfileurl, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/ReadSECDocument?HtmlFileUrl=" + htmlfileurl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawIntraDayChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawIntraDayChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawIntraDayChartCustom = function(symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawIntraDayChartCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawCapitalizationChartCustom = function(symbol, startdate, enddate, width, height, design, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawCapitalizationChartCustom?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawCapitalizationChart = function(symbol, startdate, enddate, width, height, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawCapitalizationChart?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawHistoricalChartCustom = function(symbol, additionalsymbols, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawHistoricalChartCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.DrawHistoricalChart = function(symbol, additionalsymbols, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/DrawHistoricalChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetHistoricalQuotesRange = function(symbol, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetHistoricalQuotesRange?Symbol=" + symbol + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteInvestorRelations.GetChartDesign = function(type, callback)
{ var url = "http://www.xignite.com/xInvestorRelations.json/GetChartDesign?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteLogos = {};
Xignite.XigniteLogos.GetLogo = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xLogos.json/GetLogo?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster = {};
Xignite.XigniteMaster.ListExchanges = function(callback)
{ var url = "http://www.xignite.com/xMaster.json/ListExchanges?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.ListIndustries = function(callback)
{ var url = "http://www.xignite.com/xMaster.json/ListIndustries?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.ListSectors = function(callback)
{ var url = "http://www.xignite.com/xMaster.json/ListSectors?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterAdditions = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterAdditions?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterDeletions = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterDeletions?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterChanges = function(exchange, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterChanges?Exchange=" + exchange + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterByExchange = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterByExchange?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterByIssue = function(exchange, issue, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterByIssue?Exchange=" + exchange + "&Issue=" + issue + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterBySector = function(exchange, sector, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterBySector?Exchange=" + exchange + "&Sector=" + sector + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetMasterByIndustry = function(exchange, industry, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetMasterByIndustry?Exchange=" + exchange + "&Industry=" + industry + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.ListSymbolsByExchange = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xMaster.json/ListSymbolsByExchange?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.ListCUSIPsByExchange = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xMaster.json/ListCUSIPsByExchange?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.ListCIKsByExchange = function(exchange, startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xMaster.json/ListCIKsByExchange?Exchange=" + exchange + "&StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetExchangeStatistics = function(startsymbol, endsymbol, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetExchangeStatistics?StartSymbol=" + startsymbol + "&EndSymbol=" + endsymbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMaster.GetAllSplits = function(startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMaster.json/GetAllSplits?StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals = {};
Xignite.XigniteMetals.GetLastLondonFixing = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastLondonFixing?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastLondonFixings = function(currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastLondonFixings?Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalLondonFixing = function(type, periodtype, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalLondonFixing?Type=" + type + "&PeriodType=" + periodtype + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalLondonFixingRange = function(type, periodtype, currency, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalLondonFixingRange?Type=" + type + "&PeriodType=" + periodtype + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetSpotMarketSummary = function(type, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetSpotMarketSummary?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastBasePrice = function(type, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastBasePrice?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastRealTimeMetalQuote = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastRealTimeMetalQuote?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastRealTimeExtendedMetalQuote = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastRealTimeExtendedMetalQuote?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetRealTimeMetalQuote = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetRealTimeMetalQuote?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetRealTimeMetalQuotes = function(types, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetRealTimeMetalQuotes?Types=" + types + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastRealTimeMetalQuotes = function(types, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastRealTimeMetalQuotes?Types=" + types + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastRealTimeMetalQuoteGMT = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastRealTimeMetalQuoteGMT?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLastRealTimeMetalQuotesGMT = function(types, currency, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLastRealTimeMetalQuotesGMT?Types=" + types + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalSpotPrice = function(type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalSpotPrice?Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalSpotPrices = function(types, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalSpotPrices?Types=" + types + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalSpotPriceRange = function(type, currency, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalSpotPriceRange?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalSpotPriceRangeInForeignCurrency = function(type, currency, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalSpotPriceRangeInForeignCurrency?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotChartCustom = function(type, currency, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotChartCustom?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotChartCustomBinary = function(type, currency, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotChartCustomBinary?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotChart = function(type, currency, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotChart?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotChartBinary = function(type, currency, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotChartBinary?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotIntradayChart = function(type, currency, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotIntradayChart?Type=" + type + "&Currency=" + currency + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotIntradayChartCustomBinary = function(type, currency, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotIntradayChartCustomBinary?Type=" + type + "&Currency=" + currency + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotIntradayChartCustom = function(type, currency, starttime, endtime, timezone, style, width, height, periodtype, tickperiods, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotIntradayChartCustom?Type=" + type + "&Currency=" + currency + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TimeZone=" + timezone + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&PeriodType=" + periodtype + "&TickPeriods=" + tickperiods + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetMetalSpotChartDesign = function(callback)
{ var url = "http://www.xignite.com/xMetals.json/GetMetalSpotChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLondonFixingChartCustom = function(type, periodtype, currency, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLondonFixingChartCustom?Type=" + type + "&PeriodType=" + periodtype + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLondonFixingChart = function(type, periodtype, currency, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLondonFixingChart?Type=" + type + "&PeriodType=" + periodtype + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetLondonFixingChartPreset = function(type, periodtype, currency, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetLondonFixingChartPreset?Type=" + type + "&PeriodType=" + periodtype + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetDelayedMetalFuture = function(type, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetDelayedMetalFuture?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetAllDelayedMetalFutures = function(type, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetAllDelayedMetalFutures?Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFuture = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFuture?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureRange = function(type, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureRange?Type=" + type + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetIntradayMetalFutureChart = function(type, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetIntradayMetalFutureChart?Type=" + type + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetIntradayMetalFutureChartBinary = function(type, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetIntradayMetalFutureChartBinary?Type=" + type + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetIntradayMetalFutureChartCustom = function(type, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetIntradayMetalFutureChartCustom?Type=" + type + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetIntradayMetalFutureChartCustomBinary = function(type, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetIntradayMetalFutureChartCustomBinary?Type=" + type + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureChart = function(type, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureChart?Type=" + type + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureChartBinary = function(type, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureChartBinary?Type=" + type + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureChartCustom = function(type, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureChartCustom?Type=" + type + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureChartCustomBinary = function(type, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureChartCustomBinary?Type=" + type + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetIntradayMetalFutureChartDesign = function(preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetIntradayMetalFutureChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetHistoricalMetalFutureChartDesign = function(preset, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetHistoricalMetalFutureChartDesign?Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetTick = function(type, currency, time, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetTick?Type=" + type + "&Currency=" + currency + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetTicks = function(type, currency, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetTicks?Type=" + type + "&Currency=" + currency + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMetals.GetTopIndustryHeadlines = function(count, callback)
{ var url = "http://www.xignite.com/xMetals.json/GetTopIndustryHeadlines?Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets = {};
Xignite.XigniteMoneyMarkets.ListRates = function(callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/ListRates?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.SearchRates = function(pattern, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/SearchRates?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetForwardRateAgreement = function(firsttype, secondtype, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetForwardRateAgreement?FirstType=" + firsttype + "&SecondType=" + secondtype + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetEuroDollarFRAStrip = function(callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetEuroDollarFRAStrip?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetSwaption = function(firsttype, secondtype, currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetSwaption?FirstType=" + firsttype + "&SecondType=" + secondtype + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetSwaptionFamily = function(currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetSwaptionFamily?Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetHistoricalSwaption = function(firsttype, secondtype, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetHistoricalSwaption?FirstType=" + firsttype + "&SecondType=" + secondtype + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetHistoricalSwaptionFamily = function(currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetHistoricalSwaptionFamily?Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetSwapRate = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetSwapRate?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetSwapRateFamily = function(currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetSwapRateFamily?Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetHistoricalSwapRate = function(type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetHistoricalSwapRate?Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetHistoricalSwapRateRange = function(type, currency, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetHistoricalSwapRateRange?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetTreasuryRate = function(type, currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetTreasuryRate?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteMoneyMarkets.GetTreasuryRateFamily = function(currency, callback)
{ var url = "http://www.xignite.com/xMoneyMarkets.json/GetTreasuryRateFamily?Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale = {};
Xignite.XigniteNASDAQLastSale.GetLastSale = function(symbol, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSale?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSales = function(symbols, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSales?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleByIdentifier = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleByIdentifier?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleChart = function(symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleChart?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleChartPreset = function(symbol, additionalsymbols, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleChartPreset?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleChartCustom = function(symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleChartCustom?Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleWithFallback = function(symbol, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleWithFallback?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSaleByIdentifierWithFallback = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSaleByIdentifierWithFallback?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNASDAQLastSale.GetLastSalesWithFallback = function(symbols, callback)
{ var url = "http://www.xignite.com/xNASDAQLastSale.json/GetLastSalesWithFallback?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews = {};
Xignite.XigniteNews.GetBriefings = function(callback)
{ var url = "http://www.xignite.com/xNews.json/GetBriefings?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetLastBriefing = function(callback)
{ var url = "http://www.xignite.com/xNews.json/GetLastBriefing?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetMarketNewsHeadlines = function(callback)
{ var url = "http://www.xignite.com/xNews.json/GetMarketNewsHeadlines?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetReutersMarketNewsHeadlines = function(callback)
{ var url = "http://www.xignite.com/xNews.json/GetReutersMarketNewsHeadlines?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetMarketNewsDetails = function(reference, callback)
{ var url = "http://www.xignite.com/xNews.json/GetMarketNewsDetails?Reference=" + reference + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetReutersMarketNewsDetails = function(reference, callback)
{ var url = "http://www.xignite.com/xNews.json/GetReutersMarketNewsDetails?Reference=" + reference + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetStockHeadlines = function(symbols, headlinecount, callback)
{ var url = "http://www.xignite.com/xNews.json/GetStockHeadlines?Symbols=" + symbols + "&HeadlineCount=" + headlinecount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetStockHeadlinesRange = function(date, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xNews.json/GetStockHeadlinesRange?Date=" + date + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetStockHeadlinesTopFromClass = function(symbols, callback)
{ var url = "http://www.xignite.com/xNews.json/GetStockHeadlinesTopFromClass?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetStockHeadlinesFromClass = function(symbols, headlinecount, callback)
{ var url = "http://www.xignite.com/xNews.json/GetStockHeadlinesFromClass?Symbols=" + symbols + "&HeadlineCount=" + headlinecount + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteNews.GetEarningAnnouncements = function(announcementdate, callback)
{ var url = "http://www.xignite.com/xNews.json/GetEarningAnnouncements?AnnouncementDate=" + announcementdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC = {};
Xignite.XigniteOFAC.GetCriteria = function(criteriatype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/GetCriteria?CriteriaType=" + criteriatype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.SearchByName = function(name, type, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/SearchByName?Name=" + name + "&Type=" + type + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.SearchOrganization = function(name, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/SearchOrganization?Name=" + name + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.SearchIndividual = function(name, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/SearchIndividual?Name=" + name + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.SearchVessel = function(name, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/SearchVessel?Name=" + name + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.SearchByAddress = function(type, address, city, country, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/SearchByAddress?Type=" + type + "&Address=" + address + "&City=" + city + "&Country=" + country + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOFAC.Search = function(name, title, type, address, city, country, searchtype, callback)
{ var url = "http://www.xignite.com/xOFAC.json/Search?Name=" + name + "&Title=" + title + "&Type=" + type + "&Address=" + address + "&City=" + city + "&Country=" + country + "&SearchType=" + searchtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions = {};
Xignite.XigniteOptions.GetBlackScholesOptionValue = function(type, stockprice, strikeprice, yearstomaturity, riskfreerate, volatility, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetBlackScholesOptionValue?Type=" + type + "&StockPrice=" + stockprice + "&StrikePrice=" + strikeprice + "&YearsToMaturity=" + yearstomaturity + "&RiskFreeRate=" + riskfreerate + "&Volatility=" + volatility + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetAllEquityOptionChain = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetAllEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetAllExtendedEquityOptionChain = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetAllExtendedEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetEquityOptionChain = function(identifier, identifiertype, month, year, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetExtendedEquityOptionChain = function(identifier, identifiertype, month, year, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetExtendedEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetEquityOption = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetEquityOption?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetExtendedEquityOption = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetExtendedEquityOption?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetEquityOptionSymbol = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetEquityOptionSymbol?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetEquityOptionBySymbol = function(symbol, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetEquityOptionBySymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetExtendedEquityOptionBySymbol = function(symbol, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetExtendedEquityOptionBySymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetEquityOptionBySymbols = function(symbols, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetEquityOptionBySymbols?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetExtendedEquityOptionBySymbols = function(symbols, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetExtendedEquityOptionBySymbols?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOptions.GetFutureOption = function(symbol, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xOptions.json/GetFutureOption?Symbol=" + symbol + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook = {};
Xignite.XigniteOutlook.GetTodaysOutlook = function(outlooktype, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetTodaysOutlook?OutlookType=" + outlooktype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetTomorrowsOutlook = function(outlooktype, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetTomorrowsOutlook?OutlookType=" + outlooktype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetYesterdaysOutlook = function(outlooktype, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetYesterdaysOutlook?OutlookType=" + outlooktype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForDate = function(outlooktype, fordate, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForDate?OutlookType=" + outlooktype + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForWeek = function(outlooktype, fordate, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForWeek?OutlookType=" + outlooktype + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForMonth = function(outlooktype, fordate, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForMonth?OutlookType=" + outlooktype + "&ForDate=" + fordate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForRange = function(outlooktype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForRange?OutlookType=" + outlooktype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForRangeLengthBackward = function(outlooktype, startdate, numberofdays, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForRangeLengthBackward?OutlookType=" + outlooktype + "&StartDate=" + startdate + "&NumberOfDays=" + numberofdays + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteOutlook.GetOutlookForRangeLengthForward = function(outlooktype, startdate, numberofdays, callback)
{ var url = "http://www.xignite.com/xOutlook.json/GetOutlookForRangeLengthForward?OutlookType=" + outlooktype + "&StartDate=" + startdate + "&NumberOfDays=" + numberofdays + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates = {};
Xignite.XigniteRates.GetLIBORSecure = function(username, type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLIBORSecure?Username=" + username + "&Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetLIBOR = function(type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLIBOR?Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetStateRate = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetStateRate?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetStateRates = function(type, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetStateRates?Type=" + type + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetFederalRate = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetFederalRate?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetFederalRates = function(type, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetFederalRates?Type=" + type + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetForwardRateAgreement = function(firsttype, secondtype, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetForwardRateAgreement?FirstType=" + firsttype + "&SecondType=" + secondtype + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetEuroDollarFRAStrip = function(callback)
{ var url = "http://www.xignite.com/xRates.json/GetEuroDollarFRAStrip?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetSwapRate = function(type, currency, callback)
{ var url = "http://www.xignite.com/xRates.json/GetSwapRate?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetSwapRateFamily = function(currency, callback)
{ var url = "http://www.xignite.com/xRates.json/GetSwapRateFamily?Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalSwapRate = function(type, currency, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalSwapRate?Type=" + type + "&Currency=" + currency + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalSwapRateRange = function(type, currency, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalSwapRateRange?Type=" + type + "&Currency=" + currency + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetREIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetREIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetSOFIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetSOFIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetREIBID = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetREIBID?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetOIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetOIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetSIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetSIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetCIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetCIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetSTIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetSTIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetVILIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetVILIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetWIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetWIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetEURIBOR = function(type, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetEURIBOR?Type=" + type + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalLIBOR = function(type, currency, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalLIBOR?Type=" + type + "&Currency=" + currency + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetWSJRate = function(type, asofdate, qualifier, callback)
{ var url = "http://www.xignite.com/xRates.json/GetWSJRate?Type=" + type + "&AsOfDate=" + asofdate + "&Qualifier=" + qualifier + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetTelerate3750 = function(asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetTelerate3750?AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetLastLondonFixing = function(type, currency, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLastLondonFixing?Type=" + type + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.ListRates = function(callback)
{ var url = "http://www.xignite.com/xRates.json/ListRates?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.ListRatesByRateFamily = function(ratefamilytype, callback)
{ var url = "http://www.xignite.com/xRates.json/ListRatesByRateFamily?RateFamilyType=" + ratefamilytype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.SearchRates = function(pattern, callback)
{ var url = "http://www.xignite.com/xRates.json/SearchRates?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateSymbol = function(ratetype, currency, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateSymbol?RateType=" + ratetype + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateFromSymbol = function(symbol, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateFromSymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRate = function(ratetype, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRate?RateType=" + ratetype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateFamilyTable = function(ratefamilytype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateFamilyTable?RateFamilyType=" + ratefamilytype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetAverageRate = function(ratetype, periodtype, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetAverageRate?RateType=" + ratetype + "&PeriodType=" + periodtype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetAverageRates = function(ratetype, periodtype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetAverageRates?RateType=" + ratetype + "&PeriodType=" + periodtype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateMovingAverage = function(ratetype, periodtype, averageperiods, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateMovingAverage?RateType=" + ratetype + "&PeriodType=" + periodtype + "&AveragePeriods=" + averageperiods + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetDailyAverage = function(ratetype, calendardays, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetDailyAverage?RateType=" + ratetype + "&CalendarDays=" + calendardays + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetMonthlyTreasuryAverage = function(ratetype, month, year, callback)
{ var url = "http://www.xignite.com/xRates.json/GetMonthlyTreasuryAverage?RateType=" + ratetype + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateFamily = function(ratefamilytype, asofdate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateFamily?RateFamilyType=" + ratefamilytype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetTodaysRate = function(ratetype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetTodaysRate?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetLatestRate = function(ratetype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLatestRate?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetLatestRateSpecial = function(ratetype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLatestRateSpecial?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetLatestRateFamily = function(ratefamilytype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetLatestRateFamily?RateFamilyType=" + ratefamilytype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRealTimeRate = function(ratetype, time, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRealTimeRate?RateType=" + ratetype + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateAsOfTime = function(ratetype, time, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateAsOfTime?RateType=" + ratetype + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalRates = function(ratetype, periodtype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalRates?RateType=" + ratetype + "&PeriodType=" + periodtype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalWeeklyRates = function(ratetype, periodtype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalWeeklyRates?RateType=" + ratetype + "&PeriodType=" + periodtype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetHistoricalRateFamily = function(ratefamilytype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetHistoricalRateFamily?RateFamilyType=" + ratefamilytype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateDescription = function(ratetype, callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateDescription?RateType=" + ratetype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetRateStatistics = function(callback)
{ var url = "http://www.xignite.com/xRates.json/GetRateStatistics?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawRateChartCustom = function(ratetype, periodtype, startdate, enddate, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawRateChartCustom?RateType=" + ratetype + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawRateChart = function(ratetype, periodtype, startdate, enddate, style, width, height, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawRateChart?RateType=" + ratetype + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawRateChartPreset = function(ratetype, periodtype, startdate, enddate, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawRateChartPreset?RateType=" + ratetype + "&PeriodType=" + periodtype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xRates.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawYieldCurve = function(ratefamilytype, ondate, getlatestrate1, width, height, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawYieldCurve?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawYieldCurvePreset = function(ratefamilytype, ondate, getlatestrate1, width, height, preset, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawYieldCurvePreset?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.DrawYieldCurveCustom = function(ratefamilytype, ondate, getlatestrate1, width, height, design, callback)
{ var url = "http://www.xignite.com/xRates.json/DrawYieldCurveCustom?RateFamilyType=" + ratefamilytype + "&OnDate=" + ondate + "&GetLatestRate1=" + getlatestrate1 + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.Interpolate = function(methodology, knownxvalues, knownyvalues, xvaluestoplot, callback)
{ var url = "http://www.xignite.com/xRates.json/Interpolate?Methodology=" + methodology + "&KnownXValues=" + knownxvalues + "&KnownYValues=" + knownyvalues + "&XValuesToPlot=" + xvaluestoplot + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetFHLBankRates = function(fhlbanktype, fhlbankratetype, asofdate, fhlbankterm, callback)
{ var url = "http://www.xignite.com/xRates.json/GetFHLBankRates?FHLBankType=" + fhlbanktype + "&FHLBankRateType=" + fhlbankratetype + "&AsOfDate=" + asofdate + "&FHLBankTerm=" + fhlbankterm + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetAuctionResult = function(cusip, callback)
{ var url = "http://www.xignite.com/xRates.json/GetAuctionResult?CUSIP=" + cusip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRates.GetAuctionResults = function(startdate, enddate, callback)
{ var url = "http://www.xignite.com/xRates.json/GetAuctionResults?StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime = {};
Xignite.XigniteRealTime.GetRealChartPreset = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, preset, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChartPreset?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealChart = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChart?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealChartCustom = function(exchange, symbol, additionalsymbols, starttime, endtime, style, width, height, design, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealChartCustom?Exchange=" + exchange + "&Symbol=" + symbol + "&AdditionalSymbols=" + additionalsymbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&Style=" + style + "&Width=" + width + "&Height=" + height + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuote = function(exchange, symbol, includebidask, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuote?Exchange=" + exchange + "&Symbol=" + symbol + "&IncludeBidAsk=" + includebidask + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuoteByIdentifier = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuoteByIdentifier?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExtendedRealQuote = function(exchange, symbol, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExtendedRealQuote?Exchange=" + exchange + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuotes = function(exchange, symbols, includebidask, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuotes?Exchange=" + exchange + "&Symbols=" + symbols + "&IncludeBidAsk=" + includebidask + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExtendedRealQuotes = function(exchange, symbols, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExtendedRealQuotes?Exchange=" + exchange + "&Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealQuotesTicker = function(symbols, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealQuotesTicker?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTick = function(exchange, symbol, time, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTick?Exchange=" + exchange + "&Symbol=" + symbol + "&Time=" + time + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTicks = function(exchange, symbol, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTicks?Exchange=" + exchange + "&Symbol=" + symbol + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetTickCollections = function(exchange, symbols, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetTickCollections?Exchange=" + exchange + "&Symbols=" + symbols + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetHistoricalTicksAsOfDate = function(exchange, symbol, asofdate, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetHistoricalTicksAsOfDate?Exchange=" + exchange + "&Symbol=" + symbol + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetHistoricalTicks = function(exchange, symbol, historicalperiod, starttime, endtime, tickprecision, tickperiods, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetHistoricalTicks?Exchange=" + exchange + "&Symbol=" + symbol + "&HistoricalPeriod=" + historicalperiod + "&StartTime=" + starttime + "&EndTime=" + endtime + "&TickPrecision=" + tickprecision + "&TickPeriods=" + tickperiods + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.IsTraded = function(exchange, symbol, callback)
{ var url = "http://www.xignite.com/xRealTime.json/IsTraded?Exchange=" + exchange + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetBook = function(exchange, symbol, maximumorders, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetBook?Exchange=" + exchange + "&Symbol=" + symbol + "&MaximumOrders=" + maximumorders + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetBookDetails = function(exchange, symbol, maximumorders, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetBookDetails?Exchange=" + exchange + "&Symbol=" + symbol + "&MaximumOrders=" + maximumorders + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.SearchByMarketCap = function(exchange, percentchange, minimummarketcap, maximummarketcap, callback)
{ var url = "http://www.xignite.com/xRealTime.json/SearchByMarketCap?Exchange=" + exchange + "&PercentChange=" + percentchange + "&MinimumMarketCap=" + minimummarketcap + "&MaximumMarketCap=" + maximummarketcap + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopMovers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopMovers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopGainers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopGainers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTopLosers = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTopLosers?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetRealTop = function(exchange, count, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetRealTop?Exchange=" + exchange + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTime.GetExchangeTime = function(exchange, callback)
{ var url = "http://www.xignite.com/xRealTime.json/GetExchangeTime?Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions = {};
Xignite.XigniteRealTimeOptions.GetBlackScholesOptionValue = function(type, stockprice, strikeprice, yearstomaturity, riskfreerate, volatility, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetBlackScholesOptionValue?Type=" + type + "&StockPrice=" + stockprice + "&StrikePrice=" + strikeprice + "&YearsToMaturity=" + yearstomaturity + "&RiskFreeRate=" + riskfreerate + "&Volatility=" + volatility + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetAllEquityOptionChain = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetAllEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetAllExtendedEquityOptionChain = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetAllExtendedEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetEquityOptionChain = function(identifier, identifiertype, month, year, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetExtendedEquityOptionChain = function(identifier, identifiertype, month, year, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetExtendedEquityOptionChain?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Month=" + month + "&Year=" + year + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetEquityOption = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetEquityOption?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetExtendedEquityOption = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetExtendedEquityOption?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetEquityOptionSymbol = function(identifier, identifiertype, type, month, year, strikeprice, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetEquityOptionSymbol?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Type=" + type + "&Month=" + month + "&Year=" + year + "&StrikePrice=" + strikeprice + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetEquityOptionBySymbol = function(symbol, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetEquityOptionBySymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetExtendedEquityOptionBySymbol = function(symbol, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetExtendedEquityOptionBySymbol?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetEquityOptionBySymbols = function(symbols, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetEquityOptionBySymbols?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteRealTimeOptions.GetExtendedEquityOptionBySymbols = function(symbols, callback)
{ var url = "http://www.xignite.com/xRealTimeOptions.json/GetExtendedEquityOptionBySymbols?Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases = {};
Xignite.XigniteReleases.GetTodaysSecurityHeadlines = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetTodaysSecurityHeadlines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetTodaysMarketHeadlines = function(callback)
{ var url = "http://www.xignite.com/xReleases.json/GetTodaysMarketHeadlines?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetTopSecurityHeadlines = function(identifier, identifiertype, count, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetTopSecurityHeadlines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetTopMarketHeadlines = function(count, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetTopMarketHeadlines?Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetLastSecurityHeadlines = function(identifier, identifiertype, sincedate, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetLastSecurityHeadlines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&SinceDate=" + sincedate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetLastMarketHeadlines = function(sincedate, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetLastMarketHeadlines?SinceDate=" + sincedate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.SearchSecurityHeadlines = function(identifier, identifiertype, source, title, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xReleases.json/SearchSecurityHeadlines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Source=" + source + "&Title=" + title + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.SearchMarketHeadlines = function(source, title, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xReleases.json/SearchMarketHeadlines?Source=" + source + "&Title=" + title + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetHistoricalSecurityHeadlines = function(identifier, identifiertype, source, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetHistoricalSecurityHeadlines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&Source=" + source + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetHistoricalMarketHeadlines = function(source, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetHistoricalMarketHeadlines?Source=" + source + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteReleases.GetReleaseContent = function(releaseid, callback)
{ var url = "http://www.xignite.com/xReleases.json/GetReleaseContent?ReleaseID=" + releaseid + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener = {};
Xignite.XigniteScreener.ListCriteria = function(callback)
{ var url = "http://www.xignite.com/xScreener.json/ListCriteria?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.SearchFundamentals = function(pattern, callback)
{ var url = "http://www.xignite.com/xScreener.json/SearchFundamentals?Pattern=" + pattern + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.Search = function(criteria, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/Search?Criteria=" + criteria + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.Compare = function(comparetype1, comparison, comparetype2, type, searchtype, firstvalue, secondvalue, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/Compare?CompareType1=" + comparetype1 + "&Comparison=" + comparison + "&CompareType2=" + comparetype2 + "&Type=" + type + "&SearchType=" + searchtype + "&FirstValue=" + firstvalue + "&SecondValue=" + secondvalue + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.GetTop = function(orderby, direction, criteria, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/GetTop?OrderBy=" + orderby + "&Direction=" + direction + "&Criteria=" + criteria + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.SingleSearch = function(type, searchtype, firstvalue, secondvalue, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/SingleSearch?Type=" + type + "&SearchType=" + searchtype + "&FirstValue=" + firstvalue + "&SecondValue=" + secondvalue + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.GetTopSingle = function(orderby, direction, type, searchtype, firstvalue, secondvalue, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/GetTopSingle?OrderBy=" + orderby + "&Direction=" + direction + "&Type=" + type + "&SearchType=" + searchtype + "&FirstValue=" + firstvalue + "&SecondValue=" + secondvalue + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.DoubleSearch = function(type1, searchtype1, firstvalue1, secondvalue1, type2, searchtype2, firstvalue2, secondvalue2, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/DoubleSearch?Type1=" + type1 + "&SearchType1=" + searchtype1 + "&FirstValue1=" + firstvalue1 + "&SecondValue1=" + secondvalue1 + "&Type2=" + type2 + "&SearchType2=" + searchtype2 + "&FirstValue2=" + firstvalue2 + "&SecondValue2=" + secondvalue2 + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.TripleSearch = function(type1, searchtype1, firstvalue1, secondvalue1, type2, searchtype2, firstvalue2, secondvalue2, type3, searchtype3, firstvalue3, secondvalue3, count, callback)
{ var url = "http://www.xignite.com/xScreener.json/TripleSearch?Type1=" + type1 + "&SearchType1=" + searchtype1 + "&FirstValue1=" + firstvalue1 + "&SecondValue1=" + secondvalue1 + "&Type2=" + type2 + "&SearchType2=" + searchtype2 + "&FirstValue2=" + firstvalue2 + "&SecondValue2=" + secondvalue2 + "&Type3=" + type3 + "&SearchType3=" + searchtype3 + "&FirstValue3=" + firstvalue3 + "&SecondValue3=" + secondvalue3 + "&Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.Count = function(criteria, callback)
{ var url = "http://www.xignite.com/xScreener.json/Count?Criteria=" + criteria + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteScreener.GetDetails = function(symbol, callback)
{ var url = "http://www.xignite.com/xScreener.json/GetDetails?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity = {};
Xignite.XigniteSecurity.LookupBond = function(cusip, callback)
{ var url = "http://www.xignite.com/xSecurity.json/LookupBond?CUSIP=" + cusip + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.MapSecurity = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/MapSecurity?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.MapSecurityDetail = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/MapSecurityDetail?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.ListSecurities = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/ListSecurities?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.MapSecurities = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/MapSecurities?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.MapSecurityDetails = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/MapSecurityDetails?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetDividendHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetDividendHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetDividendHistories = function(identifiers, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetDividendHistories?Identifiers=" + identifiers + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetExtendedDividendHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetExtendedDividendHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetSplitHistory = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetSplitHistory?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetSplitRatio = function(identifier, identifiertype, fromdate, todate, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetSplitRatio?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&FromDate=" + fromdate + "&ToDate=" + todate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.Lookup = function(name, type, callback)
{ var url = "http://www.xignite.com/xSecurity.json/Lookup?Name=" + name + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.LookupByExchange = function(name, exchange, callback)
{ var url = "http://www.xignite.com/xSecurity.json/LookupByExchange?Name=" + name + "&Exchange=" + exchange + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.LookupByExchanges = function(name, exchanges, callback)
{ var url = "http://www.xignite.com/xSecurity.json/LookupByExchanges?Name=" + name + "&Exchanges=" + exchanges + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.LookupStock = function(name, callback)
{ var url = "http://www.xignite.com/xSecurity.json/LookupStock?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.LookupFund = function(name, callback)
{ var url = "http://www.xignite.com/xSecurity.json/LookupFund?Name=" + name + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetCUSIPStock = function(symbol, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetCUSIPStock?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetCUSIPFund = function(symbol, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetCUSIPFund?Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetLargestDeclines = function(identifier, identifiertype, asofdate, yearsofhistory, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetLargestDeclines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&YearsOfHistory=" + yearsofhistory + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetLargestCapDeclines = function(identifier, identifiertype, asofdate, yearsofhistory, extractifunavailable, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetLargestCapDeclines?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&YearsOfHistory=" + yearsofhistory + "&ExtractIfUnavailable=" + extractifunavailable + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetHistoricalMonthlyMarketCapitalization = function(identifier, identifiertype, startdate, enddate, extractifunavailable, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetHistoricalMonthlyMarketCapitalization?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ExtractIfUnavailable=" + extractifunavailable + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetHistoricalMarketCapitalization = function(identifier, identifiertype, startdate, enddate, extractifunavailable, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetHistoricalMarketCapitalization?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ExtractIfUnavailable=" + extractifunavailable + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetHistoricalMarketCapitalizationCustom = function(identifier, identifiertype, startdate, enddate, extractifunavailable, backupoption, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetHistoricalMarketCapitalizationCustom?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ExtractIfUnavailable=" + extractifunavailable + "&BackupOption=" + backupoption + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.GetMarketCapitalization = function(identifier, identifiertype, asofdate, callback)
{ var url = "http://www.xignite.com/xSecurity.json/GetMarketCapitalization?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteSecurity.MapSymbol = function(symbol, fromtype, totype, callback)
{ var url = "http://www.xignite.com/xSecurity.json/MapSymbol?Symbol=" + symbol + "&FromType=" + fromtype + "&ToType=" + totype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics = {};
Xignite.XigniteStatistics.GetCategoriesAndTopics = function(callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetCategoriesAndTopics?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetCategories = function(callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetCategories?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopics = function(categorycode, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopics?CategoryCode=" + categorycode + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicDetails = function(topiccode, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicDetails?TopicCode=" + topiccode + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicStatistics = function(topiccode, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicStatistics?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicData = function(topiccode, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicData?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetLatestTopicData = function(topiccode, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetLatestTopicData?TopicCode=" + topiccode + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetAnnualizedTopicData = function(topiccode, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetAnnualizedTopicData?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicChart = function(topiccode, startdate, enddate, chartwidth, chartheight, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicChart?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicChartPreset = function(topiccode, startdate, enddate, chartwidth, chartheight, preset, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicChartPreset?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicChartCustom = function(topiccode, startdate, enddate, chartwidth, chartheight, design, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicChartCustom?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicBinaryChart = function(topiccode, startdate, enddate, chartwidth, chartheight, preset, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicBinaryChart?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicBinaryChartPreset = function(topiccode, startdate, enddate, chartwidth, chartheight, preset, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicBinaryChartPreset?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetTopicBinaryChartCustom = function(topiccode, startdate, enddate, chartwidth, chartheight, design, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetTopicBinaryChartCustom?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartUrl = function(topiccode, startdate, enddate, chartwidth, chartheight, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartUrl?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartUrlPreset = function(topiccode, startdate, enddate, chartwidth, chartheight, preset, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartUrlPreset?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartUrlCustom = function(topiccode, startdate, enddate, chartwidth, chartheight, design, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartUrlCustom?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartBinary = function(topiccode, startdate, enddate, chartwidth, chartheight, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartBinary?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartBinaryPreset = function(topiccode, startdate, enddate, chartwidth, chartheight, preset, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartBinaryPreset?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Preset=" + preset + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartBinaryCustom = function(topiccode, startdate, enddate, chartwidth, chartheight, design, callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartBinaryCustom?TopicCode=" + topiccode + "&StartDate=" + startdate + "&EndDate=" + enddate + "&ChartWidth=" + chartwidth + "&ChartHeight=" + chartheight + "&Design=" + design + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteStatistics.GetChartDesign = function(callback)
{ var url = "http://www.xignite.com/xStatistics.json/GetChartDesign?_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteTranscripts = {};
Xignite.XigniteTranscripts.GetAllTranscripts = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xTranscripts.json/GetAllTranscripts?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteTranscripts.GetLatestTranscript = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xTranscripts.json/GetLatestTranscript?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteTranscripts.GetPermittedContent = function(transcripturl, callback)
{ var url = "http://www.xignite.com/xTranscripts.json/GetPermittedContent?TranscriptURL=" + transcripturl + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteTranscripts.GetLatestTranscripts = function(count, callback)
{ var url = "http://www.xignite.com/xTranscripts.json/GetLatestTranscripts?Count=" + count + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP = {};
Xignite.XigniteVWAP.GetHistoricalVWAP = function(identifier, identifiertype, historicalvwaptype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&HistoricalVWAPType=" + historicalvwaptype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetHistoricalDailyVWAP = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalDailyVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetHistoricalMonthlyVWAP = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalMonthlyVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetHistoricalWeeklyVWAP = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalWeeklyVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetHistoricalPeriodVWAP = function(identifier, identifiertype, startdate, enddate, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalPeriodVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartDate=" + startdate + "&EndDate=" + enddate + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetIntradayVWAP = function(identifier, identifiertype, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetIntradayVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetHistoricalIntradayVWAP = function(identifier, identifiertype, asofdate, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetHistoricalIntradayVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetCorporateIntradayVWAP = function(identifier, identifiertype, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetCorporateIntradayVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetCorporateHistoricalVWAP = function(identifier, identifiertype, asofdate, starttime, endtime, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetCorporateHistoricalVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&AsOfDate=" + asofdate + "&StartTime=" + starttime + "&EndTime=" + endtime + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetDelayedVWAP = function(identifier, identifiertype, includebeforemarket, includeaftermarket, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetDelayedVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&IncludeBeforeMarket=" + includebeforemarket + "&IncludeAfterMarket=" + includeaftermarket + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.GetRealTimeVWAP = function(identifier, identifiertype, includebeforemarket, includeaftermarket, callback)
{ var url = "http://www.xignite.com/xVWAP.json/GetRealTimeVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&IncludeBeforeMarket=" + includebeforemarket + "&IncludeAfterMarket=" + includeaftermarket + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.Get1MinuteVWAP = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xVWAP.json/Get1MinuteVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.Get5MinuteVWAP = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xVWAP.json/Get5MinuteVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.Get10MinuteVWAP = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xVWAP.json/Get10MinuteVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.Get30MinuteVWAP = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xVWAP.json/Get30MinuteVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteVWAP.Get60MinuteVWAP = function(identifier, identifiertype, callback)
{ var url = "http://www.xignite.com/xVWAP.json/Get60MinuteVWAP?Identifier=" + identifier + "&IdentifierType=" + identifiertype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists = {};
Xignite.XigniteWatchLists.AddWatchList = function(username, password, identifier, name, description, type, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchList?Username=" + username + "&Password=" + password + "&Identifier=" + identifier + "&Name=" + name + "&Description=" + description + "&Type=" + type + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.DeleteWatchList = function(username, password, identifier, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/DeleteWatchList?Username=" + username + "&Password=" + password + "&Identifier=" + identifier + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.GetWatchList = function(username, password, watchlist, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/GetWatchList?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.AddWatchListItem = function(username, password, watchlist, symbol, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchListItem?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.AddWatchListItems = function(username, password, watchlist, symbols, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchListItems?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&Symbols=" + symbols + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.AddWatchListRate = function(username, password, watchlist, ratetype, currency, periodtype, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchListRate?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&RateType=" + ratetype + "&Currency=" + currency + "&PeriodType=" + periodtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.AddWatchListMetal = function(username, password, watchlist, londonfixing, currency, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchListMetal?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&LondonFixing=" + londonfixing + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.AddWatchListCurrency = function(username, password, watchlist, currency, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/AddWatchListCurrency?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.DeleteWatchListItem = function(username, password, watchlist, symbol, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/DeleteWatchListItem?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&Symbol=" + symbol + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.DeleteWatchListRate = function(username, password, watchlist, ratetype, currency, periodtype, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/DeleteWatchListRate?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&RateType=" + ratetype + "&Currency=" + currency + "&PeriodType=" + periodtype + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.DeleteWatchListMetal = function(username, password, watchlist, londonfixing, currency, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/DeleteWatchListMetal?Username=" + username + "&Password=" + password + "&WatchList=" + watchlist + "&LondonFixing=" + londonfixing + "&Currency=" + currency + "&_callback=?"; $.getJSON(url, callback);}
Xignite.XigniteWatchLists.ListWatchLists = function(username, password, callback)
{ var url = "http://www.xignite.com/xWatchLists.json/ListWatchLists?Username=" + username + "&Password=" + password + "&_callback=?"; $.getJSON(url, callback);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment