Traducir a PRT:"ANN MACD Future Forecast (SPY 1D)"
Forums › ProRealTime foro Español › Soporte ProBuilder › Traducir a PRT:"ANN MACD Future Forecast (SPY 1D)"
- This topic has 2 replies, 2 voices, and was last updated 5 years ago by Nicolas.
-
-
10/08/2019 at 12:00 AM #109562
Hola Nicolas,
A ver si es tan amable de traducir el código a PRT.Creo que será útil y novedoso sobretodo para los amantes de las redes neuronales…
Un saludo
Notas del autor:
NOTA IMPORTANTE: Si se utiliza la función de activación tangente, los datos de entrada también deben tener valores tangentes (en comparación con los valores anteriores de 1 bar). Los insumos fueron preparados de acuerdo con este juicio.
1. La función tangente que es la función de activación está escrita correctamente. (La función tangente en el artículo: ActivationFunctionTanh (v) => (1 – exp (-2 * v)) / (1 + exp (-2 * v)))
2. Se agregaron partes de sesgo faltantes en las fórmulas.
3. La función de salida se toma del día siguiente (histórico), de modo que se pueda predecir la siguiente barra, que es la verdad.
4. El valor de pronóstico de la siguiente barra se resta del cambio de barra actual y se determina la dirección del mercado.
5. Cuando el pronóstico futuro y el cierre actual se suman, los datos resultantes se denominan semilla. La semilla lleva datos tanto del presente como del ayer y del futuro.
6. Y esta semilla fue sometida al método MACD. Por lo tanto, debido a promedios exponenciales, se dará más importancia a los desarrollos recientes y Las situaciones de aceleración nos mostrarán la dirección. Sin embargo, se debe tomar una posición corta para el cruce y una posición larga para el cruce. Porque los valores pronosticados funcionan al revés. ¡Aunque usamos el mismo período (9,12,26) es mucho más rápido!
7. No existe un código futuro que pueda causar el repintado. Sin embargo, se debe verificar el color después del cierre. El sistema es completamente correcto. Sin embargo, se seleccionó una muestra muy estrecha.
ANN MACD123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248//@version=4//MIT License//Copyright (c) 2019 user-Noldo//Permission is hereby granted, free of charge, to any person obtaining a copy//of this software and associated documentation files (the "Software"), to deal//in the Software without restriction, including without limitation the rights//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell//copies of the Software, and to permit persons to whom the Software is//furnished to do so, subject to the following conditions://The above copyright notice and this permission notice shall be included in all//copies or substantial portions of the Software.//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE//SOFTWARE.study("ANN MACD Future Forecast (SPY 1D) ", max_bars_back=21)src = close[0]lights = input(title="Barcolor I / 0 ? ", options=["ON", "OFF"], defval="OFF")// Essential Functions// Highest - Lowest Functions ( All efforts goes to RicardoSantos )f_highest(_src, _length)=>_adjusted_length = _length < 1 ? 1 : _length_value = _srcfor _i = 0 to (_adjusted_length-1)_value := _src[_i] >= _value ? _src[_i] : _value_return = _valuef_lowest(_src, _length)=>_adjusted_length = _length < 1 ? 1 : _length_value = _srcfor _i = 0 to (_adjusted_length-1)_value := _src[_i] <= _value ? _src[_i] : _value_return = _value// Function Sumf_sum(_src , _length) =>_output = 0.00_length_adjusted = _length < 1 ? 1 : _lengthfor i = 0 to _length_adjusted-1_output := _output + _src[i]// Unlocked Exponential Moving Average Functionf_ema(_src, _length)=>_length_adjusted = _length < 1 ? 1 : _length_multiplier = 2 / (_length_adjusted + 1)_return = 0.00_return := na(_return[1]) ? _src : ((_src - _return[1]) * _multiplier) + _return[1]// Unlocked Moving Average Functionf_sma(_src, _length)=>_output = 0.00_length_adjusted = _length < 0 ? 0 : _lengthw = cum(_src)_output:= (w - w[_length_adjusted]) / _length_adjusted_output// Definition : Function Bollinger BandsMultiplier = 2_length_bb = 20e_r = f_sma(src,_length_bb)// Function Standard Deviation :f_stdev(_src,_length) =>float _output = na_length_adjusted = _length < 2 ? 2 : _length_avg = f_ema(_src , _length_adjusted)evar = (_src - _avg) * (_src - _avg)evar2 = ((f_sum(evar,_length_adjusted))/_length_adjusted)_output := sqrt(evar2)std_r = f_stdev(src , _length_bb )upband = e_r + (Multiplier * std_r) // Upbanddnband = e_r - (Multiplier * std_r) // Lowbandbasis = e_r // Midband// Function : Squeeze Momentum Indicator (SQZMOM_LB) (LazyBear)length = 20mult = 2.0lengthKC=20multKC = 1.5// Calculate BBdev = multKC * f_stdev(src, length)upperBB = e_r + devlowerBB = e_r - dev// Calculate KCma = f_sma(src, lengthKC)range = trrangema = f_sma(range, lengthKC)upperKC = ma + rangema * multKClowerKC = ma - rangema * multKCsqzOn = (lowerBB > lowerKC) and (upperBB < upperKC)sqzOff = (lowerBB < lowerKC) and (upperBB > upperKC)noSqz = (sqzOn == false) and (sqzOff == false)val = linreg(src - f_sma(f_sma(f_highest(f_highest(src,1), lengthKC), f_lowest(f_lowest(src,1), lengthKC)),f_sma(src,lengthKC)), lengthKC,0)// Inputs on Tangent Function :tangentdiff(_src) => nz((_src - _src[1]) / _src[1] )// Deep Learning Activation Function (Tanh) :ActivationFunctionTanh(v) => (1 - exp(-2 * v))/( 1 + exp(-2 * v))// DEEP LEARNING// INPUTS :input_1 = tangentdiff(volume)input_2 = tangentdiff(e_r)input_3 = tangentdiff(upband)input_4 = tangentdiff(dnband)input_5 = tangentdiff(val)// LAYERS :// Input Layersn_0 = ActivationFunctionTanh(input_1 + 0)n_1 = ActivationFunctionTanh(input_2 + 0)n_2 = ActivationFunctionTanh(input_3 + 0)n_3 = ActivationFunctionTanh(input_4 + 0)n_4 = ActivationFunctionTanh(input_5 + 0)// Hidden Layersn_5 = ActivationFunctionTanh( -35.733 * n_0 + -86.718 * n_1 + -16.948 * n_2 + -12.384 * n_3 + -38.803 * n_4 + 43.379)n_6 = ActivationFunctionTanh( -2.394 * n_0 + -85.060 * n_1 + -6.174 * n_2 + -45.667 * n_3 + 26.925 * n_4 + 16.028)n_7 = ActivationFunctionTanh( -63.221 * n_0 + -7.447 * n_1 + 34.106 * n_2 + -28.880 * n_3 + -23.098 * n_4 + 9.914)n_8 = ActivationFunctionTanh( -59.117 * n_0 + 41.706 * n_1 + 19.044 * n_2 + -13.141 * n_3 + 40.028 * n_4 + -50.017)n_9 = ActivationFunctionTanh( -9.193 * n_0 + -64.825 * n_1 + 12.735 * n_2 + 11.168 * n_3 + 13.162 * n_4 + -6.669)// Output Layer_output = ActivationFunctionTanh(4.118 * n_5 + 36.306 * n_6 + -22.908 * n_7 + 11.143 * n_8 + -32.203 * n_9 + -0.263)_chg_src = tangentdiff(src) * 100_seed = (_output - _chg_src)// MACD : SEEDfastLength = 12slowlength = 26signalLength = 9macd = f_ema(_seed, fastLength) - f_ema(_seed, slowlength)signal = f_ema(macd, signalLength)hist = macd - signal// Conditions :positive_condition = hist < 0negative_condition = hist > 0col_hist() => positive_condition ? color.new(#F5FFFA,0) : negative_condition ? color.new(#FF355E,0) : color.new(color.yellow,0)col_histo = col_hist()//Plot datahline(0, color=#FFB300, linewidth = 2)plot(hist, color=(positive_condition ? #00A86B : #D40000), style=plot.style_columns,linewidth= 5 , title="Area", transp=30)plot(hist, color=col_histo,style =plot.style_cross, title="Forecast", linewidth=3)// Definition : Barcolor_lights = 0.00if (lights=="ON")_lights:= 1.00if (lights=="OFF")_lights:= -1.00bcolor_on = _lights == 1.00bcolor_off = _lights == -1.00color_condition() =>(positive_condition and _lights == 1.00) ? color.green : (negative_condition and _lights == 1.00) ? color.red : nacolor barColor = nabarColor := color_condition()barcolor(color = barColor)10/18/2019 at 12:28 PM #11048810/18/2019 at 3:29 PM #110510Podría intentarlo pero creo que no funcionaría. El código anterior usa varias veces la misma función para evitar volver a escribir el mismo código una y otra vez. Esto no es realmente posible en PRT, podríamos usar la instrucción CALL pero estoy bastante seguro de que caerá en un tiempo de carga infinito …
-
AuthorPosts
Find exclusive trading pro-tools on