Search found 1 match
- Tue Jul 27, 2010 12:30 am
- Forum: Tradestation indicators
- Topic: GANN HILOW for tradestation
- Replies: 3
- Views: 5139
- Gender:

Here's my code for Gann Hilo if it helps.. // Indicator Gann HiLo recoded from MT4 // Original is only SMA, this allows different av types Inputs: Length(20), MAMethod(0); Variables: Trend(0), HiLo(0), AvHigh(0), AvLow(0); Trend=Trend[1]; If MAMethod<=0 then begin AvLow=Average(Low,Length); AvHigh=A...