LogoLogo
Back to HaasOnline.comSwitch to Trade Platform
3.x
3.x
  • Welcome
  • Getting Started
    • Using Local API Server
    • Authentication
    • Response
      • Error Codes
  • HaasScript
    • Using HaasScript
      • HaasScript Facts
      • Charting
      • Order Handling
      • Interval
      • Input Fields
      • Positions Handling
        • Fee correction
      • Position Information
      • Memory Management
      • Optimizations
      • Signal Handling
      • Trading
    • Script Editor
      • Syntax
      • Parameters
      • Interaction
    • Visual Editor
      • Blocks
      • Parameters
      • Flow Control
      • Interaction
    • Custom Commands
    • Tutorials
      • Trade Bot Guide
        • Creating A Trade Bot
          • Visual Editor Guide
          • Script Editor Guide
          • Custom Containers
        • Customizing Indicators
        • Customizing Safeties
        • Customizing Insurances
        • Creating Easy Indicators
      • Unmanaged Trading Guide
        • Executing Orders
        • Managing Orders
        • Managing Positions
        • Managing Wallet
      • Script Editor
        • Classes
        • MadHatter BBands
        • Percentage Price Change
      • Visual Editor
        • Importing Scripts
        • SmoothRSI
        • Scalper Bot
    • Commands
      • Array Helpers
      • Charting
      • Constants
      • Custom Commands Helpers
      • Easy Indicators
      • Easy Insurances
      • Easy Safeties
      • Equations
      • Flow Control
      • Input Fields
      • Input Settings
      • Mathematical
      • Memory Helpers
      • Miscellaneous
      • Order Handling
      • Order Information
      • Position Information
      • Position Prices
      • Price Data
      • Price Market Information
      • Profit Information
      • Settings
      • Signal Helpers
      • String Helpers
      • Technical Analysis
      • Technical Analysis Helpers
      • Time Information
      • Trade Actions (Managed)
      • Trade Actions (Unmanaged)
      • Trade Bot
      • Trade Market Information
      • Wallet
  • API Endpoints
    • Software API
    • Market Data API
    • Account Data API
    • Trade Data API
    • Advanced Order API
    • Trade Bot API
    • Custom Trade Bot API
    • ENUMS
    • Data Objects
  • Examples
    • Script Bots (C#)
      • Scalper Trade Bot
      • Flash Crash Trade Bot
    • Script Indicators (C#)
      • Indicator Script
      • Technical Analysis Library
    • Pshai Scripts (C#)
      • BBands Ext
      • BBands Ext v2
      • Chaikin A/D Line
      • Calibrator
      • Pshai's RVI
    • Scripted Driver
  • Other Resources
    • YouTube
    • Guides & Tutorials
    • Questions & Answers
    • Community Projects
  • Need Help?
    • Ask on Discord
    • Submit Support Ticket
Powered by GitBook
On this page
  • Get accounts
  • Get all accounts details
  • Get account details
  • Adjust wallet of simulated account
  • Clear wallet of simulated account
  • Get wallet
  • Get open orders
  • Get available order templates

Was this helpful?

  1. API Endpoints

Account Data API

Account, wallet, open order & position information

All the account data endpoints require a signature

Get accounts

Returns:

A dictionary where the keys are the account guid and the values are the account names.

Example URL:

http://127.0.0.1:8050/GetEnabledAccounts

Get all accounts details

Returns:

A dictionary where the keys are the account guid and the values are objects of `AccountInformation`.

Example URL:

http://127.0.0.1:8050/GetAllAccountDetails

Get account details

Required input:

  • accountGuid : the guid of the account

Returns:

Object of `AccountInformation`.

Example URL:

http://127.0.0.1:8050/GetAccountDetails?accountGuid=06c09cbf-a7fe-49c2-9be5-4e59b93b5121

Adjust wallet of simulated account

Required input:

  • accountGuid : the guid of the account

  • coin : the coin to adjust

  • amount : the new amount. Set on 0 to remove the coin from the wallet.

Returns:

Object of `Wallet`.

Example URL:

http://127.0.0.1:8050/SimulatedAccountAddOrAdjustCoinAmount?accountGuid=06c09cbf-a7fe-49c2-9be5-4e59b93b5121&coin=BTC&amount=12

Clear wallet of simulated account

Required input:

  • accountGuid : the guid of the account

Returns:

Object of `Wallet`.

Example URL:

http://127.0.0.1:8050/SimulatedAccountClearWallet?accountGuid=06c09cbf-a7fe-49c2-9be5-4e59b93b5121

Get wallet

Required input:

  • accountGuid : the guid of the account

Returns:

A `Wallet` object.

Example URL:

http://127.0.0.1:8050/GetWallet?accountGuid=06c09cbf-a7fe-49c2-9be5-4e59b93b5121

Get open orders

Required input:

  • accountGuid : the guid of the account

Returns:

A `OrderContainer` object.

Example URL:

http://127.0.0.1:8050/GetOpenOrders?accountGuid=06c09cbf-a7fe-49c2-9be5-4e59b93b5121

Get available order templates

Returns:

A dictionary where the keys are the template guid and the values are the template names.

Example URL:

http://127.0.0.1:8050/GetOrderTemplates
PreviousMarket Data APINextTrade Data API

Last updated 6 years ago

Was this helpful?