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.

132 lines
4.7 KiB

7 years ago
name: robocom-zero
version: 0.2.0.0
7 years ago
-- synopsis:
-- description:
homepage: https://github.com/asakul/robocom-zero#readme
license: BSD3
license-file: LICENSE
author: Denis Tereshkin
maintainer: denis@kasan.ws
copyright: 2021 Denis Tereshkin
7 years ago
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.ConfigStorage
7 years ago
, ATrade.RoboCom.Monad
, ATrade.RoboCom.Positions
, ATrade.RoboCom.Persistence
7 years ago
, ATrade.RoboCom.Types
, ATrade.RoboCom.Utils
, ATrade.Quotes
7 years ago
, ATrade.Quotes.Finam
, ATrade.Quotes.QHP
, ATrade.Quotes.QTIS
-- , ATrade.Driver.Real
-- , ATrade.Driver.Backtest
, ATrade.Driver.Junction
, ATrade.Driver.Junction.Types
, ATrade.Driver.Junction.QuoteThread
, ATrade.Driver.Junction.QuoteStream
, ATrade.Driver.Junction.RobotDriverThread
4 years ago
, ATrade.Driver.Junction.ProgramConfiguration
, ATrade.BarAggregator
, ATrade.RoboCom
, ATrade.Quotes.HistoryProvider
, ATrade.Quotes.TickerInfoProvider
other-modules: Paths_robocom_zero
7 years ago
build-depends: base >= 4.7 && < 5
, libatrade >= 0.10.0.0 && < 0.11.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
, zeromq4-haskell-zap
7 years ago
, unordered-containers
, hashable
7 years ago
, th-printf
, BoundedChan
, monad-loops
, conduit
, safe-exceptions
, mtl
, transformers
, list-extras
, optparse-applicative
, split
, signal
, random
, hedis
, gitrev
, data-default
5 years ago
, template-haskell
4 years ago
, unliftio
, monad-logger
, bimap
, stm
, async
, dhall
, extra
7 years ago
default-language: Haskell2010
other-modules: ATrade.Exceptions
-- , 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
, zeromq4-haskell
, zeromq4-haskell-zap
, BoundedChan
, mtl
7 years ago
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
other-modules: Test.RoboCom.Indicators
, Test.RoboCom.Utils
, Test.Driver.Junction.QuoteThread
, Test.BarAggregator
, ArbitraryInstances
, Test.Mock.HistoryProvider
, Test.Mock.TickerInfoProvider
7 years ago
source-repository head
type: git
location: https://github.com/asakul/robocom-zero