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
    • C

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

      4
      0
      Votes
      4
      Posts
      1972
      Views

      C

      @support
      Thanks a lot !

    • C

      combinations of strategy
      Strategy help • • cyan.gloom

      3
      0
      Votes
      3
      Posts
      1356
      Views

      C

      @support
      Thanks
      I got it !

    • C

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

      6
      0
      Votes
      6
      Posts
      1406
      Views

      C

      @antinomy

      I got it !
      Thanks a lot !!

    • W

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

      11
      1
      Votes
      11
      Posts
      2793
      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
      1836
      Views

      C

      @antinomy
      Thanks for your advice !

    • M

      Backtesting
      Strategy help • • magenta.kabuto

      16
      1
      Votes
      16
      Posts
      5635
      Views

      support

      @stefanm Thank you!

    • M

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

      13
      1
      Votes
      13
      Posts
      8289
      Views

      support

      @vyacheslav_b thank you!

    • S

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

      12
      2
      Votes
      12
      Posts
      3849
      Views

      support

      @pillocktailor Thank you for the interesting proposal.

    • nosaai

      Install Toolbox on Python 3.9
      Support • • nosaai

      6
      0
      Votes
      6
      Posts
      813
      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
      3609
      Views

      No one has replied

    • V

      Example strategy for Q19
      Support • • vg2001

      4
      0
      Votes
      4
      Posts
      478
      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
      2051
      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
      1279
      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
      2122
      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
      1210
      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")
    • E

      Q19 Contest
      General Discussion • • EDDIEE

      3
      0
      Votes
      3
      Posts
      1343
      Views

      support

      @eddiee Dear Eddiee, yes, the rules and the universe are the same. We will need some more time to extend the universe and the data set, so we decided to run a new contest with the same rules.

      Please note that according to the rules at https://quantiacs.com/contest/19

      A Trading System will be deemed to be a “unique“ Trading System if it was not submitted by the same user to a previous Contest and it was not published by the Sponsor itself and it was not submitted by another user to a previous Contest or to the current Contest. The Sponsor will run on submissions a correlation filter and will have to right to disqualify submissions which are not deemed to be unique.

      So re-submitting the same system will result into a system which is not eligible for a prize.

    • S

      Q19 contest
      News and Feature Releases • • Sun-73

      9
      0
      Votes
      9
      Posts
      2577
      Views

      support

      @theflyingdutchman thanks, understood

    • A

      Submitting strategies
      Support • • aybber

      10
      0
      Votes
      10
      Posts
      2472
      Views

      O

      @support said in Submitting strategies:

      @aybber mapquest directions Hello, that is just due to the fact that there is a long queue of systems to be processed, we will work on improving the processing time. Submission time will be extended to end of October as there were some issues.

      Thank you, all is clear.

    • A

      Issue with Data
      Support • • alphastar

      7
      0
      Votes
      7
      Posts
      648
      Views

      support

      @alphastar Sorry for the very late answer, the issue has been fixed in the meantime....

    • J

      Alpha Default Value of EMA function
      Strategy help • • juzambranol

      5
      0
      Votes
      5
      Posts
      1210
      Views

      support

      @gjhernandezp yes, correct, 2/(n+1), sorry for the typo, thanks for correcting

    • Documentation
    • About
    • Career
    • My account
    • Privacy policy
    • Terms and Conditions
    • Cookies policy
    Home
    Copyright © 2014 - 2021 Quantiacs LLC.
    Powered by NodeBB | Contributors