Alexander Trufanov

Results 209 comments of Alexander Trufanov

default MA is SMA, but TA-Lib calculates it in a most efficient way: by adding the next bar, removing the bar[-period] and deviding by timeperiod. So it has a rolling...

I just googled for `/opt/rh/devtoolset-7` and found > Use `which g++` to see which compiler is in your path. The RHDTS GCC executable path will begin with `/opt/rh`. Alternatively, use...

Perhaps it does related to the lack of administrative rights, but it's not related to ta-lib. It's about accessing to gcc. Could you ask server support for advise?

Here I'm suggesting instructions on how to build the TA-Lib C library from sources under Replit: https://stackoverflow.com/questions/73631645/ta-lib-replit-python-install-problem-error-no-matching-distribution-found-for/73648628

If ./configure doesn't exists then `autoreconf --install` should report error (it generates ./configure). Are there any?

It should be `autoreconf --install`, not `autoreconfig --install`

aclocal should be a part of `automake` package. Check if you added it at step 2. Also you can list the content of your `replit.nix` file with `cat ../replit.nix` (from...

Yes, you lack `automake` and `cmake` packages from step 2. > ~/Talib-Test/ta-lib$ aclocal aclocal: command not installed. Multiple versions of this command were found in Nix. Select one to run...

Ok, looks good. Now go to the ta-lib/ folder and perform "step 3" and so on.