hhashim1
hhashim1
I still have the same error.  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. 
``` 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
 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.