subharmonic
Member
@Trading51 Sure the code is under that post. You need to just add it to one of the custom columns, pick you name and aggregation period. Tweak it to the settings you like
The only way to know would be to test it out. I haven't heard one way or the other.Is there a any way this can work on a tick chart, is that possible?
@stocksniper try this out. Read carefully as there are two bear and two bull scans included and you have to comment out (#) the right lines.Does anyone have the scanner script for this TMO?
# TMO ((T)rue (M)omentum (O)scilator) Scan
# Mobius, with modifications by tomsk, 1.1.2020
# V01.05.2018
#hint: TMO calculates momentum using the delta of price. Giving a much better picture of trend, tend reversals and divergence than momentum oscillators using price.
input length = 14;
input calcLength = 5;
input smoothLength = 3;
#input level = -10; ##Bullish Scan
#input level = 10; ##Bearish Scan
def o = open;
def c = close;
def data = fold i = 0 to length
with s
do s + (if c > getValue(o, i)
then 1
else if c < getValue(o, i)
then - 1
else 0);
def EMA5 = ExpAverage(data, calcLength);
def Main = ExpAverage(EMA5, smoothLength);
def Signal = ExpAverage(Main, smoothLength);
#hint: Comment out using # below to scan for Bullish or Bearish. Please note that ## applies to conditional scan with parameters -10 (over sold condition) Bullish Scan) and 10 (over bought condition) Bearish Scan) Default is set to a Bullish TMO Scan without any conditions.
##***Bullish Scan***
##plot scan = main < level and signal < level and main > signal;
#plot scan = main < main[1] and signal < signal[1];
##***Bearish Scan***
##plot scan = main > level and signal > level and main < signal;
plot scan = main > main[1] and signal > signal[1];
Can you give me an example? I notice on the turning points there are some issues, in heavy trends where it is stuck in the OB/OS areas. Please make sure to give examples on daily or higher so I can look at what you are seeing after market close.@subharmonic I like your color coded watchlist! Thank you for sharing.
However, (often) when I review each equity in my charts ... the TMO Indicator(s) don't show the same values and/or colors. Is there some change in the calculation/values of TMO in your custom watchlist? I am using the standard Mobius TMO with Aggregation Periods.
Thanks
The only way to know would be to test it out. I haven't heard one way or the other.
Ticks as in tick charts? Because it works on tick charts already as long as you're using the standard non MTF version.I am going to try to convert this for ticks, I will update if I figure that out.
Ticks as in tick charts? Because it works on tick charts already as long as you're using the standard non MTF version.
Newer here, where would I insert this part of the code if already using TMO?@Mark1126 Just a slight modification to cut down on the number of signals and filter out some low R/R trades.
Code:def BUYsignal =Main < OS and Main crosses above Signal; def SELLsignal = Main > OB and Main crosses below Signal; addverticalline(BUYsignal,"Buy",color.green,curve.firm); addverticalline(SELLsignal,"Sell",color.red,curve.firm);
Newer here, where would I insert this part of the code if already using TMO?
Wondering if it`s possible to add another condition to these buy/sell signals and the condition is the RSI value. For example, only trigger sell signal if RSI is above 70.
Can this be added to the code above somehow?
The only issue that I see with that request is that there are plenty of stocks that are exploding past the 70 RSI on the DAILY chart...you getting a sell signal might put you upside down on your position....same with below 30...I have seen stocks touch 10 RSI or less...just saying.Can anyone help me with this request? Need to filter out the signals even more by only trigger buy if RSI is below 30 and vice versa, sell signal only if RSI is above 70.
The only issue that I see with that request is that there are plenty of stocks that are exploding past the 70 RSI on the DAILY chart...you getting a sell signal might put you upside down on your position....same with below 30...I have seen stocks touch 10 RSI or less...just saying.
Yeah me too...The highest timeframe I use is 1h and I see stocks every day dipping OVER the 70-90 RSI range while still going up...I use TMO on intraday timeframes only so it’s not a problem and can always change the values too.
Here you go.Can anyone help me with this request? Need to filter out the signals even more by only trigger buy if RSI is below 30 and vice versa, sell signal only if RSI is above 70.
@HighBredCloud @zeek @ezrollin The buy signal on Wilders RSI continues until it crosses below 70, opposite for sell signal, check out Chart School at StockCharts.com & Investopedia. Price is your first indicator. If it's going up, I follow price. Indicators only indicate potential.Yeah me too...The highest timeframe I use is 1h and I see stocks every day dipping OVER the 70-90 RSI range while still going up...
@HighBredCloud @zeek @ezrollin The buy signal on Wilders RSI continues until it crosses below 70, opposite for sell signal, check out Chart School at StockCharts.com & Investopedia. Price is your first indicator. If it's going up, I follow price. Indicators only indicate potential.
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
Archived: RSI Divergence Indicator | Indicators | 131 | ||
Archived: Opening Range Breakout | Indicators | 340 | ||
Archived: Supertrend Indicator by Mobius for ThinkorSwim | Indicators | 312 | ||
TMO with Higher Agg_Mobius @ TSL | Indicators | 204 | ||
TMO True Momentum Oscillator For ThinkOrSwim | Indicators | 128 |
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.