FemtoTrader
FemtoTrader
Hello, According https://about.sourcegraph.com/docs/code-intelligence/experimental-language-servers Julia is not a supported language (even experimental) It will be great if you could add such a support.... especially since [sourcegraph is open source](https://about.sourcegraph.com/blog/sourcegraph-is-now-open-source/) According sourcegraph/lsp-adapter...
Hello, maybe you should consider adding [file verification](https://en.wikipedia.org/wiki/File_verification) to [RemoteFiles.jl](https://github.com/helgee/RemoteFiles.jl). [Checksums](https://en.wikipedia.org/wiki/Checksum) could help (MD5, SHA...) Kind regards
Hello, I wonder if functions like `quandlget` or `quandlsearch` shouldn't be simply named `get` and `search` with an other parameter (source) being used for multiple dispatch ```julia quandl = Quandl()...
Hello, I wrote some months ago a Julia wrapper for [TA-Lib](http://www.ta-lib.org/) : [TALib.jl](https://github.com/femtotrader/TALib.jl) So it's financial market technical analysis & indicators in Julia using TA-Lib library. I think it's better...
Hello, I wonder if data (for currencies but also crypto currencies #101 ) shouldn't be separated from code (to avoid too much updates of this package). Working with [datapackages](https://frictionlessdata.io/data-packages/) (especially...
Hello, the following code ```python import pandas as pd import numpy as np import blankly from blankly.data.data_reader import PriceReader from blankly import Strategy, StrategyState def init(symbol, state: StrategyState): print(symbol, state)...
Hello, According to doc https://docs.blankly.finance/orders/order/ a `market_order` method exists but it could be a nice improvement to add `market_order_target` with `target` parameter (relative size of the position after the trade)...
Hello, I'm looking for a way to "chain" 2 (or more) OnlineStat to do something like in the following examples https://github.com/nardew/talipp/blob/main/tests/test_indicator_chaining.py I wonder what is the best solution for that...
Hello, `ParameterSet` currently doesn't support constraints among parameters. Here is a short implementation ```julia import Base: show const TABWIDTH = 4 const TAB = ' ' ^ TABWIDTH mutable struct...