Spielerei ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Attached is another simple indicator: Tushar Chande's Aroon for TradeStation, which is used to determine trend.
input:
? ?Length(10),
? ?WatchLevel(30);
var:
? ?aroonUp(0),
? ?aroonDn(0);
? ?aroonUp = (Length - HighestBar(H,length)) / Length * 100;
? ?aroonDn = (Length - LowestBar (L,length)) / Length * 100;
? ?plot1(aroonUp,"Arron Up");
? ?plot2(aroonDn,"Arron Dn");
? ?plot3(WatchLevel, ? ?"Low Level");
? ?plot4(100-WatchLevel,"High Level");
? ?if aroonUp = 100 then alert("Strong up trend");
? ?if aroonDn = 100 then alert("Strong down trend");
? ?if aroonUp crosses over ?plot4 then alert("Strong up trend");
? ?if aroonDn crosses below plot3 then alert("Strong down trend");
You may want to add/modify the alert statements to suit your needs.
The web has many pages on its use, such as:
http://stockcharts.com/education/glossary/Aroon.htmlhttp://www.paritech.com/education/techn ... /aroon.asp