Navigation

    Backtrader Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. kenorb
    3. Posts
    For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 4
    • Best 1
    • Groups 0

    Posts made by kenorb

    • RE: cerebro.plot() does not work with Anaconda / IPython

      Possible fix: https://github.com/mementum/backtrader/pull/423

      posted in General Code/Help
      K
      kenorb
    • RE: cerebro.plot on Colab not displaying chart

      Possible fix: https://github.com/mementum/backtrader/pull/423

      posted in General Discussion
      K
      kenorb
    • RE: Using corabro.plot() in google colab

      Possible fix: https://github.com/mementum/backtrader/pull/423

      posted in General Code/Help
      K
      kenorb
    • RE: cerebro.plot on Colab not displaying chart

      @jf Similar workaround to display in Colab:

      from google.colab import files
      from IPython.display import Image
      chart_file = 'result.png'
      cerebro.plot()[0][0].savefig(chart_file, dpi=300)
      Image(open(chart_file, 'rb').read())
      
      posted in General Discussion
      K
      kenorb
    • 1 / 1