Code Monkey home page Code Monkey logo

api's Introduction

Alpha Rho Technologies LLC API Documentation

This repository contains Python utilities for interfacing with AlpharhoTech's various APIs. With these utilities, users can retrieve investment strategy allocations and more.

Table of Contents

Introduction

Alpha Rho Technologies LLC provides a suite of APIs designed for investors seeking detailed analytics and data on various investment strategies. This repository is aimed at simplifying and streamlining the process of accessing that data.

Setup

  1. Prerequisites:

    • Python 3.6 or higher.
    • requests module:
    pip install requests
  2. Clone the Repository:

    git clone https://github.com/Alpha-Rho-Technologies/API
  3. Navigate to the cloned directory:

    cd path_to_directory
  4. Provide Credentials: Replace "your_username" and "your_password" with your actual Alpha Rho Technologies account's username and password.

    from API import ARTapi
    
    ART_API = ARTapi(user_name = your_username, password = your_password)

Available APIs

Only users with authorised credentials can access the API information. Authorization is given on a product basis. We currently have two algorithms powering our strategies: Neural Q and Neural S. When fetching a strategy information, reference must be made to the algorithm powering the strategy.

Link to notebook with code examples: example.ipynb

Strategy Portfolio

Fetches the current investment strategy allocation a user is subscribed to from Alpha Rho Technologies.

Example:

from API import ARTapi

ART_API = ARTapi(user_name = your_username, password = your_password)

data = ART_API.sp(strategy = 'global_macro', engine = 'NeuralQ')

Portfolio data is returned in JSON format by our API and parsed to dictionary format in python.

Strategy Historical Price Data

Retrieves the historical price data for the investment strategy that a user is subscribed to from Alpha Rho Technologies.

Example:

from API import ARTapi

ART_API = ARTapi(user_name = your_username, password = your_password)

data = ART_API.shpd(strategy = 'global_macro', engine = 'NeuralQ')

Portfolio data is returned in JSON format by our API and parsed to dictionary format in python.

Strategy Historical Portfolios:

Retrieves the historical portfolios for the investment strategy that a user is subscribed to from Alpha Rho Technologies.

Example:

from API import ARTapi

ART_API = ARTapi(user_name = your_username, password = your_password)

data = ART_API.shp(strategy = 'global_macro', engine = 'NeuralQ')

Portfolio data is returned in JSON format by our API and parsed to dictionary format in python.

Support

For any queries or issues related to the API utilities, please raise an issue in this repository or contact [email protected].

api's People

Contributors

manuel-rr avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.