@thealphabreed This indicator will only help you identify period of choppiness, it does not predict the direction.
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
I am aware of that. But my timeframe question wasn't about this indicator.@thealphabreed This indicator will only help you identify period of choppiness, it does not predict the direction.
I kind of agree with the 5min. Then why do the so-called popular trades focus so much on 1min scalping?@thealphabreed You should be looking at multiple timeframes, especially the higher timeframe. The 5min is the smallest timeframe I would go to.
Can you direct me to the link? I cant find it@thealphabreed, Looking at Multiple Time Frames will confirm signals from your strategy. I don't do TTM squeezes but if you search the threads on the squeeze, you will find they extensively cover the use of MTFs.
Once you have confirmed your signal on the MTFs, you can use the one minute chart to time your entries and exits.
I use the 5min chart for trend and the 2min chart for entries. 2min and 5min timeframes need to have confluence. Otherwise, you don’t know if a move on a lower timeframe is with or against the larger trend.@thealphabreed You should be looking at multiple timeframes, especially the higher timeframe. The 5min is the smallest timeframe I would go to.
How do you use this indicator?
It's specfied in the code. Basically high number bad , no trade . Low number good, trade. Works long & short.
I use this indicator all the time and just like you had used the ADX to identify trends/ending trends and chop. I still use the ADX but beginning to use the Choppiness Index and other FE variations because it is quicker than the ADX and nowhere near as laggy as the ADXThis is actually looking really good. Has anybody else tried it yet? I have tried using ADX in the past but too many good moves were missed, so happy to have this alt.
# Sideways Indicator
# Original Code developed by WalkingBallista
# Concept and Idea by BenTen at useThinkScript.com
# Identify choppy market. Can also be used to find consolidation/breakout patterns.
# Version 1.0 (read changelog in the forum)
input length = 14;
input averageType = AverageType.WILDERS;
input price = close;
input consolidation_range = 5;
def hiDiff = high - high[1];
def loDiff = low[1] - low;
def plusDM = if hiDiff > loDiff and hiDiff > 0 then hiDiff else 0;
def minusDM = if loDiff > hiDiff and loDiff > 0 then loDiff else 0;
def ATR = MovingAverage(averageType, TrueRange(high, close, low), length);
def "DI+" = 100 * MovingAverage(averageType, plusDM, length) / ATR;
def "DI-" = 100 * MovingAverage(averageType, minusDM, length) / ATR;
def range = AbsValue(AbsValue("DI+")-AbsValue("DI-"));
AssignPriceColor(if range < consolidation_range then Color.Yellow else Color.Current);
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
ARSI - Adaptive Relative Strength Index for ThinkorSwim | Indicators | 15 | ||
C | True Strength Index Indicator for ThinkorSwim | Indicators | 34 | |
B | "Threaded Needle Cross" (Didi Index) For ThinkOrSwim | Indicators | 14 | |
C | Trend Direction Force Index (TDFI) For ThinkOrSwim | Indicators | 14 | |
Intraday Intensity Index for ThinkorSwim | Indicators | 2 |
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.