RJT Matches (ProRealTime)
La creación del indicador RJT Matches no ha sido fácil para la plataforma ProRealTime. Las limitaciones del lenguaje de programación del sistema Probuilder y de su actual procesador gráfico han sido complementadas mediante una configuración manual de la plataforma. Requiere adaptar un par de detalles para que éste indicador se muestre correctamente.
Adaptación prévia:
Hecho esto, procedéis a crear un nuevo indicador con el nombre «RJT Matches». El código es el siguiente …
// RJT Matches v.2
// ----------------------------------------
// [english] Date: 05/12/2014 - Plataform: ProRealTime - Type: separated graphic
// This indicator helps determine the end and the beginning of trends based on the inclination of the matches.
// These are basic lines that show inclination for themselves, and together showing the evolution of the trend
// of prices. This tells us about the strength of a trend to continue or prepare us for a inminent change.
// Each match is the line between the open price of a bar and the close price of the next (or the determined
// by the parameter "Num.Bars"). Is ideal for intraday trading (scalping / swing) in low time frames
// (minutes / hours).
// Configuration of the ProRealTime plataform:
// in Options > Template options > Colors & Effects:
// -In Charts, disable the Shaded background option
// -In Charts, configure the Background color (and the odd days one)... RGB=128,128,127 (80807F) and alfa=255
// For more information visit my website ... http://www.tradingrafa.com/indicadores/rjt_matches
// (c) Rafa - 2015. All rights reserved
// ----------------------------------------
// [español] Fecha: 05/12/2014 - Plataforma: ProRealTime - Tipo: gráfico separado
// Este indicador ayuda a determinar el final y el comienzo de las tendencias basándose en la inclinación
// de las cerillas. Son lÃneas básicas que muestran una inclinación por sà mismas, y en conjunto muestran la
// evolución de la tendencia de los precios. Nos informan sobre la fuerza de una tendencia para continuar o
// nos preparan para un cambio inminente. Cada cerilla es la directriz entre el precio de apertura de una
// barra y el precio de cierre de la siguiente. Es ideal para trading intradÃa (scalping/swing) en horizontes
// de tiempo bajos (minutos / horas).
// Configuración de la plataforma ProRealTime:
// en Opciones > Opciones de los espacios de Trabajo > Colores y efectos:
// -Desactivar el fondo con degradado de color
// -Configurar los colores de fondo de dÃas pares y dÃas impares como RGB=128,128,127 (80807F) y alfa=255
// Para más información visita mi web ... http://www.tradingrafa.com/indicadores/rjt_matches
// (c) Rafa - 2015. Todos los derechos reservados
if sw=1 then
sw=0
match1=open
match2=close
else
sw=1
match1=close
match2=open
endif
if match1>match2 then
out=low*1.1
else
out=low*0.9
endif
headclean=out
if close<open[1] then="" headgreen="out" headred="close" else="" endif="" if="" p="0" clean1="close" clean2="out" clean3="open" elsif="" return="" match1="" coloured(255,255,255,255)="" as="" "match1",="" match2="" "match2",="" coloured(128,128,128,255)="" "clean1",="" "clean2",="" "clean3",="" coloured="" (0,255,0,255)="" "headgreen",headred="" (255,0,0,255)="" "headred",headclean="" "headclean"="" <="" code=""></open[1]>
Finalmente, una vez ejecutado será necesario ajustar los tamaños y tipos de lÃneas para que se visualice correctamente.
Abre la ventana de propiedades de tu nuevo indicador RJT Matches y configúralo asÅ
Podéis acceder a esta web para probarlo … https://www.prorealtime.com/es/
OTRAS PLATAFORMAS DISPONIBLES
Rafa.