Skip to content

Commit 05f1598

Browse files
committed
published archm=TRUE
1 parent c6dba84 commit 05f1598

File tree

900 files changed

+1040
-922
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

900 files changed

+1040
-922
lines changed

README.html

+2-62
Original file line numberDiff line numberDiff line change
@@ -103,71 +103,10 @@
103103
<div class="container-fluid main-container">
104104

105105
<!-- tabsets -->
106-
107-
<style type="text/css">
108-
.tabset-dropdown > .nav-tabs {
109-
display: inline-table;
110-
max-height: 500px;
111-
min-height: 44px;
112-
overflow-y: auto;
113-
background: white;
114-
border: 1px solid #ddd;
115-
border-radius: 4px;
116-
}
117-
118-
.tabset-dropdown > .nav-tabs > li.active:before {
119-
content: "";
120-
font-family: 'Glyphicons Halflings';
121-
display: inline-block;
122-
padding: 10px;
123-
border-right: 1px solid #ddd;
124-
}
125-
126-
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
127-
content: "";
128-
border: none;
129-
}
130-
131-
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
132-
content: "";
133-
font-family: 'Glyphicons Halflings';
134-
display: inline-block;
135-
padding: 10px;
136-
border-right: 1px solid #ddd;
137-
}
138-
139-
.tabset-dropdown > .nav-tabs > li.active {
140-
display: block;
141-
}
142-
143-
.tabset-dropdown > .nav-tabs > li > a,
144-
.tabset-dropdown > .nav-tabs > li > a:focus,
145-
.tabset-dropdown > .nav-tabs > li > a:hover {
146-
border: none;
147-
display: inline-block;
148-
border-radius: 4px;
149-
}
150-
151-
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
152-
display: block;
153-
float: none;
154-
}
155-
156-
.tabset-dropdown > .nav-tabs > li {
157-
display: none;
158-
}
159-
</style>
160-
161106
<script>
162107
$(document).ready(function () {
163108
window.buildTabsets("TOC");
164109
});
165-
166-
$(document).ready(function () {
167-
$('.tabset-dropdown > .nav-tabs > li').click(function () {
168-
$(this).parent().toggleClass('nav-tabs-open')
169-
});
170-
});
171110
</script>
172111

173112
<!-- code folding -->
@@ -176,6 +115,7 @@
176115

177116

178117

118+
179119
<div class="fluid-row" id="header">
180120

181121

@@ -221,7 +161,7 @@ <h3>1.1) Answer</h3>
221161
</ul>
222162
<ol style="list-style-type: decimal">
223163
<li><p>Here I wrote another extention page for Q1 which is analyse the multiple currencies and also models <s>from minutes to</s> daily. You are feel free to browse over <a href="http://rpubs.com/englianhu/binary-Q1E">Binary.com Interview Q1 (Extention)</a> or (<a href="http://rpubs.com/englianhu/316133">Alternate link</a>).</p></li>
224-
<li><p>Here I also find the optimal arma order for GARCH models as you can refer to <a href="http://rpubs.com/englianhu/binary-Q1FiGJRGARCH">GARCH模型中的<code>ARIMA(p,d,q)</code>参数最优化</a>. <a href="http://rpubs.com/englianhu/binary-Q1-archm">binary.com 面试试题 I - GARCH模型中的<code>ARCH in Mean</code></a> compares the ARCHM with Non-ARCHM models.</p></li>
164+
<li><p>Here I also find the optimal arma order for GARCH models as you can refer to <a href="http://rpubs.com/englianhu/binary-Q1FiGJRGARCH">GARCH模型中的<code>ARIMA(p,d,q)</code>参数最优化</a>. <a href="http://rpubs.com/englianhu/binary-Q1-archm">binary.com 面试试题 I - GARCH模型中的<code>ARCH in Mean</code></a> compares the ARCHM with previous Non-ARCHM models.</p></li>
225165
<li><p>You can also refer to <a href="http://rpubs.com/englianhu/binary-Q1Uni-GARCH">binary.com Interview Question I - Comparison of Univariate GARCH Models</a> which compares the prediction accuracy of 14 GARCH models (not completed) and 9 models (mostly completed from 2013-01-01 to 2017-08-30).</p></li>
226166
</ol>
227167
<ul>

