Darío López Padial

Results 27 comments of Darío López Padial

Bug fixed. Available on the last version of the library (v0.10.2) Thanks @yarimiz

Hi @Nick2Nik , You need to call the method `sma_indicator`. You can find an example here: https://github.com/bukosabino/ta/blob/2fba349d2f3f9acd66e9424bc7ce05c28da93fe1/ta/wrapper.py#L164 Try this: ``` Data['MA(5)']=trade.trend.SMAIndicator(Data["Close"], n=5, fillna=False).sma_indicator() Data['MA(3)']=trade.trend.SMAIndicator(Data["Close"], n=3, fillna=False).sma_indicator() Data['3/5']=Data['MA(3)']/Data['MA(5)'] ``` Best, Dario

If you want to install this `ta` library, just write: ``` pip install ta ``` Best, Dario

Hi @slavakurilyak , This is a excellent idea to develop on this project! But, I need more time.. :P Thank you

I don't know, I am not forcing nothing special. Some information: My two devices (iphone 6s and ipad mini 4) have 10.3.2 iOS version. Your system information: Cordova CLI: 6.5.0...

Hi @shellwang , Can you provide us more details about your goals? As Max says, you need more related tables to extract this kind of features.

Hi all, I have fixed this issue doing some changes on `XMLParser` implementation. You can find it on next pull request: https://github.com/jpadilla/django-rest-framework-xml/pull/39 Best, Dario.

The idea was to parse something like the following: ```xml 121.0 dasd ``` Is parsed into: ``` [ {'field': { 'value': 121, 'attributes': { 'name': 'attribute_a' } }, {'field': 'value':...

Hi @jpadilla , I have added one test based on this comment: https://github.com/jpadilla/django-rest-framework-xml/issues/16#issuecomment-498244280 Let me know if everything looks good for you. Best, Dario

I don't completely understand you. Do you have any error?