Execution layer for algorithmic trading
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
3.6 KiB

7 years ago
name: robocom-zero
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/asakul/robocom-zero#readme
license: BSD3
license-file: LICENSE
author: Denis Tereshkin
maintainer: denis@kasan.ws
copyright: 2018 Denis Tereshkin
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall -fno-warn-orphans -Wno-type-defaults
7 years ago
exposed-modules: ATrade.RoboCom.Indicators
, ATrade.RoboCom.Monad
, ATrade.RoboCom.Persistence
7 years ago
, ATrade.RoboCom.Positions
, ATrade.RoboCom.Types
, ATrade.RoboCom.Utils
, ATrade.Quotes.Finam
, ATrade.Quotes.HAP
, ATrade.Quotes.QHP
, ATrade.Quotes.QTIS
, ATrade.Driver.Real
, ATrade.Driver.Backtest
, ATrade.BarAggregator
, ATrade.RoboCom
other-modules: Paths_robocom_zero
7 years ago
build-depends: base >= 4.7 && < 5
, libatrade >= 0.9.0.0 && < 0.10.0.0
7 years ago
, text
, text-icu
, errors
, lens
, bytestring
, cassava
, containers
, time
, vector
, wreq
, safe
, hslogger
, parsec
, parsec-numbers
, aeson
, binary
, binary-ieee754
, zeromq4-haskell
, unordered-containers
, th-printf
, BoundedChan
, monad-loops
, conduit
, safe-exceptions
, mtl
, transformers
, list-extras
, optparse-applicative
, split
, signal
, random
, hedis
, gitrev
, data-default
7 years ago
default-language: Haskell2010
other-modules: ATrade.Exceptions
7 years ago
, ATrade.Driver.Real.BrokerClientThread
, ATrade.Driver.Real.QuoteSourceThread
, ATrade.Driver.Types
7 years ago
test-suite robots-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, robocom-zero
, libatrade
, time
, text
, tasty
, tasty-hunit
, tasty-golden
, tasty-smallcheck
, tasty-quickcheck
, tasty-hspec
, quickcheck-text
, quickcheck-instances
, containers
, safe
7 years ago
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
other-modules: Test.RoboCom.Indicators
, Test.RoboCom.Positions
7 years ago
, Test.RoboCom.Utils
, Test.BarAggregator
, ArbitraryInstances
7 years ago
source-repository head
type: git
location: https://github.com/asakul/robocom-zero