├── .project ├── .pydevproject ├── README.md └── src ├── datacontainer.py ├── execution ├── __init__.py └── aa │ └── __init__.py ├── main.py ├── portfolio ├── __init__.py └── myportfolio.py └── prediction ├── __init__.py └── creamer ├── __init__.py ├── expert.py ├── oneStockXTS.r ├── parameters.py └── runADTree.sh /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/.pydevproject -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/README.md -------------------------------------------------------------------------------- /src/datacontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/datacontainer.py -------------------------------------------------------------------------------- /src/execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/execution/__init__.py -------------------------------------------------------------------------------- /src/execution/aa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/execution/aa/__init__.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/main.py -------------------------------------------------------------------------------- /src/portfolio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/portfolio/myportfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/portfolio/myportfolio.py -------------------------------------------------------------------------------- /src/prediction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/prediction/creamer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/prediction/creamer/__init__.py -------------------------------------------------------------------------------- /src/prediction/creamer/expert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/prediction/creamer/expert.py -------------------------------------------------------------------------------- /src/prediction/creamer/oneStockXTS.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/prediction/creamer/oneStockXTS.r -------------------------------------------------------------------------------- /src/prediction/creamer/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/prediction/creamer/parameters.py -------------------------------------------------------------------------------- /src/prediction/creamer/runADTree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrAshBooth/HFTrader/HEAD/src/prediction/creamer/runADTree.sh --------------------------------------------------------------------------------