Brian Cappello

Results 30 comments of Brian Cappello
trafficstars

@dahai001 The value differences coming out of the EMA function are actually an intrinsic property of exponential moving averages having a "memory" of past values effecting the most recent values....

@mrjbq7 Yea, probably would be a good idea to document the unstable functions somewhere. What were your primary design goals with the streaming API? It maybe could be worth the...

Something like this should work: ``` from talib import MA_Type slowk, slowd = STOCH(high, low, close, fastk_period=5, slowk_period=3, slowk_matype=MA_Type.SMA, slowd_period=3, slowd_matype=MA_Type.EMA) ``` All of the available types are listed [here](https://github.com/mrjbq7/ta-lib/blob/master/talib/common.pyx#L51)...

@metaperl Yes, you are right, it could be more clear! That's very likely my fault; and probably attributable to "the curse of knowledge" - so thank you for the heads...

There is another workaround that doesn't require passing `session` as a kwarg into every call to load/dump, and has the added benefit of also working out of the box with...

@pcraciunoiu I think I figured out what's wrong; you need to use lazy attributes for the "unique" fields (aka the fields in `Meta.django_get_or_create`): ```python class CommentFactory(factory.django.DjangoModelFactory): class Meta: model =...

Managed to get hot reloading working using `webpack-dev-server`, [see this diff](https://github.com/briancappello/django-react-redux-base/commit/ecb947a944778f5c73e20656d87cb156cc0037a4). Note that I've only tested it locally, not with docker or in production... YMMV.

What happens if you set `EXTERNAL_SERVER_NAME='example.com'` (also with `_external=True`)?

Nice, this looks good! I haven't had a chance to test it yet, hopefully tonight. Assuming it works I'm happy to merge. I haven't put any effort into this docker...

@chriamue Started playing around with this. Just to clarify if I'm understanding how this is supposed to work, what I've been trying is this command from the `flask-unchained` directory: ```...