[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Help with price & volume w ATR Function



PureBytes Links

Trading Reference Links

I'm trying to convert an old supercharts function into TS2000i and while it
verifies I'm not sure if it's doing what I want.  Need to tell it what to do
if there is no volume data also. Not sure if I need to declare and assign
vars and also may want to use some inputs.

My_OLD_QuickEditor_StocksFilter_ = IFF(
((Close >= 5) and (Close <= 80)) and
(AvgTrueRange(10) >= 0.75) and
(XAverage(Volume,60)[1] >= 5000000), 1, 0)

=============================

My_NEW_PowerEditor_StocksFilter

If Close >= 5 and
	Close <= 80 and
	AvgTrueRange(10) >= 0.75 and 
	XAverage(Volume, 60)[1] >= 500000 Then 
		My_WorldCo_Stocks = 1;

=============================

Any simple answer now would be appreciated,  and I can work on making it
better later with you're help.

Thanks,


Thomas J. Festa, CMT
Technical Analysis Investment Consultant
Proprietary Trader, Equities
Benchmarq Trading, LLC
Cell:   (908) 581-8880

Confidentiality Notice: The information contained in this e-mail and any
attachments may be legally privileged and confidential. If you are not an
intended recipient, you are hereby notified that any dissemination,
distribution, or copying of this e-mail is strictly prohibited. If you have
received this e-mail in error, please notify the sender and permanently
delete the e-mail and any attachments immediately. You should not retain,
copy or use this e-mail or any attachment for any purpose, nor disclose all
or any part of the contents to any other person.