/ Exchanges / src / module.jl
module.jl
 1  include("constructors.jl")
 2  include("currency.jl")
 3  include("tickers.jl")
 4  include("data.jl")
 5  include("utils.jl")
 6  include("accounts.jl")
 7  include("leverage.jl")
 8  include("trades.jl")
 9  include("adhoc/utils.jl")
10  include("adhoc/leverage.jl")
11  include("adhoc/constructors.jl")
12  include("adhoc/tickers.jl")
13  
14  export @exchange!, setexchange!, getexchange!, exckeys!
15  export loadmarkets!, tickers, pairs
16  export issandbox, ratelimit!, isratelimited, ispercentage
17  export timestamp, timeout!, check_timeout
18  export ticker!, lastprice
19  export leverage!, marginmode!
20  
21  using Reexport
22  @reexport using ExchangeTypes