NexusFi: Find Your Edge


Home Menu

 





alert for 20 day sma moving above 200 day sma


Discussion in ThinkOrSwim

Updated
      Top Posters
    1. looks_one swamijenkins with 1 posts (0 thanks)
    2. looks_two Python Programmer with 1 posts (0 thanks)
    3. looks_3 ColoradoCliff with 1 posts (1 thanks)
    4. looks_4 coolcat7fl with 1 posts (0 thanks)
    1. trending_up 2,618 views
    2. thumb_up 1 thanks given
    3. group 4 followers
    1. forum 3 posts
    2. attach_file 2 attachments




 
Search this Thread

alert for 20 day sma moving above 200 day sma

  #1 (permalink)
coolcat7fl
sarasota, fl
 
Posts: 1 since Nov 2020
Thanks Given: 0
Thanks Received: 0

can someone help me create a script for an alert when the 20day sma moves above the 200 day sma? this would be i guess a scan for all stocks, or could i do it both ways, for a watchlist and for a scan?

cheers

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
REcommedations for programming help
Sierra Chart
MC PL editor upgrade
MultiCharts
Better Renko Gaps
The Elite Circle
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
ColoradoCliff
Parker CO/USA
 
Posts: 22 since Jun 2017
Thanks Given: 0
Thanks Received: 5


coolcat7fl View Post
can someone help me create a script for an alert when the 20day sma moves above the 200 day sma? this would be i guess a scan for all stocks, or could i do it both ways, for a watchlist and for a scan?

cheers

This is a "simple" use of the crossover study on scans. Note that this will only show you the stocks when the cross has just happened.

I'm not yet allowed to post links, so what you need to do is go to the Scan tool & select STUDY --> Crossover --> MovingAvgCrossover. Then change the short to 20 and the Long to 200. Select Simple for each MA and be sure you're using Daily. That's it!

Attached Thumbnails
Click image for larger version

Name:	image_796.png
Views:	226
Size:	59.1 KB
ID:	306710  
Attached Images
 
Reply With Quote
Thanked by:
  #3 (permalink)
 swamijenkins 
Lapeer, MI/USA
 
Experience: Advanced
Platform: ThinkorSwim
Trading: Emini ES, SPY Options
Posts: 1 since Sep 2016
Thanks Given: 1
Thanks Received: 0


This should work. If today's 20day is greater than today's 200day and yesterday's 20day is less than yesterday's 200day:

def fast = 20;
def slow = 200;

def FastSMA = MovingAverage(AverageType.Simple, close, fast);
def SlowSMA = MovingAverage(AverageType.Simple, close, slow);

plot BullMA = (FastSMA > SlowSMA) and (FastSMA[1] < SlowSMA[1]);

Reply With Quote
  #4 (permalink)
Python Programmer
Santa Barbara CA/USA
 
Posts: 1 since Aug 2020
Thanks Given: 0
Thanks Received: 0


coolcat7fl View Post
can someone help me create a script for an alert when the 20day sma moves above the 200 day sma? this would be i guess a scan for all stocks, or could i do it both ways, for a watchlist and for a scan?

cheers

Would a Python solution work for you? Recently I wrote a Python script that scans thousands of stocks in order to filter out stocks that meet a certain condition.

Reply With Quote




Last Updated on November 24, 2020


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts