module EmpireAvenue::API::Profile
Public Instance Methods
profile_bank_balance()
click to toggle source
# File lib/empireavenue/api/profile_bank_balance.rb, line 4 def profile_bank_balance get("/profile/bank/balance") end
profile_info(ticker = nil)
click to toggle source
# File lib/empireavenue/api/profile_info.rb, line 4 def profile_info (ticker = nil) ticker = ticker.join(",") if ticker.is_a? Array params = {:ticker => ticker} if ticker get("/profile/info", params) end