Chiedo di tradurre questo indicatore dal linguaggio pine script al linguaggio proreal time
Forums › ProRealTime forum Italiano › Supporto ProBuilder › Chiedo di tradurre questo indicatore dal linguaggio pine script al linguaggio proreal time
-
-
03/29/2025 at 10:56 PM #245414
Buonasera, posso chiedere la cortesia di tradurre questo indicatore dal linguaggio pine script al linguaggio proreal time?
Ecco il codice :
// @version= 6
indicator ( “Autocorrelation Price Forecasting [The Quant Scie nce]” , overlay = true , max_labels_count = 500 ) tooltip1 = “Imposta la lunghezza dei dati utilizzati nel modello di previsione dei prezzi con autocorrelazione.” _length = input.int ( defval = 20 , title = “Lunghezza:” , step = 1 , minval =
1 , maxval = 200 , tooltip = tooltip1 , group = “IMPOSTAZIONE” )
signal_threshold = 0.50 color1 = input.color ( defval = color.rgb ( 105 , 247 , 62 ) , title = “Stima in su” , group = “STIMA COLORI” , inline = ‘footer’ ) color2 = input.color ( defval = color.rgb ( 255 , 0 , 0 ) , title = “Stima in giù” , group = “STIMA COLORI” , inline = ‘footer’ ) prices = close autocorr_values = ta.correlation ( prezzi , prezzi [ _length ] , 200 ) cycle_detected = autocorr_values > signal_threshold restituisce = ( prezzi – prezzi [ 1 ]) / prezzi [ 1 ] * 100 linreg_values = ta.linreg ( restituisce , _length , 0 ) var float store_cycle_value = 0 se cycle_detected store_cycle_value := linreg_values
future_price_estimate = close * ( 1 + store_cycle_value / 100 ) hipotetical_gain = future_price_estimate – close color_estimate = future_price_estimate > close ? color1 : future_price_estimate < close ? color2 : na color_estimate2 = hipotetical_gain > 0 ? color1 : na color_estimate3 = hipotetical_gain < 0 ? color2 : na label.new ( bar_index , future_price_estimate , xloc = xloc . bar_index , yloc = yloc . abovebar , text = str. tostring ( math. round_to_mintick ( hipotetical_gain )) , style = label. style_none , textcolor = color_estimate2 , size = size. tiny ) label.new ( bar_index , future_price_estimate , xloc = xloc . bar_index , yloc = yloc . belowbar , text = str. tostring ( math. round_to_mintick ( hipotetical_gain )) , style = label. style_none , textcolor = color_estimate3 , size = size. tiny ) plot ( future_price_estimate , color = color_estimate , style = plot. style_stepline_diamond , larghezza della riga = 2 )
03/30/2025 at 2:04 PM #245423Per favore non aggiungere nuovi argomenti ad altri già esistenti.
Per ciascun nuovo argomento, anche se molto simile, occorre aprirne uno nuovo con un titolo appropriato. Grazie 🙂
Adesso l’ho creato io.
Se riesci a postare il codice formattato sarebbe meglio. Anche un link alla pagina web dove l’hai trovato sarebbe molto utile.
03/31/2025 at 10:23 PM #245471Ok Grazie e chiedo scusa.
Questo è il link del sito dove ho reperito il form dell’indicatore.
https://it.tradingview.com/scripts/page-13/
Grazie
04/01/2025 at 12:20 PM #245482Ecco qui:
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103//-------------------------------------------////PRC_Autocorr Price Forecasting//version = 0//01.04.2025//Iván González @ www.prorealcode.com//Sharing ProRealTime knowledge//-------------------------------------------//// Inputs//-------------------------------------------//length = 20 // Lag period used for autocorrelationwindow = 200 // Number of bars used in the correlation windowthreshold = 0.5 // Threshold value to detect the presence of a cyclesrc = close // Source data for returns calculation//-------------------------------------------//// Manual Pearson Correlation Calculation//-------------------------------------------//// Initialize sum variables for correlation formulasumX = 0sumY = 0sumXY = 0sumX2 = 0sumY2 = 0// Loop through the window and compute necessary sumsFOR i = 0 TO window - 1 DOx = close[i] // Current valuey = close[i + length] // Lagged valuesumX = sumX + x // ∑xsumY = sumY + y // ∑ysumXY = sumXY + x * y // ∑xysumX2 = sumX2 + x * x // ∑x²sumY2 = sumY2 + y * y // ∑y²NEXT// Apply the Pearson correlation formulanumerador = window * sumXY - (sumX * sumY)denominador = SQRT((window * sumX2 - sumX * sumX) * (window * sumY2 - sumY * sumY))// Handle division by zeroIF denominador <> 0 THENautocorr = numerador / denominadorELSEautocorr = 0ENDIF//-------------------------------------------//// Cycle Detection & Linear Regression//-------------------------------------------//cycleDetected = autocorr > threshold // Detect if autocorrelation is strong enough// Compute percentage returnsreturns = (src - src[1]) / src[1] * 100// Apply linear regression on returnslinreg = LinearRegression[length](returns)// Store regression value only if a cycle is detectedIF cycleDetected THENstoreCyclevalue = linregENDIF//-------------------------------------------//// Future Price Forecast//-------------------------------------------//futurePriceEstimate = close * (1 + storeCyclevalue / 100) // Forecast future pricehipoteticalGain = futurePriceEstimate - close // Calculate expected gain/loss//-------------------------------------------//// Color Assignment Based on Forecast Direction//-------------------------------------------//IF futurePriceEstimate > close THENr = 105g = 247b = 62 // Green color for bullish forecastELSEr = 255g = 0b = 0 // Red color for bearish forecastENDIF//-------------------------------------------//// Display Forecast Info on Last Bar Only//-------------------------------------------//IF islastbarupdate THENprediction = ROUND(hipoteticalGain, 3) // Rounded gain valuefuturePrice = ROUND(futurePriceEstimate, 3) // Rounded estimated price// Draw background box (positioned top right)drawrectangle(-10, -60, -200, -140) ANCHOR(topright, xshift, yshift)// Text labels showing the forecasted valuesdrawtext("Last Bar Prediction", -100, -80) ANCHOR(topright, xshift, yshift)drawtext("Hipotetical Gain: #prediction#", -100, -100) ANCHOR(topright, xshift, yshift)drawtext("Future Price: #futurePrice#", -100, -120) ANCHOR(topright, xshift, yshift)ENDIF//-------------------------------------------//// Output Forecast Line on Chart//-------------------------------------------//RETURN futurePriceEstimate COLOURED(r, g, b) STYLE(line, 2)1 user thanked author for this post.
04/01/2025 at 8:37 PM #24549704/02/2025 at 1:02 PM #245513 -
AuthorPosts
Find exclusive trading pro-tools on