Brian

Results 16 issues of Brian

Is there a function/method that allows us to access the algorithm time? For example if you only want to accept trades during certain periods during the market session.

Please forgive my misunderstanding but in the examples you pass a parameter c to almost all the functions and I can't find what's attributes/methods are? ``` @njit def order_func_nb(c, size,...

Trying to plot a `df` with 25 columns using the `vgplot` method results in a legend that extends the graph vertically. How can we implement the pandas plotting behavior of:...

within the trading rule parameters `trading_rule(contract_group, i, timestamps, indicators, signal, account, strategy_context)`, how is the `i` generated? my timestamps are len `1986` but the indexer has a value of `2548`....

Greetings, I've coded a strategy but no orders are taking place. I tried to use breakpoints using my pycharm (pydev) debugger but it runs without stopping at the breakpoints. Is...

Hi I'm wondering if you could demonstrate a canonical example for how you would implement a market order + stop limit profit order and a stop loss order.

So far I found cumulative returns, time in market, average drawdown and average drawdown days to be different but there could be others. You can reproduce this issue with the...

Describe the bug ================ The documents describe a the function parameters for the fit argument and include a `sample_fraction` parameter that's used if `sample=True` however that parameter is not actually...

bug

I'm using Windows 8.1, WinPython 2.7. I copied the example from the NFLDB intro page. ``` Python q = nfldb.Query(db) q.game(season_year=2012, season_type='Regular') q.player(full_name='Tom Brady').play_player(passing_yds__ge=60) for p in q.as_plays(): print p...