├── .gitignore ├── LICENSE ├── README.md ├── classifytrades.py ├── setup.py └── tradeclassification_c.pyx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /classifytrades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/classifytrades.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/setup.py -------------------------------------------------------------------------------- /tradeclassification_c.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jktis/Trade-Classification-Algorithms/HEAD/tradeclassification_c.pyx --------------------------------------------------------------------------------