-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathhistory.txt
More file actions
104 lines (82 loc) · 4.81 KB
/
history.txt
File metadata and controls
104 lines (82 loc) · 4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Stock Trading Strategies Creator
# Process market datafeed and some additional factors to generate open, close signals to open position to generate profitable strategies
[*] : some common changes
[-] : delete bug
[+] : new feature
[00.00.00.14], (16-May-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding algorithm_manager
[+] adding simulation configuration class
[00.00.00.13], (03-May-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding create_on_bar_algorithm, create_on_period_methods
[+] rename datafeed_processor to stock_datafeed_processor
[+] adding simulator class prototype
[00.00.00.13], (02-May-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding algorithm_manager
[+] adding create methods for map, vector serie
[+] adding make method for string_share
[+] changing init type for on_stock_algorithm, now it template
[00.00.00.12], (17-Apr-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] fixing allmost all code to work with new memory model (map and vector based)
[00.00.00.10], (04-Apr-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding vector_serie and map_serie for each_bar signals algorithm and sparse signals algorithms
[+] adding on_stock_bar, on_bar. on_period structures that will be sent to algorithms as bar data
[00.00.00.09], (03-Apr-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding eod_datafeed_splitter
[+]fix bug into datafeed_creating by eod_datafeed_storage
[00.00.00.08], (27-Mar-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding eod_datafeed_storage source code files
[+] adding read_data( ..., from, to ) read full file and than cut it to smallest version usng from-to interval to substract necessary bars
[00.00.00.07], (24-Mar-2013), Ihar Marozau
---------------------------------------------------------------------------
[-] add startegy_engine declaration to algorithm_prototype
[00.00.00.07], (22-Mar-2013), Ihar Marozau
---------------------------------------------------------------------------
[+] remove bar_data_adapter to stsc::common namespace
[+] rename namespace bar_data_types into bar_data_type
[00.00.00.07], (15-Mar-2013), Ihar Marozau
---------------------------------------------------------------------------
[*] fix memory leak in signals_storage
[*] fix memory leak in signal_map
[+] make separate algorithms for moving_median_series and moving_median_indicator
[+] tests for moving mediaa_series and moving_median_indicator
[00.00.00.07], (14-Mar-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding full with length=(1..4) yahoo finance stock list tickers to data
[+] adding one and multithread yahoo finance datafeed receiver
[00.00.00.06], (13-Mar-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding csv/yahoo_finance_reader multithread processor that read yahoo EOD history datafeed files
[+] adding integration tests for yahoo_finance to stsc binary datafeed processing algorithm
[00.00.00.05], (12-Mar-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] move binary reader/writer to stsc::datafeed::binary namespace
[+] adding csv/yahoo_finance_reader prototype
[00.00.00.04], (12-Mar-2013), Ihar Marozau
---------------------------------------------------------------------------
[*] fix #ifndef #endif directive name
[+] add tests for moving_median and moving_median_indicator
[00.00.00.04], (11-Mar-2013), Ihar Marozau
---------------------------------------------------------------------------
[+] add moving median indicator
[00.00.00.04], (21-Feb-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding datafeed module with classes that store periods elements
[+] adding binary serializator de-serializator
[00.00.00.03], (21-Feb-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding on_stock, on_bar, on_period algorithm prototypes
[00.00.00.02], (19-Feb-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] adding common module
[+] adding algorithm_prototype, signal_vector, strategies_engine classes with possibility to create algorithm, register it into strategies_engine
[+] adding possibility to subscribe on other algorithms signal vectors (with type check on run-time)
[00.00.00.01], (14-Feb-2013), Ivan Sidarau
---------------------------------------------------------------------------
[+] project creating