FactSet.SDK.Formula 2.2.5

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package FactSet.SDK.Formula --version 2.2.5
NuGet\Install-Package FactSet.SDK.Formula -Version 2.2.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FactSet.SDK.Formula" Version="2.2.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FactSet.SDK.Formula --version 2.2.5
#r "nuget: FactSet.SDK.Formula, 2.2.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FactSet.SDK.Formula as a Cake Addin
#addin nuget:?package=FactSet.SDK.Formula&version=2.2.5

// Install FactSet.SDK.Formula as a Cake Tool
#tool nuget:?package=FactSet.SDK.Formula&version=2.2.5

FactSet

Formula client library for .NET

API Version Nuget Apache-2 license

FactSet Formula API

FactSet’s Formula API is a modern, flexible, formula-based API that enables users to access FactSet’s wide range of financial data and content. The API offers two endpoints, one optimized for time-series analysis and one designed for cross-sectional analysis, providing users a simplified interface into FactSet’s expansive offering. By providing two endpoints, it allows for the optimization of user workflows, while reducing complexity.

Leverage the power and flexibility of the Formula API to -

  • Pull data from across most content sets that a user has access to in a single request
  • Include business logic and mathematical operations in request
  • Submit a dynamic universe in both endpoints
  • Return the fsymId to easily combine with other FactSet content / products
  • Set the trading calendar
  • Define custom display names

Formula API Request Builder

The Formula API Request Builder provides users everything they need to form a Formula API request. In the Request Builder, you can select identifiers, build a universe expression, select FQL or Screening formulas, easily apply business logic and mathematical functions to the FQL or Screening formulas, specify optional parameters, and construct a GET or POST request. The Request Builder eliminates the need to have previous FQL and Screening knowledge and allows you to quickly find your desired data items and form the request.

The Formula API Request Builder can be accessed by navigating to https://developer.factset.com/formula-api-request-builder and logging in using your FactSet.net ID. When using the Request Builder to construct requests for the one of the Formula API's endpoints, be sure to toggle to the correct endpoint at the top of the page.

How to Check the Health and Availability of the Formula API

Please use the below endpoint to check the health and availability of the Formula API. You must be authorized for this API to use the Health endpoint.

https://api.factset.com/formula-api/health

How to Programmatically Download API Specification File

You can download the FactSet Formula API Specification File in .yaml. using the "Download Spec" button to the right of the version number. This specification can then be used for Codegen to create your own SDKs.

This .NET package is automatically generated by the OpenAPI Generator project:

  • API version: 1.7.1
  • SDK version: 2.2.5
  • Build package: com.factset.sdk.codegen.FactSetCSharpNetCoreClientCodegen

Requirements

  • .NET Standard >= 2.0

Installation

.NET CLI

dotnet add package FactSet.SDK.Utils
dotnet add package FactSet.SDK.Formula -v 2.2.5

NuGet

nuget install FactSet.SDK.Utils
nuget install FactSet.SDK.Formula -Version 2.2.5

Usage

  1. Generate authentication credentials.
  2. Setup .NET Standard 2.0 compatible environment.
  3. Install dependencies.
  4. Run the following:

[!IMPORTANT] The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.

Example Code

using System;
using System.Net;
using System.Threading.Tasks;
using FactSet.SDK.Utils.Authentication;
using FactSet.SDK.Formula.Api;
using FactSet.SDK.Formula.Client;
using FactSet.SDK.Formula.Model;

namespace Example
{
    public static class GetBatchDataExample
    {
        public static async Task Main()
        {
            var config = new FactSet.SDK.Formula.Client.Configuration();

            // Examples for each supported authentication method are below,
            // choose one that satisfies your use case.

            /* (Preferred) OAuth 2.0: FactSetOAuth2 */
            // See https://github.com/FactSet/enterprise-sdk#oauth-20
            // for information on how to create the app-config.json file
            //
            // The confidential client instance should be reused in production environments.
            // See https://github.com/FactSet/enterprise-sdk-utils-dotnet#authentication
            // for more information on using the ConfidentialClient class
            ConfidentialClient confidentialClient = await ConfidentialClient.CreateAsync("/path/to/app-config.json");
            config.OAuth2Client = confidentialClient;

            /* Basic authentication: FactSetApiKey */
            // See https://github.com/FactSet/enterprise-sdk#api-key
            // for information how to create an API key
            // config.Username = "USERNAME-SERIAL";
            // config.Password = "API-KEY";

            var apiInstance = new BatchProcessingApi(config);
            var id = "id_example";  // Guid | Batch Request identifier.

            try
            {
                // Returns the response for a Batch Request
                BatchProcessingApi.GetBatchDataResponseWrapper result = apiInstance.GetBatchData(id);

                switch (result.StatusCode)
                {

                    case (HttpStatusCode)200:
                        Console.WriteLine(result.Response200);
                        break;

                    case (HttpStatusCode)202:
                        Console.WriteLine(result.Response202);
                        break;

                }
            }
            catch (ApiException e)
            {
                Console.WriteLine("Exception when calling BatchProcessingApi.GetBatchData: " + e.Message );
                Console.WriteLine("Status Code: "+ e.ErrorCode);
                Console.WriteLine(e.StackTrace);
            }
        }
    }
}

Using a Proxy

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Documentation for API Endpoints

All URIs are relative to https://api.factset.com/formula-api

Class Method HTTP request Description
BatchProcessingApi GetBatchData GET /v1/batch-result Returns the response for a Batch Request
BatchProcessingApi GetBatchDataWithPost POST /v1/batch-result Returns the status for a Batch Request
BatchProcessingApi GetBatchStatus GET /v1/batch-status Returns the status for a Batch Request
BatchProcessingApi GetBatchStatusWithPost POST /v1/batch-status Returns the status for a Batch Request
CrossSectionalApi GetCrossSectionalData GET /v1/cross-sectional Retrieve data items (Screening formulas) for a list of identifiers or defined universe.
CrossSectionalApi GetCrossSectionalDataForList POST /v1/cross-sectional Retrieve data items (Screening formulas) for a list of identifiers or defined universe.
TimeSeriesApi GetTimeSeriesData GET /v1/time-series Retrieve data items (FQL formulas) for a list of identifiers or defined universe.
TimeSeriesApi GetTimeSeriesDataForList POST /v1/time-series Retrieve data items (FQL formulas) for a list of identifiers or defined universe.

Documentation for Models

Documentation for Authorization

FactSetApiKey

  • Type: HTTP basic authentication

FactSetOAuth2

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes: N/A

Contributing

Please refer to the contributing guide.

Copyright 2022 FactSet Research Systems Inc

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.5 80 5/15/2024
2.2.4 103 4/10/2024
2.2.3 91 2/28/2024
2.2.2 93 2/22/2024
2.2.1 1,057 10/25/2023
2.2.0 127 9/26/2023
2.1.5 108 9/12/2023
2.1.4 110 8/30/2023
2.1.3 124 8/11/2023
2.1.2 116 6/6/2023
2.1.1 115 5/11/2023
2.1.0 147 4/12/2023
2.0.2 194 3/1/2023
2.0.1 199 2/24/2023
2.0.0 235 1/26/2023
1.0.0 358 8/31/2022
0.21.0 369 7/21/2022
0.20.0 359 5/24/2022

Refer to Changelog on GitHub source repository