Help removing SYMBOL names from subsequent SCAN

tracing

New member
Hi all, I am using someone elses script. I want to add a function to allow me to not see symbols that I have reviewed and no longer want to see time after time each morining, this would require a means for me to tell the script here are the symbols, that if returned by the scan, skip them and move to the next.

Example, NBY and ZOM show up, I look, decide I do not want to see them anymore today, so I enter them somewhere and they are skipped

One way I figured to provide a means for data input would be to builde a watchlist, call it IGNORE_THESE and enter NBY and ZOM there, then when the scan runs, if it sees either of these returned AND in the watchlist, it skips them and goes to whatever the next symbol is that meets the scan.

I am using the following code and figured whatever needs to be added to so this can just be inserted here, I know lots of VBA but have zero exp on TOS script

any help is appreciated, thanks


#Wizard text: The
#Wizard input: price
#Wizard text: has moved
#Wizard input: operator
#Wizard input: percent_change
#Wizard text: % in after hours trading

input closing_time = 1559;
input open_time = 0930;
input price = close;
input operator = {default "greater than","less than"};
input percent_change = 1.00;


def time_until_close = SecondsTillTime(closing_time);
def time_until_open = SecondsTillTime(open_time);
def closing_bell = time_until_close == 0;
rec closing_price = CompoundValue(1, if closing_bell then price else closing_price[1], price);
def after_closing_bell = time_until_close <= 0;
def before_opening_bell = time_until_open >= 0 ;
def afterhours_percent_change = 100 * (price / closing_price - 1);
def meet_scan_criteria;

switch (operator) {
case "greater than":
meet_scan_criteria = afterhours_percent_change >= percent_change;
case "less than":
meet_scan_criteria = afterhours_percent_change <= percent_change;
}

plot scan = (after_closing_bell or before_opening_bell) AND meet_scan_criteria;
 
@tracing The watchlist that you filled w/ symbols that you want to exclude can be excluded by putting the name of the watchlist in the exclude field.
LZSD1EE.png

HTH
 

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
599 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