Strategems.jl icon indicating copy to clipboard operation
Strategems.jl copied to clipboard

Quantitative systematic trading strategy development and backtesting in Julia

Results 14 Strategems.jl issues
Sort by recently updated
recently updated
newest added

Can you add live trading connectors also.

enhancement
help wanted
data

Need to write more thorough documentation for package functionality. * Examples * Full walkthrough * Universe data gathering usage * New infix operators * Crossover alias (up arrow) * Crossunder...

enhancement
help wanted

Add the ability to define a signal or rule with logical operators. For example: ```julia siglong = @signal MAMA ↑ FAMA || MAMA == FAMA ```

enhancement

Hello, This PR contains some API changes to enable threading. All in-place assignments to mutable structs have been removed/deprecated. All structs have been changed to immutable. Using two threads gives...

I found very interesting this tool, so I started from the example posted in the README but I was not able to make it work. I'm using Julia 1.4.2. Here...

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...

enhancement
help wanted
question
research

Hello, We should have a sample data project (it could be in a separate repository) I think it will be better to have sample data close to something that can...

https://github.com/dysonance/Strategems.jl/blob/133b58f596739f1b89c5978a2d88c02e2902dc7f/test/runtests.jl#L8 You should use instead nested testsets to isolate tests and "share" variables

testing

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...

enhancement
help wanted

Hello, Python have an interesting library with a nice API. https://pypet.readthedocs.io/ Maybe you should consider something like this. This Julia parameter exploration toolkit could be even be a standalone project...

enhancement
help wanted
research