Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
81
views
asked 5 years ago by
Category: Chart Studies
So here is the script I'm using on TOS plot sma1 = Average(close, 2); sma1.AssignValueColor(if sma1 > sma1[1] then Color.liME else Color.magENTA); It is a very simple script that colors the 2sma in lime when it's moving up and magenta when it's mo...
0
votes
1
answer
81
views
asked 5 years ago by
Category: Chart Studies
Chart_MTF_MACDSTUDY.ts when I add this to a chart and then add another study this study goes blank. How do I avoid that?
1
vote
1
answer
80
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I'm trying to create a very simple study that marks the third consecutive higher high candle (or third lower low) with a up (or down) arrow, but only if the prior arrow was in the opposite direction.  In other words, it flips. My scripting a...
0
votes
1
answer
80
views
asked 4 years ago by
Category: Chart Studies
->Reposting as previous question code got corrupted I’m checking if the first 5-min bar of the day is the widest range in 5 days and write a Label in a Custom Quote. My code is based on the approach used in another question here. It has the Ext Ho...
0
votes
1
answer
80
views
asked 3 years ago by
Category: Chart Studies
I was interested in overlaying the daily Hull MA and daily Adaptive MA over a lower time frame chart, ideally the 1 minute chart.  Is this possible ?
0
votes
1
answer
79
views
asked 5 years ago by
Category: Chart Studies
I need help with some code logic. suppose x is the high and y is the low of an indicator. how do I make a variable true if "close crosses above x" and false when "close crosses below y"? The problem if I use "close crosses above x" is that it will on...
0
votes
1
answer
79
views
asked 5 years ago by
Category: Chart Studies
Pete, this request is link to a previous post named "Label to display current price of debit spread". The original label has been great for me, so thanks for the time and suggestions. In working with this label for several months, I realize I could e...
0
votes
1
answer
79
views
asked 4 years ago by
Category: Chart Studies
Hi Pete,  I am looking for to add the user defined OHLC into this code? Can you please help? Thank you. input aggregationPeriod = AggregationPeriod.DAY; def highValue = high(period = aggregationPeriod)[1];def lowValue = low(period = aggregationP...
0
votes
1
answer
79
views
asked 2 years ago by
Category: Chart Studies
Hi Hahn! On the thinkorswim platform, when I hover my mouse over a candlestick, it displays the Date, Time, Open price, Highest price, Lowest price, Closing price etc. I was wondering if it's possible to modify this to also show the "Average Price = ...
0
votes
1
answer
79
views
asked 2 years ago by
Category: Chart Studies
In TOS I am able to change the Hull Moving Average to be displayed as a columns. Then I adjust the transparency so that they are only slightly visible. This makes it easy to see when the price candles are poking above the HMA.  The columns shade in f...