1 Star 0 Fork 0

loongeeker/Dynamic.Trader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

Dynamic Trader

Dynamic data is a portable class library which brings the power of reactive (rx) to collections. It is open source and the code base lives here Dynamic Data on GitHub.

To help illustrate how powerful and easy Dynamic Data is, and to help you get up and running I have created this WPF demo app. I have made the code behind each screen as simple as possible so it is easy to follow.

Most of the example screens have been written about on the blog at dynamic-data.org

The demo illustrates how the following code:

var loader = tradeService.All
    .Connect(trade => trade.Status == TradeStatus.Live) //prefilter live trades only
    .Filter(_filter) // apply user filter
    .Transform(trade => new TradeProxy(trade),new ParallelisationOptions(ParallelType.Ordered,5))
    .Sort(SortExpressionComparer<TradeProxy>.Descending(t => t.Timestamp),SortOptimisations.ComparesImmutableValuesOnly)
    .ObserveOnDispatcher()
    .Bind(_data)   // update observable collection bindings
    .DisposeMany() //since TradeProxy is disposable dispose when no longer required
    .Subscribe();

produces this

Live Trades View

or how the following extract

var loader = tradeService.Live.Connect()
           .Group(trade => trade.CurrencyPair)
           .Transform(group => new CurrencyPairPosition(group))
           .Sort(SortExpressionComparer<CurrencyPairPosition>.Ascending(t => t.CurrencyPair))
           .ObserveOn(schedulerProvider.MainThread)
           .Bind(_data)
           .DisposeMany()
           .Subscribe();

   //when CurrencyPairPosition class does this
   tradesByCurrencyPair.Cache.Connect()
   		.QueryWhenChanged(query =>
   		{
   			var buy = query.Items.Where(trade => trade.BuyOrSell == BuyOrSell.Buy).Sum(trade=>trade.Amount);
   			var sell = query.Items.Where(trade => trade.BuyOrSell == BuyOrSell.Sell).Sum(trade => trade.Amount);
   			var count = query.Count;
   			return new TradesPosition(buy,sell,count);
   		})
   		.Subscribe(position => Position = position);
       }

Produces this.

Aggregated Positions View

This is so easy, a few lines of code which after a short learning curve becomes very easy.

Plus many more dynamic data examples. Additionally there are some examples which show how to integrate with ReactiveUI.

The menu looks like this and as you can see there are links to the code behind which hopefully will get you up to speed in no time at all

Menu

The examples are being regularly maintained so download again to see more examples.

Run the demo

  • Build status
  • Press 'Download Zip', unpack and open Dynamic.Trader.sln
  • Ensure Nuget Restore is enabled
  • Set 'Trader.Client' as the startup project
  • Press F5

Feedback

Please feel free to me a on any of the following channels

Also a big thanks to the guys behind Mahapps and Dragablz for their awesome oss projects. These have enabled me to easily make this demo look good.

空文件

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/loongeeker/Dynamic.Trader.git
[email protected]:loongeeker/Dynamic.Trader.git
loongeeker
Dynamic.Trader
Dynamic.Trader
master

搜索帮助