转载注明出处:http://blog.csdn.net/minimicallhttp://cloudtrade.top/

前面一节我们说到了远端事件。当中。市场数据就属于远端事件。市场数据有什么?我们通过代码来回答这个问题:

  1. package org.cryptocoinpartners.schema;
  2.  
  3. import javax.annotation.Nullable;
  4. import javax.persistence.Entity;
  5. import javax.persistence.ManyToOne;
  6.  
  7. import org.joda.time.Instant;
  8.  
  9. /**
  10. * @author Tim Olson
  11. */
  12. @Entity //实体,在数据库中会创建表格
  13. public abstract class MarketData extends RemoteEvent {
  14.  
  15. protected MarketData(Instant time, @Nullable String remoteKey, Market market) {
  16. this(time, Instant.now(), remoteKey, market);
  17. }
  18.  
  19. protected MarketData(Instant time, Instant timeReceived, String remoteKey, Market market) {
  20. super(time, timeReceived, remoteKey);
  21. this.market = market;
  22. }
  23.  
  24. @ManyToOne(optional = false)
  25. public Market getMarket() {
  26. return market;
  27. }
  28.  
  29. // JPA
  30. protected MarketData() {
  31. super();
  32. }
  33.  
  34. protected void setMarket(Market market) {
  35. this.market = market;
  36. }
  37.  
  38. private Market market;//市场
  39. }

市场数据里面仅仅有一个成员。市场。

也即是说市场数据是某一时刻的市场。

我们接下来看看市场又有什么数据,Market。

