Last 2min, most up%, most down%

Ismelloa

New member
I trade with a prop group and they use takion. They have the ability to get nice scanners and I was looking to replicate in thinkorswin.

1. Stocks that move the most UP in the last 2 minutes ( most up % change for the day )
2.Stocks that move the most DOWN in the last 2 minutes ( most down % change for the day )


3.Stocks most UP % change
4. Stocks most DOWN % change

Could we do these scanners?
 
I trade with a prop group and they use takion. They have the ability to get nice scanners and I was looking to replicate in thinkorswin.

1. Stocks that move the most UP in the last 2 minutes ( most up % change for the day )
2.Stocks that move the most DOWN in the last 2 minutes ( most down % change for the day )


3.Stocks most UP % change
4. Stocks most DOWN % change

Could we do these scanners?

edit your post and clarify,

you are describing 2 conditions,
... move the most UP in the last 2 minutes
.. ( most up % change for the day )

which is it , last 2 minutes OR a change during the day?

-------------------
are you wanting to look at every 2 minute period,
. in the current day,
. and find the largest % move?
then compare it to some number?

can't search for 'the most'. scans looks at 1 stock at a time and don't know about other results. need to set a % number to compare to.
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

edit your post and clarify,

you are describing 2 conditions,
... move the most UP in the last 2 minutes
.. ( most up % change for the day )

which is it , last 2 minutes OR a change during the day?

-------------------
are you wanting to look at every 2 minute period,
. in the current day,
. and find the largest % move?
then compare it to some number?

can't search for 'the most'. scans looks at 1 stock at a time and don't know about other results. need to set a % number to compare to.
I used to have takion and they have the option in the market sorter to define the timeframe which would be in the last 2 minutes.

u are correct, would be the % in every 2 minutes. it would show the % change in the last 2 minutes
for example stock was 10 and then moved to 15 in the last 2 minute it would show %50, was something super easy in takion but couldnt find anywhere else. does that make sense? thanks for helping
 

Attachments

  • Untitled.png
    Untitled.png
    956.3 KB · Views: 39
I used to have takion and they have the option in the market sorter to define the timeframe which would be in the last 2 minutes.

u are correct, would be the % in every 2 minutes. it would show the % change in the last 2 minutes
for example stock was 10 and then moved to 15 in the last 2 minute it would show %50, was something super easy in takion but couldnt find anywhere else. does that make sense? thanks for helping

here is a column study
it shows a percent number, of the change from the current close to previous 2 minute close.
set to 2 minutes

zdifflast
http://tos.mx/!AtOBlMXs

Code:
#diff_last_bar
#declare lower;
def diff = close - close[1];
plot per = round(100 * diff/close[1],1);
#plot z = 0;
#addlabel(1, per, color.yellow);
#


------------------------


a lower test study
plots a line and displays change % in a label

Code:
#diff_last_bar

declare lower;
def diff = close - close[1];
plot per = round(100 * diff/close[1],1);

plot z = 0;
addlabel(1, per, color.yellow);
#
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
445 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

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.

How do I get started?

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.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top