コード例 #1
0
ファイル: graph.py プロジェクト: Exiledz/crypto
def GraphPortfolioTimeSeries(title, users, start_t, end_t):
  t_list = list(range(start_t, end_t, (end_t-start_t)//100)) + [end_t]
  x_values = [
      mdates.date2num(datetime.datetime.fromtimestamp(t)) for t in t_list]
  # build the figure
  fig, ax = plt.subplots()
  dfs = []
  for i, user in enumerate(users):
    y_values = portfolio.GetPortfolio(user.id).GetValueList(t_list)
    df = pd.DataFrame({'USD': y_values, 'Date': x_values})
    df['unit'] = 'USD'
    df['User'] = ('%s' % user)
    dfs.append(df)
  all_dfs = pd.concat(dfs)
  graph = sns.tsplot(data=all_dfs, value='USD', time='Date', unit='unit', condition='User')
  graph.set_title(title)

  # assign locator and formatter for the xaxis ticks.
  ax.xaxis.set_major_locator(mdates.AutoDateLocator())
  f = '%Y/%m/%d' if end_t - start_t > 86400 * 2 else '%m/%d %H:%M'
  ax.xaxis.set_major_formatter(mdates.DateFormatter(f))

  # put the labels at 45deg since they tend to be too long
  fig.autofmt_xdate()
  plt.savefig(GRAPHLOC)
  return GRAPHLOC
コード例 #2
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
 async def value(self, ctx, user=None):
     """Check the value of your portfolio, or of another user on the server."""
     if not user:
         user = ctx.message.author
     else:
         user = util.GetUserFromNameStr(ctx.message.server.members, user)
     p = portfolio.GetPortfolio(user.id)
     await self.bot.say('%s\'s portfolio is now worth $%.2f.' %
                        (user, p.Value()))
コード例 #3
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
 async def list(self, ctx, user=None, date=None):
     """Display your portfolio, or optionally another user's portfolio."""
     if not user:
         user = ctx.message.author
     else:
         user = util.GetUserFromNameStr(ctx.message.server.members, user)
     timestamp = util.GetTimestamp(date)
     p = portfolio.GetPortfolio(user.id)
     await self.bot.say('```%s\'s portfolio:\n'
                        'Total Value: $%s (%s) \n'
                        '%s```' %
                        (user, p.Value(timestamp), p.GetChange(timestamp),
                         p.AsTable(timestamp)))
コード例 #4
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
 async def clear(self, ctx, confirm=None):
     """Wipe out all portfolio data.
 
 This pretty much should only be used if incorrect data is in your portfolio.
 """
     user = ctx.message.author
     p = portfolio.GetPortfolio(user.id)
     if confirm != 'confirm':
         await self.bot.say(
             'Are you sure you want to wipe out your portfolio and '
             'its entire history? To confirm say "!clear confirm"')
     else:
         p.ClearRemote()
         await self.bot.say('Cleared all portfolio data for %s' % user)
コード例 #5
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
 async def graph(self, ctx, time_delta="", *users: str):
     """Graph portfolios."""
     if not users:
         users = [
             user for user in ctx.message.server.members
             if len(portfolio.GetPortfolio(user.id))
         ]
     else:
         users = [
             util.GetUserFromNameStr(ctx.message.server.members, user)
             for user in users
         ]
     if time_delta is "":
         start_t = min(
             portfolio.GetPortfolio(user.id).CreationDate()
             for user in users)
     else:
         start_t = int((datetime.datetime.now() -
                        util.GetTimeDelta(time_delta)).timestamp())
     end_t = int(datetime.datetime.now().timestamp())
     graph_file = graph.GraphPortfolioTimeSeries('Gainz', users, start_t,
                                                 end_t)
     await self.bot.upload(graph_file)
コード例 #6
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
    async def sell(self, ctx, amount: float, symbol, date=None):
        """Sell a crypto currency.

    If specified, date should be in YYYY/MM/DD(HH:MM:SS) format.
    (HH:MM:SS) is optional, with HH being 0-23.
    
    It would be most appropriate to use this command when selling a
    coin from fiat currency (e.g. with USD). For trading between 
    cryptocurrencies, see !trade.
    """
        user = ctx.message.author
        p = portfolio.GetPortfolio(user.id)
        p.Sell(symbol, amount, util.GetTimestamp(date))
        await self.bot.say('%s\'s portfolio is now worth $%.2f.' %
                           (ctx.message.author, p.Value()))
コード例 #7
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
    async def trade(self,
                    ctx,
                    sell_amount: float,
                    sell_symbol,
                    buy_amount: float,
                    buy_symbol,
                    date=None):
        """Trade a specified amount of one cryptocurrency for another.

    If specified, date should be in YYYY/MM/DD(HH:MM:SS) format.
    (HH:MM:SS) is optional, with HH being 0-23.
    
    example: In order to trade 1000 Raiblocks for one Bitcoin
      !trade 1000 XRB 1 BTC
    """
        user = ctx.message.author
        p = portfolio.GetPortfolio(user.id)
        p.Trade(buy_symbol, buy_amount, sell_symbol, sell_amount,
                util.GetTimestamp(date))
        await self.bot.say('%s\'s portfolio is now worth $%.2f.' %
                           (user, p.Value()))
コード例 #8
0
ファイル: portfolio_commands.py プロジェクト: Exiledz/crypto
    async def init(self, ctx, *amount_and_symbol: str):
        """Initialize your portfolio with a list of coins.

    **Important** This will set the exact contents of your portfolio at the
    current timestamp. If you want to be able to do correct graphing of your
    portfolio, you have to instead do a list of !buy, !sell, and !trade
    commands, specifying dates of transactions.

    This command will not erase your historical data, meaning
    you can use this command. Instead of a list of !buy, !sell, and !trades
    if you made a lot of transactions within a short timeframe.
    
    example: !portfolio_init 0.13 BTC 127.514 XRB 2 ETH
    """
        user = ctx.message.author
        p = portfolio.GetPortfolio(user.id)
        tuples = []
        for i in range(0, len(amount_and_symbol), 2):
            tuples.append(
                (amount_and_symbol[i + 1], float(amount_and_symbol[i])))
        p.Init(tuples)
        await self.bot.say('%s\'s portfolio is now worth $%.2f.' %
                           (ctx.message.author, p.Value()))