README.md

+1-1

binary-Q1-archm.Rmd

+4-4
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ notID %>%
300300
```{r warning=FALSE}
301301
## timeID which contains 3 prediction models.
302302
utimeID <- fx %>%
303-
ddply(.(Date, .id), summarize,
304-
n = length(Type)) %>%
305-
dplyr::filter(n == 12) %>%
303+
ddply(.(Date), summarize,
304+
n = n()) %>%
305+
dplyr::filter(n == 84) %>%
306306
tbl_df %>% .$Date
307307
308308
fx %<>% dplyr::filter(Date %in% utimeID, !Date %in% ntimeID)
@@ -401,7 +401,7 @@ acc %>%
401401

402402
# 结论
403403

404-
结果证明。目前正在编写着[Q1App2](https://beta.rstudioconnect.com/content/3138/)自动交易应用。“商场如战场”,除了模式最优化以外,程序运作上分秒必争... `microbenchmark`测试效率,之前编写了个[DataCollection](https://beta.rstudioconnect.com/content/3153/)应用采集实时数据以方便之后的高频率交易自动化建模^[不过数据量多就会当机,得继续提升才行。]。欲知更多详情,请参阅[Real Time FXCM](https://github.com/scibrokes/real-time-fxcm)
404+
结果证明`pred2``archm=FALSE`最为精准。目前正在编写着[Q1App2](https://beta.rstudioconnect.com/content/3138/)自动交易应用。“商场如战场”,除了模式最优化以外,程序运作上分秒必争... `microbenchmark`测试效率,之前编写了个[DataCollection](https://beta.rstudioconnect.com/content/3153/)应用采集实时数据以方便之后的高频率交易自动化建模^[不过数据量多就会当机,得继续提升才行。]。欲知更多详情,请参阅[Real Time FXCM](https://github.com/scibrokes/real-time-fxcm)
405405

406406
# 附录
407407

binary-Q1-archm.html

+1,022-854
Large diffs are not rendered by default.

binary-Q1Inter-HFT.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ The new dshw() function implements *Taylor’s (2003)* double-seasonal Holt-Wint
638638
639639
*Source : Major changes to the forecast package*
640640

641-
Now we start modelling harmonics model (which is using `xreg`).
641+
[Forecasting Daily Data with Multiple Seasonality in R](http://www.dbenson.co.uk/Rparts/subpages/forecastR/) provides the example for seasonal modelling. Now we start modelling harmonics model (which is using `xreg`).
642642

643643
#### Model 1
644644

data/fx/USDCAD/pred3.2013-06-09.rds

461 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-06-10.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-06-20.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-06-23.rds

462 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-06-24.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-06-26.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-02.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-03.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-04.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-10.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-11.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-14.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-17.rds

468 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2013-07-18.rds

466 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-02-19.rds

1 Byte
Binary file not shown.

data/fx/USDCAD/pred3.2014-02-20.rds

464 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-05-07.rds

6 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-05-11.rds

465 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-05-12.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-05-21.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-06-15.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-06-16.rds

463 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-07-13.rds

469 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-07-29.rds

463 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-07-30.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-07-31.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-03.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-21.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-22.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-23.rds

459 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-24.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-25.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-09-28.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-05.rds

462 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-06.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-07.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-08.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-09.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-12.rds

469 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-13.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-16.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-19.rds

459 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-20.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-10-30.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-04.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-05.rds

462 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-10.rds

462 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-11.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-12.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-13.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-14.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-20.rds

469 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-21.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-24.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-25.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-11-26.rds

467 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-01.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-02.rds

460 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-03.rds

467 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-04.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-05.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-08.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-11.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-12.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-15.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-18.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-19.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-22.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-23.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-24.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-25.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-26.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-29.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-30.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2014-12-31.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-01.rds

457 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-02.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-05.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-06.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-08.rds

469 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-12.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-13.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-21.rds

456 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-23.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-01-28.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-02-05.rds

467 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-02-09.rds

468 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-02-10.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-02-12.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-03-16.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-03-17.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-03-25.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-01.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-02.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-05.rds

468 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-06.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-12.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-13.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-14.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-15.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-16.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-19.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-20.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-21.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-22.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-23.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-26.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-04-30.rds

466 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-05-03.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-05-04.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-06-10.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2015-11-25.rds

0 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-01-19.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-01-25.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-01-26.rds

444 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-02-01.rds

462 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-02-24.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-02-25.rds

478 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-03-11.rds

2 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-03-25.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-03.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-04.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-18.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-24.rds

-2 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-25.rds

461 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-04-26.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-05-29.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-05-30.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-06-07.rds

465 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-06-13.rds

475 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-08-23.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-08-24.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-09-14.rds

473 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-09-15.rds

468 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-09-18.rds

465 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2016-11-02.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-01-27.rds

453 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-03-13.rds

477 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-07-31.rds

474 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-01.rds

476 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-08.rds

463 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-09.rds

470 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-16.rds

472 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-17.rds

465 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-27.rds

471 Bytes
Binary file not shown.

data/fx/USDCAD/pred3.2017-08-28.rds

469 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-18.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-19.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-20.rds

463 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-21.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-22.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-25.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-26.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-27.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-02-28.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-01.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-04.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-05.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-06.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-07.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-08.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-11.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-12.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-03-14.rds

468 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-04-28.rds

-5 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-05-22.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-06.rds

471 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-09.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-10.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-20.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-23.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-24.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-25.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-06-26.rds

476 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-02.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-03.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-04.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-10.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-11.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-14.rds

465 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-17.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-18.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2013-07-24.rds

476 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-06-15.rds

468 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-06-16.rds

463 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-07-13.rds

473 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-07-29.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-07-30.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-03.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-21.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-22.rds

467 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-23.rds

470 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-24.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-09-28.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-06.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-08.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-09.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-12.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-13.rds

468 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-15.rds

0 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-16.rds

478 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-19.rds

471 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-20.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-10-30.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-11-05.rds

476 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-11-07.rds

0 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-11-20.rds

472 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-11-25.rds

469 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-11-26.rds

476 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-01.rds

471 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-02.rds

476 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-11.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-12.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-15.rds

474 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-19.rds

475 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-22.rds

465 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-23.rds

470 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-24.rds

470 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2014-12-25.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-05.rds

477 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-16.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-19.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-20.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-21.rds

455 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-22.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-23.rds

463 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-26.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-27.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-28.rds

454 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-29.rds

454 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-01-30.rds

468 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-02.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-03.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-04.rds

459 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-06.rds

454 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-09.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-10.rds

458 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-11.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-12.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-13.rds

450 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-16.rds

444 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-17.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-18.rds

450 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-19.rds

459 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-20.rds

463 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-23.rds

453 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-26.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-02-27.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-02.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-03.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-04.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-05.rds

446 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-06.rds

469 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-09.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-10.rds

449 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-11.rds

452 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-12.rds

465 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-13.rds

454 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-16.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-17.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-18.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-19.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-20.rds

449 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-23.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-24.rds

452 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-25.rds

467 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-26.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-27.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-29.rds

453 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-30.rds

456 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-03-31.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-01.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-02.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-05.rds

458 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-06.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-07.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-08.rds

454 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-09.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-12.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-13.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-14.rds

466 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-15.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-16.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-19.rds

456 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-20.rds

458 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-21.rds

458 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-22.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-23.rds

464 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-26.rds

457 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-04-30.rds

461 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-05-03.rds

462 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2015-05-04.rds

460 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2016-01-18.rds

0 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2016-01-22.rds

-6 Bytes
Binary file not shown.

data/fx/USDCHF/pred3.2016-01-25.rds

468 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)