我们通过凝视代码来学习。

  1. package org.cryptocoinpartners.schema;
  2.  
  3. import java.math.BigDecimal;
  4. import java.util.ArrayList;
  5. import java.util.Collection;
  6. import java.util.List;
  7.  
  8. import javax.persistence.Basic;
  9. import javax.persistence.Cacheable;
  10. import javax.persistence.Entity;
  11. import javax.persistence.Index;
  12. import javax.persistence.ManyToOne;
  13. import javax.persistence.NamedQuery;
  14. import javax.persistence.NoResultException;
  15. import javax.persistence.PostPersist;
  16. import javax.persistence.Table;
  17. import javax.persistence.Transient;
  18.  
  19. import org.cryptocoinpartners.enumeration.FeeMethod;
  20. import org.cryptocoinpartners.util.PersistUtil;
  21. import org.cryptocoinpartners.util.RemainderHandler;
  22.  
  23. /**
  24. * Represents the possibility to trade one Asset for another at a specific Exchange.
  25. *
  26. * @author Tim Olson
  27. */
  28. @Entity //表格
  29. @Cacheable // 缓存
  30. @NamedQuery(name = "Market.findByMarket", query = "select m from Market m where exchange=?1 and listing=?2") // 命名查询
  31. @Table(indexes = { @Index(columnList = "exchange"), @Index(columnList = "listing"), @Index(columnList = "active") }) //编织索引
  32. public class Market extends EntityBase {
  33.  
  34. public static Collection<Market> findAll() {//查询全部市场数据
  35. return PersistUtil.queryList(Market.class, "select m from Market m");
  36. }
  37.  
  38. /** adds the Market to the database if it does not already exist */
  39. public static Market findOrCreate(Exchange exchange, Listing listing) {
  40. return findOrCreate(exchange, listing, listing.getPriceBasis(), listing.getVolumeBasis());
  41. }
  42.  
  43. @PostPersist
  44. private void postPersist() {
  45.  
  46. //PersistUtil.detach(this);
  47.  
  48. }
  49. //查询或创建市场数据
  50. public static Market findOrCreate(Exchange exchange, Listing listing, double quoteBasis, double volumeBasis) {
  51. // final String queryStr = "select m from Market m where exchange=?1 and listing=?
  52.  
  53. 2";
  54. try {
  55. return PersistUtil.namedQueryOne(Market.class, "Market.findByMarket", exchange, listing);
  56. } catch (NoResultException e) {
  57. final Market ml = new Market(exchange, listing, quoteBasis, volumeBasis);
  58. PersistUtil.insert(ml);
  59. return ml;
  60. }
  61. }
  62.  
  63. /**
  64. @return active Markets for the given exchange
  65. */
  66. public static Collection<Market> find(Exchange exchange) {
  67. return PersistUtil.queryList(Market.class, "select s from Market s where exchange=?
  68.  
  69. 1 and active=?2", exchange, true);
  70. }
  71.  
  72. /**
  73. @return active Markets for the given listing
  74. */
  75. public static Collection<Market> find(Listing listing) {
  76. return PersistUtil.queryList(Market.class, "select s from Market s where listing=?1 and active=?2", listing, true);
  77. }
  78.  
  79. @ManyToOne(optional = false)
  80. public Exchange getExchange() {
  81. return exchange;
  82. }
  83.  
  84. @ManyToOne(optional = false)
  85. public Listing getListing() {
  86. return listing;
  87. }
  88.  
  89. @Basic(optional = false)
  90. public double getPriceBasis() {
  91.  
  92. return listing.getPriceBasis() == 0 ?
  93.  
  94. priceBasis : listing.getPriceBasis();
  95.  
  96. }
  97.  
  98. @Transient
  99. public int getScale() {
  100.  
  101. int length = (int) (Math.log10(getPriceBasis()));
  102. return length;
  103. }
  104.  
  105. @Basic(optional = false)
  106. public double getVolumeBasis() {
  107. return listing.getVolumeBasis() == 0 ? volumeBasis : listing.getVolumeBasis();
  108.  
  109. }
  110.  
  111. /** @return true iff the Listing is currently traded at the Exchange. The Market could have been retired. */
  112. public boolean isActive() {
  113. return active;
  114. }
  115.  
  116. @Transient
  117. public Asset getBase() {
  118. return listing.getBase();
  119. }
  120.  
  121. @Transient
  122. public Asset getQuote() {
  123. return listing.getQuote();
  124. }
  125.  
  126. @Transient
  127. public int getMargin() {
  128. return listing.getMargin() == 0 ? exchange.getMargin() : listing.getMargin();
  129.  
  130. }
  131.  
  132. @Transient
  133. public double getFeeRate() {
  134. return listing.getFeeRate() == 0 ? exchange.getFeeRate() : listing.getFeeRate();
  135.  
  136. }
  137.  
  138. @Transient
  139. public FeeMethod getMarginFeeMethod() {
  140. return listing.getMarginFeeMethod() == null ? exchange.getMarginFeeMethod() : listing.getMarginFeeMethod();
  141.  
  142. }
  143.  
  144. @Transient
  145. public FeeMethod getFeeMethod() {
  146. return listing.getFeeMethod() == null ?
  147.  
  148. exchange.getFeeMethod() : listing.getFeeMethod();
  149.  
  150. }
  151.  
  152. @Transient
  153. public double getMultiplier() {
  154. return listing.getMultiplier();
  155.  
  156. }
  157.  
  158. @Transient
  159. public double getTickValue() {
  160. return listing.getTickValue();
  161.  
  162. }
  163.  
  164. @Transient
  165. public double getContractSize() {
  166. return listing.getContractSize();
  167.  
  168. }
  169.  
  170. @Transient
  171. public double getTickSize() {
  172. return listing.getTickSize();
  173.  
  174. }
  175.  
  176. @Transient
  177. public Asset getTradedCurrency() {
  178. return listing.getTradedCurrency();
  179.  
  180. }
  181.  
  182. @Transient
  183. public String getSymbol() {
  184. return exchange.toString() + ':' + listing.toString();
  185. }
  186.  
  187. @Override
  188. public String toString() {
  189. return getSymbol();
  190. }
  191.  
  192. public static Market forSymbol(String marketSymbol) {
  193.  
  194. for (Market market : findAll()) {
  195. if (market.getSymbol().equalsIgnoreCase(marketSymbol))
  196. return market;
  197. }
  198. return null;
  199. }
  200.  
  201. public static List<String> allSymbols() {
  202. List<String> result = new ArrayList<>();
  203. List<Market> markets = PersistUtil.queryList(Market.class, "select m from Market m");
  204. for (Market market : markets)
  205. result.add((market.getSymbol()));
  206. return result;
  207. }
  208.  
  209. public static class MarketAmountBuilder {
  210.  
  211. public DiscreteAmount fromPriceCount(long count) {
  212. return priceBuilder.fromCount(count);
  213. }
  214.  
  215. public DiscreteAmount fromVolumeCount(long count) {
  216. return volumeBuilder.fromCount(count);
  217. }
  218.  
  219. public DiscreteAmount fromPrice(BigDecimal amount, RemainderHandler remainderHandler) {
  220. return priceBuilder.fromValue(amount, remainderHandler);
  221. }
  222.  
  223. public DiscreteAmount fromVolume(BigDecimal amount, RemainderHandler remainderHandler) {
  224. return volumeBuilder.fromValue(amount, remainderHandler);
  225. }
  226.  
  227. public MarketAmountBuilder(double priceBasis, double volumeBasis) {
  228. this.priceBuilder = DiscreteAmount.withBasis(priceBasis);
  229. this.volumeBuilder = DiscreteAmount.withBasis(volumeBasis);
  230. }
  231.  
  232. private final DiscreteAmount.DiscreteAmountBuilder priceBuilder;
  233. private final DiscreteAmount.DiscreteAmountBuilder volumeBuilder;
  234. }
  235.  
  236. public MarketAmountBuilder buildAmount() {
  237. if (marketAmountBuilder == null)
  238. marketAmountBuilder = new MarketAmountBuilder(getPriceBasis(), getVolumeBasis());
  239. return marketAmountBuilder;
  240. }
  241.  
  242. // JPA
  243. protected Market() {
  244. }
  245.  
  246. protected void setExchange(Exchange exchange) {
  247. this.exchange = exchange;
  248. }
  249.  
  250. protected void setListing(Listing listing) {
  251. this.listing = listing;
  252. }
  253.  
  254. protected void setActive(boolean active) {
  255. this.active = active;
  256. }
  257.  
  258. protected void setPriceBasis(double quoteBasis) {
  259. this.priceBasis = quoteBasis;
  260. }
  261.  
  262. protected void setVolumeBasis(double volumeBasis) {
  263. this.volumeBasis = volumeBasis;
  264. }
  265.  
  266. private Market(Exchange exchange, Listing listing, double priceBasis, double volumeBasis) {
  267. this.exchange = exchange;
  268. this.listing = listing;
  269. this.priceBasis = priceBasis;
  270. this.volumeBasis = volumeBasis;
  271. this.active = true;
  272. }
  273.  
  274. private Exchange exchange;//交易所
  275. private Listing listing;//挂牌清单
  276. private double priceBasis;//基准价格
  277. private double volumeBasis;//基准量
  278. private boolean active;//是否活跃
  279. private MarketAmountBuilder marketAmountBuilder;
  280. }

版权声明:本文博主原创文章。博客,未经同意不得转载。

道量化交易程序猿(25)--Cointrader之MarketData市场数据实体(12)的更多相关文章

  1. 黑马程序猿——25,打印流,合并流,对象序列化,管道流,RandomAccessFile

    ------<ahref="http://www.itheima.com" target="blank">Java培训.Android培训.iOS培 ...

  2. 《零起点,python大数据与量化交易》

    <零起点,python大数据与量化交易>,这应该是国内第一部,关于python量化交易的书籍. 有出版社约稿,写本量化交易与大数据的书籍,因为好几年没写书了,再加上近期"前海智库 ...

  3. 屌丝程序猿赚钱之道 之APP

    假设你已经通过APP赚到了钱,那么本文对你而言没有意义.倒是希望你可以给我们诸多建议. 通过制作APP或者说手机应用赚钱,相信是非常多程序猿希望做的事情.也确实有一些人通过APP赚到了钱. 对于程序猿 ...

  4. 屌丝程序猿赚钱之道之taobao 2

    续上篇,之前写的案例,都是比較0基础的. 案例4:  代写情书.软文.论文等等. 这是我一个同学的真实故事.     我隔壁寝室的小王平时没事就爱谢谢博客.逛逛论坛.大二的时候接触了威客网,開始在网上 ...

  5. Java程序猿修炼之道 之 Logging(3/3) - 怎么分析Log

    1. 说明 作为一个程序猿我们常常要做一件事情:获取某个Log文件,从当中找出自己想要的信息. 本文总结了我在工作中使用了哪些工具来分析Log文件获取我想要的信息,我近期几年的工作环境都是server ...

  6. 程序猿接私活经验总结,来自csdn论坛语录

    下面为网上摘录,以做笔记: 但是到网上看看,似乎接私活也有非常多不easy,技术问题本身是个因素,还有非常多有技术的人接私活时被骗,或者是合作到最后以失败告终,所以想请有经验的大侠们出来指点一下,接私 ...

  7. 程序猿最浪漫的表白,肯定会得到你的她——Jason niu 原文来自GitHub,本人已部分修改

    程序猿最浪漫的表白,肯定会得到你的她——Jason niu    原文来自GitHub,主页本人已部分修改,感谢程序猿大神wuxia2001和hackerzhou的开源,感谢这两位大神! 视频结果展示 ...

  8. 程序猿职业生涯中的 Norris 常数

    我的朋友Clift Norris发现了一个基本常数.我称之为Norris常数,一个未经培训的程序猿在他或她遇到瓶颈之前能写出的平均代码量.Clift预计这个值是1500行. 超过这个数以后,代码会变得 ...

  9. 漫谈程序猿系列:无BUG不生活

    watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZm9ydW9r/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/d ...

随机推荐

  1. [转载]Surging Demo 项目之一

    开发与运行环境 IDE Visual Stadio 2017/Visual Stadio 2019 Visual Stadio Core Docker 和 Docker-Compose 通过docke ...

  2. google校招在线測试题---2048

    先附代码:(简单地说就是给出一个矩阵代表2048游戏的一个状态以及一个方向,输出往这个方向移动之后的矩阵) #include<iostream> #include<fstream&g ...

  3. Python代码优化及技巧笔记(一)

    前言 这里是记录一些本人在开发过程中遇到的一些细节问题.与君共勉. 版权说明 著作权归作者全部.商业转载请联系作者获得授权,非商业转载请注明出处. 作者:Coding-Naga链接:http://bl ...

  4. kafka集群原理介绍

    目录 kafka集群原理介绍 (一)基础理论 二.配置文件 三.错误处理 kafka集群原理介绍 @(博客文章)[kafka|大数据] 本系统文章共三篇,分别为 1.kafka集群原理介绍了以下几个方 ...

  5. Tidhy

    JavaBean.hbm.xml(hibernate配置方面的): <?xml version="1.0" encoding="UTF-8"?> & ...

  6. win32 ag + xargs

    需要使用-0 d:\Apps\AutoHotkey\scripts>ag 2b89eaa_r13_ad1 -l -0|xargs -0 sed -i s/2b89eaa_r13_ad1/2b89 ...

  7. [Recompose] Replace a Component with Non-Optimal States using Recompose

    Learn how to use the ‘branch’ and ‘renderComponent’ higher-order components to show errors or messag ...

  8. 【Nutch2.2.1基础教程之1】nutch相关异常 分类: H3_NUTCH 2014-08-08 21:46 1549人阅读 评论(2) 收藏

    1.在任务一开始运行,注入Url时即出现以下错误. InjectorJob: Injecting urlDir: urls InjectorJob: Using class org.apache.go ...

  9. python 标准库 —— io(StringIO)

    0. io流(io stream) 流是一种抽象概念,它代表了数据的无结构化传递.按照流的方式进行输入输出,数据被当成无结构的字节序或字符序列.从流中取得数据的操作称为提取操作,而向流中添加数据的操作 ...

  10. [Angular Directive] 1. Write an Angular Directive

    Angular 2 Directives allow you manipulate elements by adding custom behaviors through attributes. Th ...