NexusFi: Find Your Edge


Home Menu

 





Tradestation Stock Scanner


Discussion in TradeStation

Updated
    1. trending_up 2,888 views
    2. thumb_up 1 thanks given
    3. group 2 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread

Tradestation Stock Scanner

  #1 (permalink)
 haonkered 
Houston, Texas, United States
 
Experience: Advanced
Platform: TradeStation
Trading: Futures
Posts: 25 since Jun 2013
Thanks Given: 10
Thanks Received: 5

Hi. Is it possible in the scanner provided with tradestation to have it scan for crossovers? Like on stockcharts dot com you can use a MA[50] < MA[200](1) and MA[50](1) > MA[200]. Cant seem to figure out how to do that in tradestation but seems easy enough I am sure it is standard I must just be missing something.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
What broker to use for trading palladium futures
Commodities
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Quant vue
Trading Reviews and Vendors
REcommedations for programming help
Sierra Chart
 
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629

haonkered,

yes, this is possible. If you are having trouble setting up the scan because Tradestation won't let you reference the previous bars of the average in the scanner, you can do it with a simple custom code like this one:

 
Code
Inputs:
	Average1Length 		( 50 ),
	Average2Length 		( 200 );

Variables:
	Average1 			( 0 ),
	Average2 			( 0 ),
	CrossValue 			( 0 );
	
//compute averages
Average1 = Average( Close, Average1Length ) ;
Average2 = Average( Close, Average2Length ) ;

if Average1 > Average2 and Average1[1] < Average2[1] then
	CrossValue = + 1 //up cross
else
if Average1 < Average2 and Average1[1] > Average2[1] then 
	CrossValue = - 1 //dn cross
else
	CrossValue = 0 ; //no cross
	
Plot1( CrossValue, "Cross" ) ;
You can use the value for CrossValue in the scanner - +1 means an up cross on this bar, -1 is a down cross and 0 is no cross.

Regards,
ABCTG

Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on April 23, 2014


© 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