├── .gitignore ├── .gitmodules ├── FRTrader.cabal ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── doc ├── Functional Reactive Bitcoin Trading.pptx ├── agent-shutdown.md ├── framework-architecture.md └── thread-model.md ├── src └── Trading │ └── Framework.hs ├── stack.yaml └── test └── Test.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/.gitmodules -------------------------------------------------------------------------------- /FRTrader.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/FRTrader.cabal -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/app/Main.hs -------------------------------------------------------------------------------- /doc/Functional Reactive Bitcoin Trading.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/doc/Functional Reactive Bitcoin Trading.pptx -------------------------------------------------------------------------------- /doc/agent-shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/doc/agent-shutdown.md -------------------------------------------------------------------------------- /doc/framework-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/doc/framework-architecture.md -------------------------------------------------------------------------------- /doc/thread-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/doc/thread-model.md -------------------------------------------------------------------------------- /src/Trading/Framework.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/src/Trading/Framework.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimitri-xyz/frtrader/HEAD/test/Test.hs --------------------------------------------------------------------------------