Horizontal Lines per user input

IFRPilot541

New member
I am trying to create a script that will plot a few horizontal lines on the chart.
The idea would be to open a study and input each number / line weight / color
These would be support and resistance levels (strong / weak for each)
extending them full length is fine, but I would like to be able to use a different color and line weight for each.
not asking for full working code just some idea of how to start
I know plot will do the line but getting the input / line weight - ect I am at a total loss.
 
Solution
Thank you so much, @halcyonguy. This works great! Can you please modify to add bubbles for each line and make the lines appear as dashed.


I have tried to modify the code to add bubble but not working. Can you please help @halcyonguy

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in...
I am trying to create a script that will plot a few horizontal lines on the chart.
The idea would be to open a study and input each number / line weight / color
These would be support and resistance levels (strong / weak for each)
extending them full length is fine, but I would like to be able to use a different color and line weight for each.
not asking for full working code just some idea of how to start
I know plot will do the line but getting the input / line weight - ect I am at a total loss.


type in a symbol (in caps),
then pick stats for 4 lines
...color , 10 choices
...price
...line thickness

when the chart has the same symbol loaded, the lines will show up.

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.0;
input sym1_line1_width = 1;

input sym1_color2 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.0;
input sym1_line2_width = 1;

input sym1_color3 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.0;
input sym1_line3_width = 1;

input sym1_color4 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.0;
input sym1_line4_width = 1;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);

z1a.hidebubble();
z1b.hidebubble();
z1c.hidebubble();
z1d.hidebubble();
#

SQ 4 lines
lMNLtRA.jpg


vdGqJsN.jpg

hal_horz

colors 0-9
https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Look---Feel/GetColor
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

type in a symbol (in caps),
then pick stats for 4 lines
...color , 10 choices
...price
...line thickness

when the chart has the same symbol loaded, the lines will show up.

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.0;
input sym1_line1_width = 1;

input sym1_color2 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.0;
input sym1_line2_width = 1;

input sym1_color3 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.0;
input sym1_line3_width = 1;

input sym1_color4 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.0;
input sym1_line4_width = 1;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);

z1a.hidebubble();
z1b.hidebubble();
z1c.hidebubble();
z1d.hidebubble();
#

SQ 4 lines
lMNLtRA.jpg


vdGqJsN.jpg

hal_horz

colors 0-9
https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Look---Feel/GetColor
Thank you so much, @halcyonguy. This works great! Can you please modify to add bubbles for each line and make the lines appear as dashed.


I have tried to modify the code to add bubble but not working. Can you please help @halcyonguy

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.00;
input sym1_line1_width = 1;
input bubble_1 = yes;

input sym1_color2 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.00;
input sym1_line2_width = 1;
input bubble_2 = yes;

input sym1_color3 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.00;
input sym1_line3_width = 1;
input bubble_3 = no;

input sym1_color4 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.00;
input sym1_line4_width = 1;
input bubble_4 = no;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);


z1a.SetStyle(Curve.SHORT_DASH);
z1b.SetStyle(Curve.SHORT_DASH);
z1c.SetStyle(Curve.SHORT_DASH);
z1d.SetStyle(Curve.SHORT_DASH);



AddChartBubble(bubble_1 and high==z1a,z1a,"Line 1: "+z1a, getcolor(sym1_color1));
AddChartBubble(bubble_2 and high==z1b,z1b,"Line 2: "+z1b, getcolor(sym1_color2));
AddChartBubble(bubble_3 and high==z1c,z1c,"Line 3: "+z1c, getcolor(sym1_color3));
AddChartBubble(bubble_4 and high==z1d,z1d,"Line 4: "+z1d, getcolor(sym1_color4));

Thank you so much, @halcyonguy. This works great! Can you please modify to add bubbles for each line and make the lines appear as dashed.


I have tried to modify the code to add bubble but not working. Can you please help @halcyonguy

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.00;
input sym1_line1_width = 1;
input bubble_1 = yes;

input sym1_color2 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.00;
input sym1_line2_width = 1;
input bubble_2 = yes;

input sym1_color3 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.00;
input sym1_line3_width = 1;
input bubble_3 = no;

input sym1_color4 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.00;
input sym1_line4_width = 1;
input bubble_4 = no;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);


