利用Warensoft Stock Service編寫高頻交易軟體

来源:http://www.cnblogs.com/warensoft/archive/2017/01/10/6267764.html
-Advertisement-
Play Games

無論是哪種交易軟體,對於程式員來講,最麻煩的就是去實現各種演算法。本文以SAR演算法的實現過程為例,為大家說明如何使用Warensoft Stock Service來實現高頻交易軟體的快速開發。 目前WarensoftStockService已經實現了C# 版本的客戶端驅動,可以直接在Nuget上搜索... ...


利用Warensoft Stock Service編寫高頻交易軟體

 

無論是哪種交易軟體,對於程式員來講,最麻煩的就是去實現各種演算法。本文以SAR演算法的實現過程為例,為大家說明如何使用Warensoft Stock Service來實現高頻交易軟體的快速開發。

目前WarensoftStockService已經實現了C# 版本的客戶端驅動,可以直接在Nuget上搜索Warensoft並安裝。客戶端驅動已經編譯為跨平臺.net standard1.6版本,可以在桌面應用(WPFWinform)、Xamarin手機應用(WPAndroidIOS)、Webasp.net,asp.net core)中應用,操作系統可以是WindowAndroidIOSIMACLinux

下麵將以Android為例(註:本Demo可以直接平移到WPF中),說明SAR指標的實現過程,其他指標計算的綜合應用,在其他文章中會專門講解。

 

  1. 軟體環境說明

 

 

IDE

VS2017 RC

客戶端

Android4.4

伺服器環境

Ubuntu16

客戶端運行環境

Xamarin.Forms

客戶端圖形組件

Oxyplot

 

  1. 建立一個Xamarin.Forms手機App

 這裡選擇基於XAMLApp,註意共用庫使用PCL

 

 

 

 

 工程目錄下圖所示:

 

 

  1. 添加Nuget引用包

 

首先,為Warensoft.StockApp共用庫添加Oxyplot引用(此處可能需要科學上網),如下圖所示:

 

 

 

 

然後再分別安裝Warensoft.EntLib.Common,Warensoft.EntLib.StockServiceClient,如下圖所示:

 

 

 

然後為Warensoft.StockApp.Droid添加OxyPlotNuGet引用,如下所示:

 

 

然後在AndroidMainActivity中加入平臺註冊代碼:

OxyPlot.Xamarin.Forms.Platform.Android.PlotViewRenderer.Init();

 

MainActivity.cs的代碼如下所示:

 

protected override void OnCreate(Bundle bundle)

        {

            TabLayoutResource = Resource.Layout.Tabbar;

            ToolbarResource = Resource.Layout.Toolbar;

            OxyPlot.Xamarin.Forms.Platform.Android.PlotViewRenderer.Init();

            base.OnCreate(bundle);

 

            global::Xamarin.Forms.Forms.Init(this, bundle);

            LoadApplication(new App());

        }

 

 

  1. 實現主視窗

 

主界面的實現採用MVVM模式來實現,關於MVVM的講解,網上應該有很多了,後面的文章中,我會把我自己的理解寫出來,讓大家分享。本DEMOMVVM框架已經集成在了Warensoft.EntLib.Common中,使用起來很簡單。

 

第一步:

編寫主界面(需要瞭解XAML語法),並修改MainPage.xaml,如代碼如下:

<?xml version="1.0" encoding="utf-8" ?>

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"

             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"

             xmlns:local="clr-namespace:Warensoft.StockApp"

             xmlns:oxy="clr-namespace:OxyPlot.Xamarin.Forms;assembly=OxyPlot.Xamarin.Forms"

             x:Class="Warensoft.StockApp.MainPage">

    <!--

    此處要註意在頭中註冊OxyPlot的命名空間

    xmlns:oxy="clr-namespace:OxyPlot.Xamarin.Forms;assembly=OxyPlot.Xamarin.Forms"-->

    <Grid>

        <!--此處添加圖形組件-->

        <oxy:PlotView Model="{Binding Model}" VerticalOptions="Center" HorizontalOptions="Center" />

    </Grid>

 

</ContentPage>

 

第二步:

打開MainPage.xaml.cs併為視圖(圖面)添加其對應的模型,代碼如下(註意要引入Warensoft.EntLib.Common):

