def portfolio(request):
    holdings = Service.getAllHolding(request.user.trader)
    help_titles = Service.getHelpTitleAsDict('home')
    help_descriptions = Service.getHelpDescriptionAsDict('home')
    waiting_orders = Service.getAllOrder(request.user.trader)
    return render(request, 'market/portfolio.html', locals())