Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Honestly, put a 20ema, 34ema, 17ema on your chart,...what way is it headed. It's not the indicator, it's the set up, is your symbol setting up for a buy...@tomsk How about TIKi? Does any one have a script for tiki to place on chart? In my opinion, TRIN TRINQ, TICK and TIKI and PC ratio we need all this on chart to know which direction market is going to be for that day by watching all these breadth indicators in morning .
Am I right to say this only applies to the major 3 indices, Nas, SnP, Dow?
# VIX3M/VIX Ratio
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/klHaJXYn-VIX3M-VIX-Ratio/
declare lower;
def U = close("VIX3M");
def D = close("VIX");
def UDL = U / D;
plot ratio = UDL;
Hi ThomasMy Vix chart,....many goodies: https://tos.mx/j9XXslO
My TICK with goodies. I place this in Flex charts with three futures charts, /YM, /GC, /CL which are configured with ORB and this TICK by itself....1D/1Minute https://tos.mx/jUnBAXG
@Positive,....it's set up in the grid Charts > flexible grid, Three futures, and a Tick,...TICK/Q,..... paste it in and watch it https://tos.mx/0XAGP2FHi Thomas
I just came across this thread. Can you please let me know how do you use the Tick chart (with goodies) to trade the futures? How do you establish if its going to be a bullish or bearish day using this?...thanks
B
B
Thanks Thomas.@Positive,....it's set up in the grid Charts > flexible grid, Three futures, and a Tick,...TICK/Q,..... paste it in and watch it https://tos.mx/0XAGP2F
Been playing chess since I was a kid...and still love to play. Your detailed explanations are much appreciated.The market always comes first, Know those before you look at indicators on individual stocks
Stocks are nothing but pawns on a chess board for market sentiment (bullish/bearish)
If underlying market is bullish, most stocks get bought up, and they get sold down on bearish sessions
How to interpret it from chart?@Playstation If you have not already done so, you might consider loading the following study
Code:# TICK and AD Label # tomsk # 11.15.2019 input TickSymb = "$TIKSP"; input ADSymb = "$ADSPD"; def TICKS = if !IsNaN(close(TickSymb)) then close(TickSymb) else TICKS[1]; def AD = if !IsNaN(close(ADSymb)) then close(ADSymb) else AD[1]; AddLabel(1, " Tick = " + TICKS, if TICKS < 0 then Color.Pink else Color.Cyan); AddLabel(1, " AD = " + AD, if AD < -350 then Color.Pink else if AD > 350 then Color.Cyan else if between(AD, -250, 250) then Color.White else Color.Yellow);
These labels are color coded and tells you if we oscillate from a bullish undertone to a bearish undertone
The tickers in my study are the TICK and Advance/Decline for the S&P 500
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.