public partial class MainPage : ContentPage

    {

        public MainPage()

        {

            InitializeComponent();

            //此處註冊ViewModel

            this.BindingContext = new MainPageViewModel();

        }

    }

    public class MainPageViewModel : ViewModelBase

    {

        public override Task ShowCancel(string title, string message)

        {

            throw new NotImplementedException();

        }

 

        public override Task<bool> ShowConfirm(string title, string message)

        {

            throw new NotImplementedException();

        }

 

        public override void ShowMessage(string message)

        {

            Application.Current.MainPage.DisplayAlert("提示",message,"OK");

        }

 

        protected override void InitBindingProperties()

        {

            

        }

}

 

第三步:

定義圖像組件的模型,併為圖像添加XY坐標軸,添加一個K線和一條直線,代碼如下所示:

      

  public PlotModel Model

        {

            get { return this.GetProperty<PlotModel>("Model"); }

            set { this.SetProperty("Model", value); }

        }

 

        protected override void InitBindingProperties()

        {

            this.Model = new PlotModel();

            //添加X、Y軸

            this.Model.Axes.Add(new OxyPlot.Axes.DateTimeAxis()

            {

                Position = AxisPosition.Bottom,

                StringFormat = "HH:mm",

                MajorGridlineStyle = LineStyle.Solid,

                IntervalType = DateTimeIntervalType.Minutes,

                IntervalLength = 30,

 

                MinorIntervalType = DateTimeIntervalType.Minutes,

                Key = "Time",

 

            });

 

            this.Model.Axes.Add(new OxyPlot.Axes.LinearAxis()

            {

                Position = AxisPosition.Right,

                MajorGridlineStyle = LineStyle.Solid,

                MinorGridlineStyle = LineStyle.Dot,

                IntervalLength = 30,

                IsPanEnabled = false,

                IsZoomEnabled = false,

                TickStyle = TickStyle.Inside,

            });

            //添加K線和直線

            this.candle = new OxyPlot.Series.CandleStickSeries();

            this.line = new OxyPlot.Series.LineSeries() { Color = OxyColors.Blue };

            this.Model.Series.Add(this.candle);

            this.Model.Series.Add(this.line);

        }

 

第四步:

添加獲取K線函數(以OKCoin為例),代碼如下:

/// <summary>

        /// 讀取OKCoin的15分鐘K線

        /// </summary>

        /// <returns></returns>

        public async Task<List<Kline>> LoadKline()

        {

            var url = $"https://www.okcoin.cn/api/v1/kline.do?symbol=btc_cny&type=15min&size=100";

            HttpClient client = new HttpClient();

            var result = await client.GetStringAsync(url);

 

            dynamic k = Newtonsoft.Json.JsonConvert.DeserializeObject(result);

            List<Kline> lines = new List<Kline>();

            int index = 0;

            foreach (var item in k)

            {

                List<double> d = new List<double>();

                foreach (var dd in item)

                {

                    d.Add((double)((dynamic)dd).Value);

                }

                lines.Add(new Kline() { Data = d.ToArray()});

                index++;

            }

            return lines;

        }

 

第五步:

添加定時刷新並繪製圖像的函數,代碼如下所示:

private StockServiceDriver driver;

        public async Task UpdateData()

        {

            //初始化WarensoftSocketService客戶端驅動,此處使用的是測試用AppKey和SecretKey

            this.driver = new StockServiceDriver("C6651783-A3B9-4B72-8B02-A2E67A59C5A6", "6C442B3AF58D4DDA81BB03B353C0D7D8");

            await Task.Run(async()=>

            {

                while (true)

                {

                    try

                    {

                        //讀取K線

                        var kline =await this.LoadKline();

                        //遠程Warensoft Stock Service 分析SAR曲線

                        var sar = await this.driver.GetSAR(kline);

 

                        //繪圖,註意辦為需要更新UI,因此需要在主線程中執行更新代碼

                        this.SafeInvoke(()=> {

                            //每次更新前,需要將舊數據清空

                            this.candle.Items.Clear();

                            this.line.Points.Clear();

 

                            foreach (var item in kline.OrderBy(k=>k.Time))

                            {

                                //註意將時間改為OxyPlot能識別的格式

                                var time = OxyPlot.Axes.DateTimeAxis.ToDouble(item.Time);

                                this.candle.Items.Add(new HighLowItem(time,item.High,item.Low,item.Open,item.Close));

                            }

                            if (sar.OperationDone)

                            {

                                foreach (var item in sar.AdditionalData.OrderBy(s=>s.DateTime))

                                {

                                    var time= OxyPlot.Axes.DateTimeAxis.ToDouble(item.DateTime);

                                    this.line.Points.Add(new DataPoint(time, item.Value));

                                }

                            }

                            //更新UI

                            this.Model.InvalidatePlot(true);

                        });

                    }

                    catch (Exception ex)

                    {

 

                         

                    }

                    await Task.Delay(5000);

                }

            });

        }

 

