tradeking313
Member
Thanks so much!
Last edited:
@dmillz chat with TOS support, They have been upgrading.My watchlist scanner on the left column doesn't update was blank most of the day i had to manually scan in the scan tab. anyone know why?
@15minofpham You can use this code:
Rich (BB code):# 30 min opening range # Robert Payne # WalkingBallista Watchlist def OpenRangeMinutes = 30; def MarketOpenTime = 0930; input ShowTodayOnly = yes; def Today = if GetDay() == GetLastDay() then 1 else 0; def FirstMinute = if SecondsFromTime(MarketOpenTime) < 60 then 1 else 0; def OpenRangeTime = if SecondsFromTime(MarketOpenTime) < 60 * OpenRangeMinutes then 1 else 0; def ORHigh = if FirstMinute then high else if OpenRangeTime and high > ORHigh[1] then high else ORHigh[1]; def ORLow = if FirstMinute then low else if OpenRangeTime and low < ORLow[1] then low else ORLow[1]; def OpenRangeHigh = if ShowTodayOnly and !Today then Double.NaN else if !OpenRangeTime then ORHigh else Double.NaN; def OpenRangeLow = if ShowTodayOnly and !Today then Double.NaN else if !OpenRangeTime then ORLow else Double.NaN; def dailyRange = high(period = "day" )[1] - low(period = "day" )[1]; def range = Average(dailyRange, 10); plot status = if close > OpenRangeHigh then 1 else if close < OpenRangeLow then 0 else -1; status.AssignValueColor(if status == 1 then Color.Dark_Green else if status == 0 then Color.Dark_Red else Color.Dark_Orange); AssignBackgroundCOlor(if status == 1 then Color.Dark_Green else if status == 0 then Color.Dark_Red else Color.Dark_Orange);
@TOSTrader The code in the post you quoted plots fine in my watchlist. Perhaps try the codes posted here?This gives me a NaN value when added to my watchlist.
@Vimal Mittal Sorry for the delay with this reply...I have only recently returned to uTS, after a lengthy hiatus...@netarchitech What is “limiter” means? Sorry for lack of my knowledge . I am new. Thanks.
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Start a new thread and receive assistance from our community.
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.
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.