Stochastic Reverse Engenering

Forums ProRealTime forum Français Support ProBuilder Stochastic Reverse Engenering

Viewing 2 posts - 1 through 2 (of 2 total)
  • #240756

    bonjour, j’ai fais un code avec chat gpt qui marche sur TW pour afficher la STO en reverse engenering
    le voici

    //@version=5
    indicator(“Stochastic Reverse Engineering (K=200, D=200)”, overlay = true)
    // Inputs
    k_period = 200  // Période de %K fixée à 200
    d_period = 200  // Période de %D fixée à 200
    smoothK = input(3, title=”Smooth K”)
    // Calcul du Stochastique %K
    lowestLow = ta.lowest(low, k_period)
    highestHigh = ta.highest(high, k_period)
    k = 100 * (close – lowestLow) / (highestHigh – lowestLow)
    // Lisser %K
    smoothedK = ta.sma(k, smoothK)
    // Calcul du %D
    d = ta.sma(smoothedK, d_period)
    // Normaliser %K et %D pour les rendre visibles sur le graphique des prix
    k_normalized = (smoothedK / 100) * (highestHigh – lowestLow) + lowestLow
    d_normalized = (d / 100) * (highestHigh – lowestLow) + lowestLow
    // Tracer les lignes %K et %D sur le graphique des prix
    plot(d_normalized, title=”%D (200)”, color=color.orange, linewidth=2)

    j’ai essayé une conversion mais impossible au niveau du calcul de K, je ne comprend pas pourquoi il parle de nombre entier.
    Si vous avez une solution?

     

    #240758

    je vien  de reussir
    le voici pour vous

     

    1 user thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login