Navigation

    Quantiacs Community

    • Register
    • Login
    • Search
    • Categories
    • News
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Recent
    Log in to post
    • All categories
    • Support
    •      Request New Features
    • Strategy help
    • General Discussion
    • News and Feature Releases
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • news-quantiacs

      The Winners of the Q19 Stock Contest
      News and Feature Releases • • news-quantiacs

      1
      1
      Votes
      1
      Posts
      5342
      Views

      No one has replied

    • C

      How to change 'iopub_data_rate_limit'
      Support • • cyan.gloom

      3
      0
      Votes
      3
      Posts
      968
      Views

      C

      @support
      Thanks !

    • E

      Q20: Where can I see the complete list of all available fundamental indicators?
      Support • • EDDIEE

      2
      0
      Votes
      2
      Posts
      482
      Views

      support

      @EDDIEE
      Hello, sorry for late answer, for now it is best to use indicators shown in the table at https://quantiacs.com/documentation/en/data/fundamental.html. Recent qnt library version has obsolete methods for getting the list of all available fundamentals, it will be fixed in next qnt update.

    • C

      Why number financial instruments is different from my expectation ?
      Support • • cyan.gloom

      2
      0
      Votes
      2
      Posts
      487
      Views

      support

      @cyan-gloom
      Hi, sorry for late answer. This number shows the total number of instruments that weights have been allocated to, at any point of entire time period. In your case, it means that 87 different instruments have been ranked in top5 or bottom5 by Sharpe Ratio.

    • S

      Error for importing quantiacs module
      Support • • steel.camel

      3
      0
      Votes
      3
      Posts
      1162
      Views

      support

      @steel-camel Sorry for the issue, it has been fixed.

    • C

      Why Sharp ratios is not inverted ?
      Strategy help • • cyan.gloom

      4
      0
      Votes
      4
      Posts
      2098
      Views

      C

      @support
      Thanks a lot !

    • C

      combinations of strategy
      Strategy help • • cyan.gloom

      3
      0
      Votes
      3
      Posts
      1477
      Views

      C

      @support
      Thanks
      I got it !

    • C

      Why .interpolate_na dosen't work well ?
      Support • • cyan.gloom

      6
      0
      Votes
      6
      Posts
      1611
      Views

      C

      @antinomy

      I got it !
      Thanks a lot !!

    • W

      Q20 information?
      News and Feature Releases • • wireless.trout

      11
      1
      Votes
      11
      Posts
      3185
      Views

      support

      @magenta-muskrat Yes, we would have said crypto and stocks otherwise.

    • C

      How to fix this error
      Support • • cyan.gloom

      5
      0
      Votes
      5
      Posts
      2028
      Views

      C

      @antinomy
      Thanks for your advice !

    • M

      Backtesting
      Strategy help • • magenta.kabuto

      16
      1
      Votes
      16
      Posts
      6178
      Views

      support

      @stefanm Thank you!

    • M

      Different Sharpe Ratios for Multipass-Backtest and Quantiacs Mulipass Backtest
      Support • • magenta.kabuto

      13
      1
      Votes
      13
      Posts
      8689
      Views

      support

      @vyacheslav_b thank you!

    • S

      Suggestions for the Q17 contest.
      News and Feature Releases • • Sun-73

      12
      2
      Votes
      12
      Posts
      4271
      Views

      support

      @pillocktailor Thank you for the interesting proposal.

    • nosaai

      Install Toolbox on Python 3.9
      Support • • nosaai

      6
      0
      Votes
      6
      Posts
      970
      Views

      support

      @magenta-kabuto We support only Python 3.7 right now. But it can coexist with Python 3.9:

      https://quantiacs.com/documentation/en/user_guide/local_development.html

      Basically you can use Python 3.7 inside a conda environment.

    • news-quantiacs

      The winners of the Q18 stock contest
      News and Feature Releases • • news-quantiacs

      1
      1
      Votes
      1
      Posts
      3689
      Views

      No one has replied

    • V

      Example strategy for Q19
      Support • • vg2001

      4
      0
      Votes
      4
      Posts
      605
      Views

      support

      @vg2001 Hello, the Q19 is a replica of the Q18, you ccan use the same examples.

    • C

      ImportError - Sklearn
      Support • • captain.nidoran

      7
      0
      Votes
      7
      Posts
      2320
      Views

      support

      @captain-nidoran Hello, please try to add in a cell at the beginning:

      pip install 'sklearn==0.0.post1'

      or in the init file:

      ! apt update && apt install -y libgomp1 && rm -rf /var/lib/apt/lists/*

      Best regards

    • S

      Ticker for cash
      Request New Features • • Sun-73

      2
      0
      Votes
      2
      Posts
      1381
      Views

      support

      @sun-73 Dear @Sun-73, there is no ticker for cash. Allocations smaller than 100% will result in a part in cash.

    • A

      Some of my Q18 strategies stopped running after Jan 01 2023
      Support • • Algotime

      9
      0
      Votes
      9
      Posts
      2456
      Views

      A

      @support Thanks for the opportunity to be reprocessed. I cloned the programs and made the only change as suggested (from “pip install yfinance” to “ pip install git+https://github.com/ranaroussi/yfinance.git@c56e3496dbc6a701c4bcb94787acda7e2928b32d”). I run them successfully and submitted to the contest. The updated strategies are now under Sent Strategies / Filtered (rejected due to the rules). Details were sent to the email as requested. Much appreciated!

    • J

      Fundamental Data: Periodic indicators & Instant indicators
      Strategy help • • johback

      4
      1
      Votes
      4
      Posts
      1343
      Views

      V

      @johback

      Hello

      More examples are here https://github.com/quantiacs/toolbox/blob/main/qnt/tests/test_fundamental_data.py

      This is a simple example.

      import qnt.data as qndata import datetime as dt import qnt.data.secgov_indicators import qnt.data as qndata import qnt.stats as qns assets = qndata.stocks.load_ndx_list(tail=dt.timedelta(days=5 * 365)) assets_names = [i["id"] for i in assets] data = qndata.stocks.load_ndx_data(tail=dt.timedelta(days=5 * 365), dims=("time", "field", "asset"), assets=assets_names, forward_order=True) facts_names = ['operating_expense'] # 'assets', 'liabilities', 'ivestment_short_term' and other fundamental_data = qnt.data.secgov_load_indicators(assets, time_coord=data.time, standard_indicators=facts_names) # Operating expenses include marketing, noncapitalized R&D, # travel and entertainment, office supply, rent, salary, cogs... weights = fundamental_data.sel(field='operating_expense') is_liquid = data.sel(field="is_liquid") weights = weights * is_liquid # calc stats stats = qns.calc_stat(data, weights.sel(time=slice("2006-01-01", None))) display(stats.to_pandas().tail()) # graph performance = stats.to_pandas()["equity"] import qnt.graph as qngraph qngraph.make_plot_filled(performance.index, performance, name="PnL (Equity)", type="log")
    • Documentation
    • About
    • Career
    • My account
    • Privacy policy
    • Terms and Conditions
    • Cookies policy
    Home
    Copyright © 2014 - 2021 Quantiacs LLC.
    Powered by NodeBB | Contributors