完整的ViewModel代碼如下:

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using Xamarin.Forms;

using Warensoft.EntLib.Common;

using Warensoft.EntLib.StockServiceClient;

using OxyPlot;

using OxyPlot.Axes;

using OxyPlot.Series;

using Warensoft.EntLib.StockServiceClient.Models;

using System.Net.Http;

 

namespace Warensoft.StockApp

{

    public partial class MainPage : ContentPage

    {

        public MainPage()

        {

            InitializeComponent();

            this.BindingContext = new MainPageViewModel();

        }

    }

    public class MainPageViewModel : ViewModelBase

    {

        private CandleStickSeries candle;

        private LineSeries line;

 

        public override Task ShowCancel(string title, string message)

        {

            throw new NotImplementedException();

        }

 

        public override Task<bool> ShowConfirm(string title, string message)

        {

            throw new NotImplementedException();

        }

 

        public override void ShowMessage(string message)

        {

            Application.Current.MainPage.DisplayAlert("提示",message,"OK");

        }

 

 

        public PlotModel Model

        {

            get { return this.GetProperty<PlotModel>("Model"); }

            set { this.SetProperty("Model", value); }

        }

 

        protected override void InitBindingProperties()

        {

            this.Model = new PlotModel();

            //添加X、Y軸

            this.Model.Axes.Add(new OxyPlot.Axes.DateTimeAxis()

            {

                Position = AxisPosition.Bottom,

                StringFormat = "HH:mm",

                MajorGridlineStyle = LineStyle.Solid,

                IntervalType = DateTimeIntervalType.Minutes,

                IntervalLength = 30,

 

                MinorIntervalType = DateTimeIntervalType.Minutes,

                Key = "Time",

 

            });

 

            this.Model.Axes.Add(new OxyPlot.Axes.LinearAxis()

            {

                Position = AxisPosition.Right,

                MajorGridlineStyle = LineStyle.Solid,

                MinorGridlineStyle = LineStyle.Dot,

                IntervalLength = 30,

                IsPanEnabled = false,

                IsZoomEnabled = false,

                TickStyle = TickStyle.Inside,

            });

            //添加K線和直線

            this.candle = new OxyPlot.Series.CandleStickSeries();

            this.line = new OxyPlot.Series.LineSeries() { Color = OxyColors.Blue };

            this.Model.Series.Add(this.candle);

            this.Model.Series.Add(this.line);

            this.UpdateData();

        }

 

        /// <summary>

        /// 讀取OKCoin的15分鐘K線

        /// </summary>

        /// <returns></returns>

        public async Task<List<Kline>> LoadKline()

        {

            var url = $"https://www.okcoin.cn/api/v1/kline.do?symbol=btc_cny&type=15min&size=100";

            HttpClient client = new HttpClient();

            var result = await client.GetStringAsync(url);

 

            dynamic k = Newtonsoft.Json.JsonConvert.DeserializeObject(result);

            List<Kline> lines = new List<Kline>();

            int index = 0;

            foreach (var item in k)

            {

                List<double> d = new List<double>();

                foreach (var dd in item)

                {

                    d.Add((double)((dynamic)dd).Value);

                }

                lines.Add(new Kline() { Data = d.ToArray()});

                index++;

            }

            return lines;

        }

        private StockServiceDriver driver;

        public async Task UpdateData()