z1a.SetStyle(Curve.SHORT_DASH);
z1b.SetStyle(Curve.SHORT_DASH);
z1c.SetStyle(Curve.SHORT_DASH);
z1d.SetStyle(Curve.SHORT_DASH);



AddChartBubble(bubble_1 and high==z1a,z1a,"Line 1: "+z1a, getcolor(sym1_color1));
AddChartBubble(bubble_2 and high==z1b,z1b,"Line 2: "+z1b, getcolor(sym1_color2));
AddChartBubble(bubble_3 and high==z1c,z1c,"Line 3: "+z1c, getcolor(sym1_color3));
AddChartBubble(bubble_4 and high==z1d,z1d,"Line 4: "+z1d, getcolor(sym1_color4));
Bumping up the post from last week. Can anyone please help me add bubble with the drawn horizontal lines of this code? Thank you
 
Last edited:
Thank you so much, @halcyonguy. This works great! Can you please modify to add bubbles for each line and make the lines appear as dashed.


I have tried to modify the code to add bubble but not working. Can you please help @halcyonguy

Code:
# horz_lines_colors

# https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
# Horizontal Lines per user input
# test symbols  zig, zim, zt, zy, zw

def bn = BarNumber();
def na = Double.NaN;
#def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.00;
input sym1_line1_width = 1;
input bubble_1 = yes;

input sym1_color2 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.00;
input sym1_line2_width = 1;
input bubble_2 = yes;

input sym1_color3 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.00;
input sym1_line3_width = 1;
input bubble_3 = no;

input sym1_color4 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.00;
input sym1_line4_width = 1;
input bubble_4 = no;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);


z1a.SetStyle(Curve.SHORT_DASH);
z1b.SetStyle(Curve.SHORT_DASH);
z1c.SetStyle(Curve.SHORT_DASH);
z1d.SetStyle(Curve.SHORT_DASH);



AddChartBubble(bubble_1 and high==z1a,z1a,"Line 1: "+z1a, getcolor(sym1_color1));
AddChartBubble(bubble_2 and high==z1b,z1b,"Line 2: "+z1b, getcolor(sym1_color2));
AddChartBubble(bubble_3 and high==z1c,z1c,"Line 3: "+z1c, getcolor(sym1_color3));
AddChartBubble(bubble_4 and high==z1d,z1d,"Line 4: "+z1d, getcolor(sym1_color4));


Bumping up the post from last week. Can anyone please help me add bubble with the drawn horizontal lines of this code? Thank you


no need to bump and repost. posts will be seen and acted on when someone has time and knowledge.

i disabled
z1a.hidebubble();
so price levels will show up on price axis

made the lines dashed
z1a.SetStyle(Curve.MEDIUM_DASH);

added bubbles, 4 bars after the last bar
AddChartBubble(bubbles and sym1_line1 > 0 and bubx, z1a, "Line 1: "+z1a, getcolor(sym1_color1));


Code:
# horz_lines_colors2

#https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
#Horizontal Lines per user input

def bn = BarNumber();
def na = Double.NaN;
def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.0;
input sym1_line1_width = 1;

