Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
158
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, how do we create a chart indicator study that highlights the highest volume candle on the 1 minute chart? The condition is highlighting the candle with the greatest volume on the 1 minute chart purple. The minimum volume on that candle mu...
0
votes
1
answer
1632
views
asked 5 years ago by
Category: Chart Studies
I currently have thinks it code that plots an arrow when the criteria are met. PatternPlot.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); PatternPlot.SetDefaultColor(GetColor(8)); My only question is can the arrow code be modifyied to place ...
0
votes
0
answers
26
views
Be first to answer!
asked 5 years ago by
Category: Chart Studies
can you give me a direction to do that ? for example,  if AAPL then plot EMA21, if AMZN then plot EMA34 otherwise no ploting EMA .  
0
votes
1
answer
201
views
asked 5 years ago by
Category: Chart Studies
Let's say I am looking at an intraday chart on Tuesday morning. How would I reference Friday's closing price?
0
votes
1
answer
174
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I want to know if it's possible to create a "Chart Label" that will display the current/active net price of an option contract, let's say I have a Spread on, and I want to quickly see in the label, what the current Mark/Net Price of the spre...
0
votes
1
answer
310
views
asked 5 years ago by
Category: Chart Studies
Pete I have an auto fibonacci study and was hoping to add the price and the fib level percentage to it.  I would like to have it layed out the way TOS lays it out. input sideline = no; def f11 = 0.236; def f12 = 0.382; def f13 = 0.50; def f14 = 0.618...
0
votes
1
answer
117
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I have some code for a chart label that isn't calculating the sum total correctly for the "number of trades on the day" . The code seems to only be counting for the current 1-minute bar.   I would like it to take the the sum total of...
0
votes
1
answer
556
views
asked 5 years ago by
Category: Chart Studies
Hi This code work fine unless it is a FUTURE symbol what im missing here ? def X = if getSymbolPart(1) == "/ES" then 2700 else if getSymbol() == "SPY" then 270 else Double.NaN; plot line = X ;
0
votes
1
answer
456
views
asked 5 years ago by
Category: Chart Studies
Is it possible to search for all shared scripts for a time period (such as today, or yesterday) on tos.mx?
0
votes
1
answer
106
views
asked 5 years ago by
Category: Chart Studies
Hello Pete - thank you so much for all the great info provided here!  I would like to obtain the code for a presumably simple study - (EMA+SMA)/2.  The user would need to be able to enter the EMA and SMA values, and select line weight, style, color, ...