        {

            //初始化WarensoftSocketService客戶端驅動,此處使用的是測試用AppKey和SecretKey

            this.driver = new StockServiceDriver("C6651783-A3B9-4B72-8B02-A2E67A59C5A6", "6C442B3AF58D4DDA81BB03B353C0D7D8");

            await Task.Run(async()=>

            {

                while (true)

                {

                    try

                    {

                        //讀取K線

                        var kline =await this.LoadKline();

                        //遠程Warensoft Stock Service 分析SAR曲線

                        var sar = await this.driver.GetSAR(kline);

 

                        //繪圖,註意辦為需要更新UI,因此需要在主線程中執行更新代碼

                        this.SafeInvoke(()=> {

                            //每次更新前,需要將舊數據清空

                            this.candle.Items.Clear();

                            this.line.Points.Clear();

 

                            foreach (var item in kline.OrderBy(k=>k.Time))

                            {

                                //註意將時間改為OxyPlot能識別的格式

                                var time = OxyPlot.Axes.DateTimeAxis.ToDouble(item.Time);

                                this.candle.Items.Add(new HighLowItem(time,item.High,item.Low,item.Open,item.Close));

                            }

                            if (sar.OperationDone)

                            {

                                foreach (var item in sar.AdditionalData.OrderBy(s=>s.DateTime))

                                {

                                    var time= OxyPlot.Axes.DateTimeAxis.ToDouble(item.DateTime);

                                    this.line.Points.Add(new DataPoint(time, item.Value));

                                }

                            }

                            //更新UI

                            this.Model.InvalidatePlot(true);

                        });

                    }

                    catch (Exception ex)

                    {

 

                         

                    }

                    await Task.Delay(5000);

                }

            });

        }

    }

}

 

最後編譯,並部署到手機上,最終運行效果如下:

 

 

最終編譯完畢的APK文件(下載)。

 

 作者:科學家

                                                    Email[email protected]

                                                    微信:43175692


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 之前的博文中有介紹關於圖片輪播的實現方式,分別為(含超鏈接): 1、《Android中使用ViewFlipper實現屏幕切換》 2、《Android中使用ViewPager實現屏幕頁面切換和頁面輪播效果》 3、《Android中使用ImageViewSwitcher實現圖片切換輪播導航效果》 今天通 ...
  • 輪播圖是很常用的一個效果 核心功能已經實現 沒有什麼特殊需求 自己沒事研究的 所以封裝的不太好 一些地方還比較糙 為想要研究輪播圖的同學提供個參考 目前測試圖片為mipmap中的圖片 沒有寫從網路載入圖片 可自行根據需求在getShowView()方法中修改 1.定時切換 通過handle延時發送通 ...
  • 一、簡述 最近項目組打算引入weex,並選定了一個頁面進行試水。頁面很簡單,主要是獲取數據渲染頁面,並可以跳轉到指定的頁面。跟之前使用RN 相比,weex 確實要簡單很多。從下圖中我們可以看到,weex 頁面需要跳轉到原生頁面,並且跳轉到哪個頁面我們可能並不能寫死。也就是說只要原生頁面之前項目中寫過 ...
  • 360手機助手使用的 DroidPlugin,它是360手機助手團隊在Android系統上實現了一種插件機制。它可以在無需安裝、修改的情況下運行APK文件,此機制對改進大型APP的架構,實現多團隊協作開發具有一定的好處。 它是一種新的插件機制,一種免安裝的運行機制 github地址: https:/ ...
  • 昨天1月9日微信小程式發佈,頓時被朋友圈刷爆,今天看了一下官方文檔,自己開始一步一步搭建環境體驗小程式開發。 常見問題: 1.微信小程式開發是否需要重新創建開發者賬號? 需要,即使之前申請了微信服務號,並認證過,也需要重新申請小程式。 在微信公眾平臺官網首頁(mp.weixin.qq.com)點擊右 ...
  • 1. #import導入頭文件,即:導入頭文件中的內容到當前類 2. #import “”導⼊自定義類,#import <>導入類庫中的頭文件。 3.功能類似C語言中的#include,但是可以避免頭文件被重覆導 入。(也即可以自動避免) 4. 容易出現迴圈導入頭文件問題。 針對上面4的迴圈導入頭文 ...
  • 一、錯誤提示 今天在開發的時候遇到一個崩潰問題,“This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird c ...
  • 前言 最近項目集成了Tinker,開始認為集成會比較簡單,但是在實際操作的過程中還是遇到了一些問題,本文就會介紹在集成過程大家基本會遇到的主要問題。 考慮一:後臺的選取 目前後臺功能可以通過三種方式實現: 1、自己搭建後臺布丁下發系統2、第三方提供的服務,目前如原微信simsun大神的個人tinke ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...