程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> 利用Warensoft Stock Service編寫高頻交易軟件--客戶端驅動接口說明,warensoftstock

利用Warensoft Stock Service編寫高頻交易軟件--客戶端驅動接口說明,warensoftstock

編輯:關於.NET

利用Warensoft Stock Service編寫高頻交易軟件--客戶端驅動接口說明,warensoftstock


Warensoft Stock Service Api客戶端接口說明

Warensoft Stock Service Api Client Reference

      本項目客戶端驅動源碼已經發布到GitHub上,地址如下:

      https://github.com/warensoft/stockserviceclient

Warensoft Stock Service為用戶提供在線的金融算法服務,本客戶端已經將通信協議進行了封裝,以便於C#開發人員調用。

目前處於測試階段,用戶可以使用測試用AppKey和SecretKey,該密鑰對將於2017年5月10日過期!

      2. 可使用環境(Available Environments)

本客戶端被編譯為.net standard 1.6。支持的運行環境如下:

This client was compiled to .net standard 1.6, and the follow runtime are supported:

運行時

版本

.net standard

1.6+

.net framework

4.6.1+

Portable

259

Xamarin

 

 

       3.安裝(Setup)

本客戶端需要通過Nuget方式進行安裝,用戶可以在Nuget中搜索“Warensoft”,並選擇安裝Warensoft.EntLib.StockServiceClient如果客戶端需要使用MVVM模式,則可以選擇安裝Warensoft.EntLib.Common,如下圖所示:

This client needs to be installed through Nuget. Users could find this component by typing “Warensoft”, and then install “Warensoft.EntLib.StockServiceClient”. If your client needs MVVM pattern support, you could also install “Warensoft.EntLib.Common”:

 

 

        4.接口支持的功能(2017.1.12版本)(Methods supported by this Client)

其類圖如下所示:

The class diagram is shown as bellow:

 

 

功能清單如下:

The Methods are listed as bellow:

接口名

說明

GetATR

根據K線獲取平均真實波幅曲線

Get ATR indicator

GetEMA

根據K線獲取指數平均數指標

Get EMA indicator

GetKline

根據Ticker值獲取其K線

Get K line by ticker

GetMACD

據K線獲取指數平滑移動平均線

Get MACD indicator

GetRSI

據K線獲取相對強弱指標

Get RSI indicator

GetSAR

據K線獲取拋物線指標

Get SAR indicator

GetSMA

據K線獲取簡單平均數指標

Get SMA indicator

GetWR

據K線獲取Williams %R指標

Get Williams %R indicator

 

       5.Api調用方法(Invoking API)

  • 初始化客戶端驅動,此處使用的是測試用AppKey和SecretKey.(Initializing the client driver. Notice: the AppKey and SecretKey are test values, so DO NOT use them in Production Environment)
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved