📈Los mejores scripts para la plataforma de negociación Thinkorswim (TOS)

--

Ho la chicos! Se han acumulado muchos scripts útiles para la plataforma de negociación de TOS. Quiero compartirlos contigo.

El primer script es ALTO, BAJO, ABIERTO, CERRADO — LÍNEA DE APOYO Y RESISTENCIA.

El indicador dibujará los niveles de apertura, cierre, máximo y mínimo de un día actual y anterior en el gráfico.

#thinkscript indicator : OCHLO_levels

#It draws yesterday High, Low, Open, Close support and resistance line

#by thetrader.top

input sPeroid = {default DAY, WEEK, MONTH};

input iHigh = {default “yes”, “no”};

input iLow = {default “yes”, “no”};

input iClose = {default “yes”, “no”};

input iOpen = {default “yes”, “no”};

input iTodayOpen = {default “yes”, “no”};

plot pHigh = if !iHigh then high(period = sPeroid)[1] else Double.NaN;

plot pLow = if !iLow then low(period = sPeroid)[1] else Double.NaN;

plot pClose = if !iClose then close(period = sPeroid)[1] else Double.NaN;

plot pOpen = if !iOpen then open(period = sPeroid)[1] else Double.NaN;

plot pTodayOpen = if !iTodayOpen then open(period = sPeroid)[0] else Double.NaN;

pHigh.SetDefaultColor (Color.GREEN);

pHigh.SetPaintingStrategy(PaintingStrategy.DASHES);

pLow.SetDefaultColor(Color.RED);

pLow.SetPaintingStrategy(PaintingStrategy.DASHES);

pClose.SetDefaultColor (Color.GRAY);

pClose.SetPaintingStrategy(PaintingStrategy.DASHES);

pOpen.SetDefaultColor (Color.WHITE);

pOpen.SetPaintingStrategy(PaintingStrategy.DASHES);

pTodayOpen.SetDefaultColor (Color.WHITE);

pTodayOpen.SetPaintingStrategy(PaintingStrategy.DASHES);

Sabemos cómo eliminar el retraso y otras limitaciones de la cuenta Thinkorswim (TOS). Todos los detalles en este enlace. Puedes ir ahora.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

ThinkOrSwim para España (no oficial)
ThinkOrSwim para España (no oficial)

Written by ThinkOrSwim para España (no oficial)

Ayudamos a los traders de España y Sudamérica a registrar una cuenta 👉ThinkOrSwim (TOS) RealTime 💥 https://www.tsrangers.com/es

No responses yet

Write a response