ibex.ex
defmodule Ibex do
@moduledoc """
Documentation for `Ibex`.
"""
end
defmodule Ibex.Types do
@type contract_symbol :: String.t()
@type contract_currency :: String.t()
@type contract_sec_type ::
:STK
| :ETF
| :OPT
| :FUT
| :IND
| :FOP
| :CASH
| :BAG
| :WAR
| :BOND
| :CMDTY
| :NEWS
| :FUND
end