Jacob Amos
Jacob Amos
Need to write more thorough documentation for package functionality. * Examples * Full walkthrough * Universe data gathering usage * New infix operators * Crossover alias (up arrow) * Crossunder...
Add the ability to define a signal or rule with logical operators. For example: ```julia siglong = @signal MAMA ↑ FAMA || MAMA == FAMA ```
Implement a Julia type, `Order` (or `AbstractOrder` from which more concrete order types could be children, like `MarketOrder`, `LimitOrder`, `StopOrder`, etc.) for storing, processing, and manipulating orders. This type should...
When defining a `ParameterSet` object with ranges corresponding to each of its variables (i.e. the `arg_ranges` member), currently there isn't any way to constrain the parameter space using the relationships...
Should be able to run multiple backtests in parallel when doing parameter optimization runs.
See here: https://github.com/dysonance/Indicators.jl/issues/7
Latest version of Julia comes with native support for missing values. See [here](https://docs.julialang.org/en/latest/manual/missing/). Temporal should now support these values. This would probably also be a good time to move the...