Packages

Use ccxt (cryptocurrency trading library) with Elixir

Current section

Files

Jump to
ccxtex lib ccxtex ohlcv.ex
Raw

lib/ccxtex/ohlcv.ex

defmodule Ccxtex.OHLCV do
use TypedStruct
typedstruct do
field :open, float()
field :close, float()
field :high, float()
field :low, float()
field :base_volume, float()
field :timestamp, integer()
end
end