Legal Disclaimer

All opinions expressed on this site are those of the author and may contain errors (I make mistakes) or omissions (I am not telling the whole truth).

!Thank You!

Wednesday, April 29, 2009

Strategy Desk

Strategy Desk is provided by Ameritrade.

It allows for real time screens and trade strategy.

I have experiment with this before have decided to revisit this again.




Here are my screens:

{LONG}
(Bar[Open,5] < ExpMovingAverage[EMA,Close,4,0,5]) AND
(Bar[Open,5] < ExpMovingAverage[EMA,Close,8,0,5]) AND
(Bar[Open,5] < ExpMovingAverage[EMA,Close,21,0,5]) AND
(Bar[Close,5] > ExpMovingAverage[EMA,Close,4,0,5]) AND
(Bar[Close,5] > ExpMovingAverage[EMA,Close,8,0,5]) AND
(Bar[Close,5] > ExpMovingAverage[EMA,Close,21,0,5]) AND
(Bar[Close,5] > Bar[Open,5])

{SHORT}
(Bar[Open,5] > ExpMovingAverage[EMA,Close,4,0,5]) AND
(Bar[Open,5] > ExpMovingAverage[EMA,Close,8,0,5]) AND
(Bar[Open,5] > ExpMovingAverage[EMA,Close,21,0,5]) AND
(Bar[Close,5] < ExpMovingAverage[EMA,Close,4,0,5]) AND
(Bar[Close,5] < ExpMovingAverage[EMA,Close,8,0,5]) AND
(Bar[Close,5] < ExpMovingAverage[EMA,Close,21,0,5]) AND
(Bar[Close,5] < Bar[Open,5])

Please let me know what you find or think.