Coder Social home page Coder Social logo

truestrategy's People

Contributors

cryptorobotfr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

truestrategy's Issues

Idée d'optimisation du Trix

Bonjour à tous !
J'ai une idée qui m'est venue en analysant les cartes sistémiques. A partir du code d'optimisation à deux paramètres du Trix est-il possible d'ajuster les valeurs TrixLength et TrixSignal avec un déplacement de +/-1 ou 0 tous les jours sur le programme TrixFtxlive.py après analyse des données sur 1 moi ?
Les données seront analysées avec un décalage de 1 jour chaque jour qui passe mais sur une période de 1 moi. Et encadrer ces valeurs entre [5,25]. Est-ce une bonne idée d'un point de vue financier ?

Bonne journée !

ERROR: Failed building wheel for ciso8601

Salut,

Merci à toi pour toutes tes vidéos. J'essaye d'installer le module ciso8601 mais j'ai cette erreur qui apparait:

ERROR: Failed building wheel for ciso8601

aurais tu une idée?

Merci

Calcul de la performance relative du bot incorrecte

Le calcul de la performance du bot relative par hold n'est pas correcte.
Exemple :

Coin Price from 23.13 to 19.48 $
Final balance bot wallet : 562.54 $
Performance vs USD : -43.75 %
Buy and Hold Performance : -15.79 %
Performance vs Buy&Hold : 177.08 %

Cela donne l’impression que le bot a surperformé de 77% par rapport au hold, alors qu'il a perdu presque la moitié, et le hold n'a perdu que 15%. Approximativement, le bot a perdu 28% de plus (-43,8 - -15,8)

Calcul de la performance relative actuelle : par exemple dans TrixStrategy/Trix_Complete_backtest.ipynb
vsHoldPercentage = ((algoPercentage - holdPercentage)/holdPercentage) * 100

On voit bien que la formule prend des pourcentages pour des réels relatifs, des nombres qui devraient être par rapport à 1, non à 100, et cela crée des problèmes de signes.

Je propose la correction suivante

algPerf = (100+algoPercentage)/100
hPerf = (100+holdPercentage)/100
vsHoldPercentage = ((algPerf - hPerf)/hPerf) * 100

Avec les données de l'exemple, cela donne la performance vs Buy&Hold : -33,2 %
On a bien perfHold * relative = perfBot :
( 1-0.1579 ) * 0.668 = 0.5625 -> -43,75% la performance du bot, le bot a mangé 33% par rapport au hold.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.