hhashim1

Results 103 comments of hhashim1

I still have the same error. ![image](https://user-images.githubusercontent.com/62855649/176060451-030162d7-3a6e-403e-b146-186181b3b4fd.png) in my `ta_func.h` file, all of my function calls show an error and say that the definition is missing. I don't recall having...

Ok so I no longer have the warning/error of dereferencing NULL pointer and the build goes fine except I have an error when I `import talib` in python. `ImportError: /ta-lib-wrapper/talib/_ta_lib.cpython-37m-x86_64-linux-gnu.so:...

Which directory should I run this in? `ta-lib-wrapper` or `talib/c`?

No output if I run from the `ta-lb-wrapper` directory but if I run in `ta-lib/c`, here is what I get. ![image](https://user-images.githubusercontent.com/62855649/176245554-034f2bbb-c97d-467a-b17e-3651ce6f2670.png)

``` const TA_FuncDef *TA_DEF_TableR[] = { ADD_TO_TABLE(ROC), ADD_TO_TABLE(ROCP), ADD_TO_TABLE(ROCR), ADD_TO_TABLE(ROCR100), ADD_TO_TABLE(RSI), ADD_TO_TABLE(RVSTDEV), NULL }; ```

This is from `table_r.c` ``` /* RVSTDEV BEGIN */ static const TA_InputParameterInfo * TA_RVSTDEV_Inputs[] = { &TA_DEF_UI_Input_Price_V, NULL }; static const TA_OutputParameterInfo* TA_RVSTDEV_Outputs[] = { &TA_DEF_UI_Output_Real, NULL }; static const...

https://pastebin.com/VEsiVQiZ

![image](https://user-images.githubusercontent.com/62855649/176255444-2b92f304-7eda-4ad4-a6ae-21753e0d197c.png) Which directory do I need to be in to run the above commands? All of them are saying `No such file or directory`.

``` TA_RetCode TA_RVSTDEV(int startIdx, int endIdx, const double inVolume[], int optInTimePeriod, int *outBegIdx, int *outNBElement, double outReal[]) int TA_RVSTDEV_Lookback(int optInTimePeriod) ```

I have it included in two places in `_func.pxi` like you have suggested. I will uninstall and test again and will report to you.