input sym1_color2 = {"magenta", default "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.0;
input sym1_line2_width = 1;

input sym1_color3 = {"magenta", "cyan", default "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.0;
input sym1_line3_width = 1;

input sym1_color4 = {"magenta", "cyan", "pink", default "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.0;
input sym1_line4_width = 1;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.SetStyle(Curve.MEDIUM_DASH);
z1b.SetStyle(Curve.MEDIUM_DASH);
z1c.SetStyle(Curve.MEDIUM_DASH);
z1d.SetStyle(Curve.MEDIUM_DASH);

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);

#z1a.hidebubble();
#z1b.hidebubble();
#z1c.hidebubble();
#z1d.hidebubble();

# shift bubble x bars after last bar
def bub = 4;
def bubx = (!isnan(close[bub+1]) and isnan(close[bub]));

input bubbles = yes;
AddChartBubble(bubbles and sym1_line1 > 0 and bubx, z1a, "Line 1: "+z1a, getcolor(sym1_color1));
AddChartBubble(bubbles and sym1_line2 > 0 and bubx, z1b, "Line 2: "+z1b, getcolor(sym1_color2));
AddChartBubble(bubbles and sym1_line3 > 0 and bubx, z1c, "Line 3: "+z1c, getcolor(sym1_color3));
AddChartBubble(bubbles and sym1_line4 > 0 and bubx, z1d, "Line 4: "+z1d, getcolor(sym1_color4));
#
 

Attachments

  • img2.JPG
    img2.JPG
    72.6 KB · Views: 166
Solution
no need to bump and repost. posts will be seen and acted on when someone has time and knowledge.

i disabled
z1a.hidebubble();
so price levels will show up on price axis

made the lines dashed
z1a.SetStyle(Curve.MEDIUM_DASH);

added bubbles, 4 bars after the last bar
AddChartBubble(bubbles and sym1_line1 > 0 and bubx, z1a, "Line 1: "+z1a, getcolor(sym1_color1));


Code:
# horz_lines_colors2

#https://usethinkscript.com/threads/horizontal-lines-per-user-input.16313/
#Horizontal Lines per user input

def bn = BarNumber();
def na = Double.NaN;
def diffday = if GetDay() != GetDay()[1] then 1 else 0;

#------------------
# symbol1
input Symbol1 = "zw";

#  this doesn't assign the color in quotes.
#  the location of the picked color in the series, is changed to a number
#   ex. pink is the 3rd number.  2 is saved in color1_choice ( count starts at 0)
input sym1_color1 = {default "magenta", "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line1 = 0.0;
input sym1_line1_width = 1;

input sym1_color2 = {"magenta", default "cyan", "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line2 = 0.0;
input sym1_line2_width = 1;

input sym1_color3 = {"magenta", "cyan", default "pink", "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line3 = 0.0;
input sym1_line3_width = 1;

input sym1_color4 = {"magenta", "cyan", "pink", default "gray", "orange", "red", "green", "dark_gray", "yellow", "white"};
input sym1_line4 = 0.0;
input sym1_line4_width = 1;

#def s1 = close(Symbol1);

plot z1a = if getsymbol() == symbol1 and sym1_line1 > 0 then sym1_line1 else na;
plot z1b = if getsymbol() == symbol1 and sym1_line2 > 0 then sym1_line2 else na;
plot z1c = if getsymbol() == symbol1 and sym1_line3 > 0 then sym1_line3 else na;
plot z1d = if getsymbol() == symbol1 and sym1_line4 > 0 then sym1_line4 else na;

z1a.SetDefaultColor(getcolor(sym1_color1));
z1b.SetDefaultColor(getcolor(sym1_color2));
z1c.SetDefaultColor(getcolor(sym1_color3));
z1d.SetDefaultColor(getcolor(sym1_color4));

z1a.SetStyle(Curve.MEDIUM_DASH);
z1b.SetStyle(Curve.MEDIUM_DASH);
z1c.SetStyle(Curve.MEDIUM_DASH);
z1d.SetStyle(Curve.MEDIUM_DASH);

z1a.setlineweight(sym1_line1_width);
z1b.setlineweight(sym1_line2_width);
z1c.setlineweight(sym1_line3_width);
z1d.setlineweight(sym1_line4_width);

#z1a.hidebubble();
#z1b.hidebubble();
#z1c.hidebubble();
#z1d.hidebubble();

# shift bubble x bars after last bar
def bub = 4;
def bubx = (!isnan(close[bub+1]) and isnan(close[bub]));

input bubbles = yes;
AddChartBubble(bubbles and sym1_line1 > 0 and bubx, z1a, "Line 1: "+z1a, getcolor(sym1_color1));
AddChartBubble(bubbles and sym1_line2 > 0 and bubx, z1b, "Line 2: "+z1b, getcolor(sym1_color2));
AddChartBubble(bubbles and sym1_line3 > 0 and bubx, z1c, "Line 3: "+z1c, getcolor(sym1_color3));
AddChartBubble(bubbles and sym1_line4 > 0 and bubx, z1d, "Line 4: "+z1d, getcolor(sym1_color4));
#
thank you @halcyonguy . I now understand your "thumbs up" reaction means it's under your watch and will be solved at a convenient time..
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
225 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top