Developing "Spartan"

Discussion in 'Journals' started by nooby_mcnoob, Feb 3, 2019.

  1. To be fair, matplotlib does that as well but it's dumb easy to get around it:

    Code:
    plt.xticks(x.index)
    plt.plot(x.close.values)
    
    With Qt Charts, you have to pray to God your chart doesn't go blank with the latest changes.
     
    #211     Nov 3, 2019
  2. IAS_LLC

    IAS_LLC

    When I was using qt "back in the day", I used it with c++, not python. QCustomPlot was the Real time plotting library I used. It worked very well.
     
    #212     Nov 3, 2019
  3. That reminds me, you can use matplotlib in Qt as well through one of the agg backends. But don't use it for streaming, too slow.
     
    #213     Nov 3, 2019
  4. All that matters is P&L and drawdown, unless you’re marketing for OPM.
     
    #214     Nov 3, 2019
    nooby_mcnoob likes this.
  5. Well brother, I hope you get that 8 figures. The remorse of not putting your nuts on the chopping block, is worse than losing everything, in my view. Good luck to you. I'll be on a tech detox, and serving business purpose only, hopefully for good.
     
    #215     Nov 3, 2019
    nooby_mcnoob likes this.
  6. d08

    d08

    Matplotlib I've found to be otherwise complicated and unintuitive, I've yet to find a way to format y-axis values with subplot2grid. The system config call that should take care of it goes ignored, most likely a bug.
     
    #216     Nov 4, 2019
  7. For matplotlib, stay away from everything that is slightly complicated when it comes to layout. The most complex I'll get is using plt.subplots().

    That being said, you can always iterate through axes by using fig.get_axes. Surely you can hack your way through it here.
     
    #217     Nov 4, 2019
  8. It's funny to see you guys talk about various plot programs. I write my software in Java and thus have to use JfreeChart for plotting graphs. Talking about a complicated program ....
     
    #218     Nov 4, 2019
    SteveH likes this.
  9. Well, it is written in Java... So...
     
    #219     Nov 4, 2019
    IAS_LLC, djames and d08 like this.
  10. IAS_LLC

    IAS_LLC

    I can hear the java gremlins coming....
     
    #220     Nov 5, 2019
    d08 and nooby_mcnoob like this.